/* Tablekard Landing Page */

:root {
  --primary: #8B3A1A;
  --primary-dark: #662A12;
  --primary-light: #B25027;
  --primary-glow: rgba(139, 58, 26, 0.12);
  --z-black: #1c1c1c;
  --z-grey-900: #2d2d2d;
  --z-grey-700: #4f4f4f;
  --z-grey-500: #828282;
  --z-grey-300: #cfcfcf;
  --z-grey-100: #f8f8f8;
  --z-white: #ffffff;
  --z-gold: #ffd700;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Outfit", "Inter", sans-serif;
  --transition: 0.25s ease;

  /* Sub-page Dark Mode Variables */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-elevated: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary: #666666;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--z-black);
  background: var(--z-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(174, 72, 0, 0.674);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(187, 187, 187, 0.1);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.header__nav a:hover {
  color: var(--z-white);
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo svg {
  height: 32px;
  width: auto;
}

.logo__text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--z-white);
  letter-spacing: -0.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary);
  color: var(--z-white);
}

.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(123, 30, 52, 0.35);
}

.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--z-white);
}

.btn--white {
  background: var(--z-white);
  color: var(--z-black);
}

.btn--white:hover {
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background: var(--z-black);
  color: var(--z-white);
}

.btn--dark:hover {
  background: var(--z-grey-900);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.hero__trust {
  font-size: 0.85rem;
  color: var(--z-grey-500);
  margin-bottom: 32px;
}

/* ─── Hero ─── */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fdf5f7 0%, #ffffff 50%, #faf5f7 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--primary);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--z-grey-700);
  margin-bottom: 32px;
  max-width: 440px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--z-black);
  color: var(--z-white);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-btn__icon {
  width: 28px;
  height: 28px;
}

.store-btn__text small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.8;
  line-height: 1;
}

.store-btn__text strong {
  font-size: 1rem;
  font-weight: 600;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.hero__stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.hero__stat span {
  font-size: 0.85rem;
  color: var(--z-grey-500);
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup__device {
  width: 280px;
  background: var(--z-black);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.phone-mockup__screen {
  background: var(--z-white);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/19;
}

.phone-mockup__status {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 0.65rem;
  font-weight: 600;
}

.phone-mockup__content {
  padding: 0 12px 12px;
}

.phone-mockup__search {
  background: var(--z-grey-100);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.7rem;
  color: var(--z-grey-500);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-mockup__banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  padding: 16px;
  color: var(--z-white);
  margin-bottom: 12px;
}

.phone-mockup__banner h4 {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.phone-mockup__banner p {
  font-size: 0.65rem;
  opacity: 0.9;
}

.phone-mockup__categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.phone-mockup__cat {
  text-align: center;
}

.phone-mockup__cat-icon {
  width: 40px;
  height: 40px;
  background: var(--z-grey-100);
  border-radius: 50%;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.phone-mockup__cat span {
  font-size: 0.55rem;
  color: var(--z-grey-700);
}

.phone-mockup__restaurant {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--z-grey-100);
}

.phone-mockup__rest-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.phone-mockup__rest-info h5 {
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.phone-mockup__rest-info p {
  font-size: 0.6rem;
  color: var(--z-grey-500);
}

.phone-mockup__rest-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #24963f;
  color: white;
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.phone-mockup__float {
  position: absolute;
  background: var(--z-white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.phone-mockup__float--1 {
  top: 60px;
  left: -20px;
}

.phone-mockup__float--2 {
  bottom: 80px;
  right: -30px;
  animation-delay: 1.5s;
}

.phone-mockup__float strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

.phone-mockup__float span {
  font-size: 0.75rem;
  color: var(--z-grey-500);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ─── Hero V2 (Reference Design) ─── */
.hero-v2 {
  position: relative;
  padding: 120px 0 180px;
  background: #ffffff;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-v2__curves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Floating food images */
.hero-v2__float {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.hero-v2__float--kitchen-queue {
  width: clamp(165px, 17.2vw, 250px);
  top: 4%;
  right: 10%;
  animation: floatSlow 5.5s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-v2__float--payment-card {
  width: clamp(200px, 21vw, 300px);
  top: 45%;
  right: 3%;
  animation: floatSlow 4.8s ease-in-out infinite;
  animation-delay: 0.3s;
}

.hero-v2__float--mobile-menu {
  width: clamp(220px, 24.2vw, 341px);
  top: 26%;
  left: 5%;
  transform: rotate(-10deg);
  animation: floatSlow 4.5s ease-in-out infinite;
  animation-delay: 0.7s;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Center content */
.hero-v2__center {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 32px;
}

.hero-v2__title {
  font-family: 'Outfit', 'Georgia', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #2D1520;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-v2__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #6C6C75;
  line-height: 1.75;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

.hero-v2__br-desktop {
  display: inline;
}

/* Stats bar */
.hero-v2__stats-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 20px 40px;
  margin: 0 auto 0;
  max-width: 720px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
}

.hero-v2__stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v2__stat-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-v2__stat-text {
  display: flex;
  flex-direction: column;
}

.hero-v2__stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.hero-v2__stat-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

.hero-v2__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.hero-v2__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 12px;
  flex-shrink: 0;
}

/* Hero V2 Responsive */
@media (max-width: 1024px) {
  .hero-v2 {
    min-height: 600px;
    padding-top: 140px;
  }

  .hero-v2__float--kitchen-queue {
    right: 1%;
    width: clamp(160px, 18vw, 220px);
  }

  .hero-v2__float--payment-card {
    right: -1%;
    width: clamp(150px, 16vw, 210px);
  }

  .hero-v2__float--mobile-menu {
    display: none;
  }

  .hero-v2__stats-bar {
    padding: 24px 32px;
    max-width: 90vw;
  }
}

@media (max-width: 768px) {
  .hero-v2 {
    padding-top: 40px;
    /* Tighter top — video section sits above */
    padding-bottom: 40px;
    min-height: auto;
  }

  /* Restore floating images at mobile-friendly sizes */
  .hero-v2__float--kitchen-queue {
    display: none;
    width: 120px;
    top: 8%;
    right: 2%;
    animation-delay: 1s;
  }

  .hero-v2__float--payment-card {
    display: none;
    width: 110px;
    top: auto;
    bottom: 8%;
    right: 2%;
    animation-delay: 0.3s;
  }

  .hero-v2__float--mobile-menu {
    display: none;
    /* Keep mobile-menu hidden — too busy on phone */
  }

  .hero-v2__title {
    font-size: 2.2rem;
  }

  .hero-v2__br-desktop {
    display: none;
  }

  .hero-v2__stats-bar {
    flex-direction: column;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 16px;
    max-width: 90vw;
  }

  .hero-v2__stat-divider {
    width: 80%;
    height: 1px;
    margin: 0;
  }
}



/* ─── Section common ─── */
.section {
  padding: 80px 0;
}

.section__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--z-grey-700);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ─── Features ─── */
.features {
  background: var(--z-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--z-grey-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--z-white);
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--z-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover .feature-card__icon {
  background: var(--primary-glow);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--z-grey-500);
  line-height: 1.6;
}

.features__more {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--z-grey-700);
}

.features__more strong {
  color: var(--primary);
}

/* ─── Gold ─── */
.gold {
  background: linear-gradient(135deg, #1a0a10 0%, #2d1520 50%, #1a1020 100%);
  color: var(--z-white);
  position: relative;
  overflow: hidden;
}

.gold::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(123, 30, 52, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.gold__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gold__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--z-white);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.gold__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.gold__title span {
  background: linear-gradient(135deg, var(--primary-light), #c44d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold__desc {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.7;
}

.gold__highlight {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.gold__percent {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), #c44d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.gold__highlight-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

.gold__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.gold__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.gold__card-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), #c44d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold__card-tag {
  background: rgba(123, 30, 52, 0.3);
  color: #e8a0b0;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.gold__perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gold__perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.gold__perk-icon {
  width: 36px;
  height: 36px;
  background: rgba(123, 30, 52, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e8a0b0;
  font-weight: 700;
}



.partners {
  background: var(--z-grey-100);
  text-align: center;
}

.partners__count {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.partners__label {
  font-size: 1.25rem;
  color: var(--z-grey-700);
  margin-bottom: 48px;
}

.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  opacity: 0.6;
}

.partners__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--z-grey-500);
  padding: 12px 24px;
  background: var(--z-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ─── Hyperpure ─── */
.hyperpure {
  background: var(--z-white);
}

.hyperpure__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hyperpure__brand {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 16px;
}

.hyperpure__brand span {
  color: var(--z-grey-700);
  font-weight: 400;
  font-size: 1rem;
  display: block;
  margin-top: 4px;
}

.hyperpure__desc {
  font-size: 1.05rem;
  color: var(--z-grey-700);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hyperpure__visual {
  background: linear-gradient(135deg, #f5e6ea, #ecd0d8);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hyperpure__item {
  background: var(--z-white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hyperpure__item-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.hyperpure__item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--z-grey-700);
}

/* ─── Download ─── */
.download {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--z-white);
  text-align: center;
}

.download__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.download__subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.download__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.download__qr {
  background: var(--z-white);
  padding: 20px;
  border-radius: var(--radius-md);
  display: inline-block;
}

.download__qr canvas,
.download__qr img {
  width: 160px;
  height: 160px;
}

.download__stores {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.download__note {
  font-size: 0.9rem;
  opacity: 0.85;
  text-align: left;
}

/* ─── Mission ─── */
.mission {
  background: var(--z-black);
  color: var(--z-white);
  text-align: center;
  padding: 60px 0;
}

.mission__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  opacity: 0.95;
}

/* ─── Premium Footer ─── */
.footer {
  background: #0d090a;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 24px;
  position: relative;
  border-top: 1px solid rgba(139, 58, 26, 0.15);
  font-family: var(--font-body);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-col .footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-left: -12px;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.footer__contact-info a {
  color: var(--z-white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer__contact-info a:hover {
  color: #8B3A1A;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-white);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__socials a:hover {
  background: #8B3A1A;
  border-color: #8B3A1A;
  transform: translateY(-3px);
  color: var(--z-white);
}

.footer__links-col h4 {
  color: var(--z-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer__links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-block;
}

.footer__links-col a:hover {
  color: #8B3A1A;
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
}

.footer__badges {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── Cities dropdown mock ─── */
.cities-bar {
  background: var(--z-grey-100);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  overflow: hidden;
}

.cities-bar__container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cities-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--z-grey-500);
  white-space: nowrap;
  flex-shrink: 0;
}

.cities-bar__inner {
  display: flex;
  gap: 8px;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.cities-bar__inner::-webkit-scrollbar {
  display: none;
}

.cities-bar__list {
  display: flex;
  gap: 8px;
  animation: marquee 30s linear infinite;
  min-width: max-content;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.cities-bar__city {
  padding: 8px 16px;
  background: var(--z-white);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
}

.cities-bar__city.active {
  background: var(--primary);
  color: var(--z-white);
}

/* ─── App promo strip ─── */
.app-strip {
  background: var(--primary);
  color: var(--z-white);
  padding: 12px 0;
  text-align: center;
  font-size: 0.9rem;
}

.app-strip a {
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .hero__grid,
  .gold__grid,
  .hyperpure__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle,
  .section__subtitle,
  .gold__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta,
  .hero__stats {
    justify-content: center;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-mockup {
    order: -1;
  }

  .phone-mockup__float {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header__inner {
    height: 60px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .gold__highlight {
    justify-content: center;
  }

  .hyperpure__visual {
    grid-template-columns: 1fr;
  }
}

/* ─── Registration Offer Section ─── */
.registration-offer {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.registration-offer .container {
  width: min(1400px, 96vw);
}

.registration-card {
  background: rgba(139, 58, 26, 0.10);
  border: 2px solid rgba(139, 58, 26, 0.40);
  border-radius: 16px;
  /* Less round corners */
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(139, 58, 26, 0.15);
}

.registration-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.registration-offer__grid {
  display: grid;
  grid-template-columns: 3.5fr 6.5fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Offer Details (Left) */
.offer-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer-badge {
  display: inline-block;
  background: rgba(139, 58, 26, 0.1);
  color: #8B3A1A;
  border: 1px solid rgba(139, 58, 26, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.offer-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #1a1a1a;
}

.offer-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

.offer-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #333;
}

.highlight-item .highlight-icon {
  width: 28px;
  height: 28px;
  color: #8B3A1A;
  background: rgba(139, 58, 26, 0.1);
  padding: 4px;
  border-radius: 50%;
}

.highlight-item strong {
  color: #8B3A1A;
  font-weight: 700;
}

/* Countdown Timer */
.offer-timer-wrapper {
  margin-top: 24px;
  background: #fff;
  border: 1px solid rgba(139, 58, 26, 0.1);
  padding: 24px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(139, 58, 26, 0.05);
}

.timer-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666;
  margin: 0 0 16px 0;
  font-weight: 700;
  text-align: center;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.time-box {
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75px;
  min-width: 75px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.time-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-variant-numeric: tabular-nums;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 4px;
}

.time-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.time-colon {
  font-size: 2rem;
  font-weight: 700;
  color: #8B3A1A;
  margin-top: -15px;
}

/* Form Details (Right) */
.offer-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.offer-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
  position: relative;
}

.offer-form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #f0d27a, #8B3A1A);
  z-index: -1;
  border-radius: 26px;
}

.offer-form-card h3 {
  font-size: 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.offer-form-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 28px;
}

.registration-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.registration-form label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.registration-form input {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.registration-form input:focus {
  outline: none;
  border-color: #8B3A1A;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139, 58, 26, 0.1);
}

.btn--submit-form {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 12px;
  background: linear-gradient(135deg, #8B3A1A, #662A12);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(139, 58, 26, 0.3);
  color: white;
}

.btn--submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 58, 26, 0.4);
}

@media (max-width: 900px) {
  .registration-offer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .registration-card {
    padding: 32px 20px;
    border-radius: 12px;
    /* Less round on mobile */
  }

  .offer-form-wrapper {
    justify-content: center;
  }

  .countdown-timer {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ─── Video Preview Section ─── */
.video-preview-section {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 80px;
  /* Push down below the fixed 80px navbar */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-preview-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@media (max-width: 768px) {
  .video-preview-section {
    height: 280px;
  }
}

/* ─── Navigation Bar from Scratch ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #8b3a1e;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  /* Translucent white border */
  transition: all 0.3s ease;
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: -12px;
}

.navbar__logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.85);
  /* Highly legible soft white text */
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.navbar__link:hover {
  color: #f0d27a;
  /* Gold accent on hover */
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f0d27a;
  /* Gold accent line */
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right;
}

.navbar__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Contact Us button in navbar */
.navbar__contact-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 7px 18px;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.navbar__contact-btn:hover {
  background: #f0d27a;
  border-color: #f0d27a;
  color: #1c1c1c;
  box-shadow: 0 4px 14px rgba(240, 210, 122, 0.35);
}

@media (max-width: 768px) {
  .navbar__nav {
    display: none;
  }
}

/* ─── Video Overlay and Text Content ─── */
.video-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay for high contrast */
  z-index: 2;
}

.video-preview-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.video-preview-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: #ffffff;
  /* White text for contrast on dark background */
  max-width: 650px;
  margin-left: 40px;
  /* Add margin on the left */
}

.video-preview-subtitle {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--z-gold);
  /* Gold color for high visibility */
  margin-bottom: 16px;
}

.video-preview-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #ffffff;
  /* White title text */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* Soft dark shadow */
}

.btn-video-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #8B3A1A;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(139, 58, 26, 0.3);
  transition: all 0.2s ease;
}

.btn-video-cta:hover {
  background: #a3441e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 58, 26, 0.45);
}

@media (max-width: 768px) {
  .video-preview-content {
    margin-left: 16px;
    /* Less margin on small mobile viewports */
  }
}

/* === QR Stands Section === */
.qr-stands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.qr-stands-image-container {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8f5f0;
  overflow: hidden;
}

.qr-stands-details {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* ─── Full Page Preloader ─── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  /* Clean white background */
  z-index: 10000;
  /* Stacks above navbar and everything else */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader__spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(139, 58, 26, 0.1);
  border-top-color: #8B3A1A;
  /* Theme brand color */
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
  margin-bottom: 20px;
}

.preloader__text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #8B3A1A;
  /* Brand brown text */
  margin: 0;
  letter-spacing: 0.5px;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}


/* ════════════════════════════════════════════
   RESPONSIVE — Mobile & Tablet
   ════════════════════════════════════════════ */

/* ── Hamburger button ── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}

.navbar__hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Open state */
.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile drawer ── */
.navbar__drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: #7a3219;
  padding: 12px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar__drawer.is-open {
  display: flex;
}

.navbar__drawer-link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color 0.2s;
}

.navbar__drawer-link:last-of-type {
  border-bottom: none;
}

.navbar__drawer-link:hover {
  color: #f0d27a;
}

.navbar__drawer-cta {
  display: inline-block;
  margin-top: 12px;
  background: #fff;
  color: #8B3A1A;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.navbar__drawer-cta:hover {
  background: #f5e8df;
  transform: translateY(-1px);
}

/* ════════════════════
   TABLET  ≤ 1024px
   ════════════════════ */
@media (max-width: 1024px) {

  /* Navbar */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__logo-img {
    height: 48px;
  }

  /* Video banner */
  .video-preview-section {
    height: 380px;
  }

  .video-preview-content {
    max-width: 80%;
  }

  /* Features section — tighten transform scale */
  #features>div:nth-of-type(2) {
    transform: scale(0.82);
    transform-origin: top center;
  }

  /* Footer grid */
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand-col {
    grid-column: 1 / -1;
  }

  /* Registration */
  .registration-offer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .registration-card {
    padding: 40px 32px;
  }

  .offer-form-wrapper {
    justify-content: center;
  }
}

/* ════════════════════
   MOBILE  ≤ 768px
   ════════════════════ */
@media (max-width: 768px) {

  /* === Navbar === */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    display: none !important;
  }

  .navbar__inner {
    height: 58px;
    justify-content: space-between;
  }

  .navbar__logo-img {
    height: 38px;
  }

  .navbar__logo {
    margin-left: -6px;
  }

  /* === Video Banner === */
  .video-preview-section {
    height: 240px;
    margin-top: 58px;
  }

  .video-preview-container {
    display: flex;
    justify-content: center;
  }

  .video-preview-content {
    margin-left: 0;
    padding: 0 16px;
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .video-preview-subtitle {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  .video-preview-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    margin-bottom: 14px;
  }

  .btn-video-cta {
    padding: 10px 20px;
    font-size: 0.88rem;
    border-radius: 10px;
  }

  /* === Hero V2 === */
  .hero-v2 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-v2__center {
    padding: 0 16px;
    text-align: center;
  }

  .hero-v2__center>div {
    flex-direction: column;
    align-items: center;
    gap: 10px !important;
  }

  .hero-v2__center .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
  }

  .hero-v2__title {
    font-size: 1.85rem !important;
    margin-bottom: 12px;
    text-align: center;
  }

  .hero-v2__stats-bar {
    padding: 16px 20px;
    gap: 0;
  }

  .hero-v2__stat-number {
    font-size: 1.4rem;
  }

  .hero-v2__stat-label {
    font-size: 0.75rem;
  }

  .hero-v2__stat-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-v2__stat-item {
    align-items: center;
  }

  /* === Features Section === */
  #features {
    padding-top: 40px !important;
    padding-bottom: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    text-align: center !important;
    align-items: center !important;
  }

  #features>div:first-of-type h2 {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  #features>div:first-of-type p {
    font-size: 0.9rem !important;
    text-align: center !important;
  }

  /* Hide the absolute-positioned desktop icon grid entirely */
  #features>div:nth-of-type(2) {
    display: none !important;
  }

  /* === Ecosystem mobile steps === */
  .eco-mobile-steps {
    padding: 0 !important;
  }

  .eco-step {
    align-items: center;
  }

  .eco-step__badge {
    align-self: center;
  }

  .eco-step__card {
    padding: 14px;
    gap: 10px;
    border-radius: 14px;
    text-align: left;
  }

  .eco-step__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .eco-step__icon svg {
    width: 22px;
    height: 22px;
  }

  .eco-step__title {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .eco-step__desc {
    font-size: 12px;
    line-height: 1.55;
  }

  .eco-step__connector {
    padding: 8px 0;
    justify-content: center;
  }

  /* === Footer === */
  .footer {
    padding: 40px 0 20px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    text-align: left;
  }

  .footer__brand-col {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__logo {
    margin-left: 0 !important;
    justify-content: flex-start;
  }

  .footer__logo-img {
    height: 38px !important;
  }

  .footer__desc {
    font-size: 0.85rem;
    line-height: 1.55;
    text-align: left;
    max-width: 90%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 16px;
    align-items: center;
  }

  .footer__contact-info {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .footer__socials {
    justify-content: flex-start;
    gap: 12px;
  }

  .footer__links-col {
    text-align: left;
  }

  .footer__links-col h4 {
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-align: left;
  }

  .footer__links-col a {
    font-size: 0.85rem;
  }

  .footer__links-col ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer__copyright {
    font-size: 0.78rem;
    text-align: center;
  }

  .footer__badges {
    font-size: 0.78rem;
    text-align: center;
  }

  /* === Registration Section === */
  .registration-offer {
    padding: 36px 0;
  }

  .registration-card {
    padding: 22px 14px;
    border-radius: 14px;
  }

  .registration-offer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .offer-details {
    align-items: center;
    text-align: center;
  }

  .offer-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    text-align: center;
  }

  .offer-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    text-align: center;
  }

  .offer-highlights {
    gap: 10px;
    margin-top: 6px;
    align-items: center;
  }

  .highlight-item {
    font-size: 0.9rem;
    gap: 8px;
    justify-content: center;
  }

  .offer-timer-wrapper {
    text-align: center;
    padding: 16px;
  }

  .offer-form-card {
    padding: 22px 16px;
    border-radius: 16px;
    text-align: center;
  }

  .offer-form-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    text-align: center;
  }

  .offer-form-card p {
    font-size: 0.85rem;
    margin-bottom: 18px;
    text-align: center;
  }

  .registration-form .form-group {
    margin-bottom: 14px;
    text-align: left;
  }

  /* keep labels left-aligned */
  .registration-form label {
    text-align: left;
  }

  .registration-form input {
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  .time-box {
    width: 58px;
    min-width: 58px;
    padding: 8px 6px;
  }

  .time-num {
    font-size: 1.4rem;
  }

  .timer-label {
    font-size: 0.78rem;
    margin-bottom: 10px;
    text-align: center;
  }

  .btn--submit-form {
    padding: 13px;
    font-size: 0.95rem;
  }

  /* Form fields: stack country/state/district */
  .form-group[style*="flex-direction: row"] {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* === QR Stands Section Responsive === */
  .qr-stands-grid {
    grid-template-columns: 1fr;
  }

  .qr-stands-details {
    padding: 28px 20px;
  }
}


/* ════════════════════
   SMALL PHONE  ≤ 480px
   ════════════════════ */
@media (max-width: 480px) {
  .video-preview-section {
    height: 210px;
  }

  .video-preview-title {
    font-size: 1.25rem;
  }

  .hero-v2__title {
    font-size: 1.65rem !important;
  }

  .hero-v2__stats-bar {
    padding: 14px 12px;
  }

  .registration-card {
    padding: 16px 10px;
  }

  .offer-form-card {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .countdown-timer {
    gap: 5px;
  }

  .time-box {
    width: 50px;
    min-width: 50px;
  }

  .time-num {
    font-size: 1.2rem;
  }

  .footer__links-col ul {
    columns: 2;
    column-gap: 12px;
  }
}

/* === New Hero Preview Section === */
.new-hero-preview {
  background: linear-gradient(135deg, #fdfbf5 0%, #fffdf4 100%);
  padding: 80px 0;
  margin-top: 80px;
  border-bottom: 1px solid rgba(217, 181, 80, 0.15);
}

.new-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.new-hero-content {
  text-align: left;
}

.new-hero-subtitle {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #d9b550;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.new-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1c1c1c;
  margin-bottom: 24px;
}

.new-hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-hero-image {
  width: 100%;
  max-width: 420px;
  max-height: 380px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .new-hero-preview {
    padding: 60px 0;
    margin-top: 60px;
  }

  .new-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .new-hero-image {
    max-height: 300px;
  }
}

/* === Mobile Optimizations for Sub-pages (About, Careers, Contact, etc.) === */
@media (max-width: 768px) {

  /* Center text on mobile */
  .sp-hero,
  .sp-main,
  .sp-card,
  .sp-section-title,
  .sp-section-subtitle,
  .sp-contact-card,
  .sp-icon-card {
    text-align: center !important;
  }

  .sp-accent-line {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center list item blocks text-wise or left-aligned within centered wrapper */
  .sp-card ul {
    text-align: left !important;
    display: inline-block;
    max-width: 100%;
  }

  /* Fix buttons on mobile: full width, centered */
  .sp-btn-gold {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    white-space: normal !important;
  }

  /* Fix job card details wrapping / alignment on mobile */
  .sp-job-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 24px 20px !important;
  }

  .sp-job-meta {
    justify-content: center !important;
    margin-bottom: 16px !important;
  }

  /* Fix contact cards spacing on mobile */
  .sp-contact-card {
    margin-bottom: 16px !important;
  }

  /* Convert comparison tables on mobile to stacked block cards so they don't require scrolling */
  .comparison-table-wrapper {
    overflow-x: visible !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 16px !important;
  }

  .comparison-table thead {
    display: none !important;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .comparison-table tr {
    margin-bottom: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
  }

  .comparison-table tr:last-child {
    margin-bottom: 0 !important;
  }

  .comparison-table td.col-feature {
    background: #8B3A1A !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    padding: 14px 16px !important;
    text-align: center !important;
  }

  .comparison-table td.col-bad,
  .comparison-table td.col-good {
    padding: 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    text-align: left !important;
  }

  .comparison-table td.col-bad::before {
    content: "Without Tablekard:" !important;
    display: block !important;
    font-weight: 700 !important;
    color: #d32f2f !important;
    margin-bottom: 6px !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  .comparison-table td.col-good::before {
    content: "With Tablekard:" !important;
    display: block !important;
    font-weight: 700 !important;
    color: #1b873f !important;
    margin-bottom: 6px !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }
}