:root {
  --honey: #F5A623;
  --honey-dark: #E8920F;
  --navy: #0D0E2A;
  --navy-mid: #13154A;
  --purple: #6C35DE;
  --purple-light: #8B5CF6;
  --lime: #C8F135;
  --white: #FAFAFA;
  --gray: #8B8FA8;
  --card-bg: #161830;
  --radius: 20px;
  --gold: #F5A623;
  --gold2: #FFD166;
  --ink: #0D0E2A;
  --font-d: 'Poppins', sans-serif;
  /* display / headings */
  --font-b: 'Inter', sans-serif;
}

/* CONTACT CARDS ROW */
.contact-cards {
  padding: 70px 64px 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto
}

.cc {
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 32px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.cc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, var(--gold));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: center
}

.cc:hover::before {
  transform: scaleX(1)
}

.cc:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .3)
}

.cc:nth-child(1) {
  --accent: var(--gold)
}

.cc:nth-child(2) {
  --accent: var(--green)
}

.cc:nth-child(3) {
  --accent: var(--purple)
}

.cc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px
}

.cc:nth-child(1) .cc-icon {
  background: rgba(245, 166, 35, .12)
}

.cc:nth-child(2) .cc-icon {
  background: rgba(59, 235, 160, .1)
}

.cc:nth-child(3) .cc-icon {
  background: rgba(108, 53, 222, .15)
}

.cc h3 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 8px
}

.cc p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px
}

.cc-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  transition: color .2s
}

.cc:hover .cc-val {
  color: var(--gold)
}

.cc-badge {
  display: inline-block;
  font-size: .65rem;
  background: rgba(59, 235, 160, .1);
  color: var(--green);
  border-radius: 50px;
  padding: 3px 10px;
  font-weight: 600;
  margin-top: 6px
}


/* LEFT INFO */
.contact-info-col .sec-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px
}

.contact-info-col h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px
}

.contact-info-col p {
  color: rgba(255, 255, 255, .55);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 32px
}


.info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  transition: border-color .3s
}

.info-item:hover {
  border-color: rgba(245, 166, 35, .2)
}

.ii-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(245, 166, 35, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0
}

.ii-label {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px
}

.ii-val {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white)
}

.ii-sub {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px
}



/* MAIN CONTACT SECTION */
.contact-main {
  padding: 20px 64px 90px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start
}



/* PAGE HERO */
.page-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
}

.ph-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.ph-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .3
}

.ph-blob.b1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple), transparent);
  top: -100px;
  left: -50px
}

.ph-blob.b2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -80px;
  right: -60px
}

.ph-stars {
  position: absolute;
  inset: 0
}

.ph-star {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  animation: tw 3s ease-in-out infinite
}

.dropdown.active>a .arr {
  transform: rotate(180deg);
}

@keyframes tw {

  0%,
  100% {
    opacity: .15
  }

  50% {
    opacity: .7
  }
}



*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(13, 14, 42, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  animation: slideDown .6s ease both;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  font-family: var(--font-d);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-decoration: none;
  color: var(--white)
}

.logo span {
  color: var(--honey);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links.mobileview { display: none; }
.nav-links.webview { display: flex; }

.nav-links a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  padding: 10px 0;
  /* ADD THIS */
  display: inline-block;
  /* ADD THIS */
}

.nav-links .dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--honey);
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .8);
  border-radius: 99px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle:checked+.burger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle:checked+.burger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked+.burger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ── DROPDOWN ── */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links .dropdown>a .arr {
  font-size: .65rem;
  transition: transform .25s;
}

.nav-links .dropdown:hover>a .arr {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(10, 11, 30, .97);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .5);
  z-index: 600;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(10, 11, 30, .97);
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-top: 1px solid rgba(255, 255, 255, .1);
  transform: translateX(-50%) rotate(45deg);
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: .84rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, color .18s;
}

.dropdown-menu li a:hover {
  background: rgba(245, 166, 35, .1);
  color: var(--honey);
}

.dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.dd-icon.o {
  background: rgba(245, 166, 35, .12);
}

.dd-icon.p {
  background: rgba(108, 53, 222, .15);
}

.dd-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dd-name {
  font-weight: 600;
  font-size: .84rem;
}

.dd-sub {
  font-size: .68rem;
  color: var(--gray);
}

.dd-divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 6px 4px;
}

.nav-cta {
  background: var(--honey);
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, .4);
}

.nav-partner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--honey);
  color: var(--navy);
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108, 53, 222, .35) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, .15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, .12);
  border: 1px solid rgba(245, 166, 35, .3);
  color: var(--honey);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .6s .2s ease both;
}

.badge::before {
  content: '🐝';
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp .6s .35s ease both;
}

.hero h1 .accent {
  color: var(--honey);
}

.hero h1 .accent2 {
  color: var(--lime);
}

.hero-sub {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  animation: fadeUp .6s .5s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .6s .65s ease both;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--honey);
  color: var(--navy);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 166, 35, .45);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  animation: fadeUp .6s .8s ease both;
}

.stat-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.stat-val span {
  color: var(--honey);
}

.stat-label {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ── HERO PHONE ── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeUp .8s .4s ease both;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--navy-mid);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, .1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05);
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
  transition: transform .4s ease;
}

.phone-mockup:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: var(--navy);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 12px;
  height: calc(100% - 28px);
  overflow: hidden;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.app-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .9rem;
}

.app-logo span {
  color: var(--honey);
}

.app-cart {
  width: 28px;
  height: 28px;
  background: var(--honey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
}

.app-search {
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: .7rem;
  color: var(--gray);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-banner {
  background: linear-gradient(135deg, var(--purple), var(--navy-mid));
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.app-banner::after {
  content: '🛒';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  opacity: .6;
}

.app-banner-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  margin-bottom: 4px;
}

.app-banner-sub {
  font-size: .6rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.app-banner-btn {
  background: var(--honey);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: .6rem;
  font-weight: 700;
  cursor: pointer;
}

.app-section-title {
  font-size: .7rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.app-products {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.app-product {
  flex-shrink: 0;
  width: 70px;
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 8px;
  text-align: center;
}

.app-product-emoji {
  font-size: 1.6rem;
}

.app-product-name {
  font-size: .55rem;
  color: var(--gray);
  margin-top: 4px;
}

.app-product-price {
  font-size: .6rem;
  font-weight: 700;
  color: var(--honey);
}

.phone-float-1,
.phone-float-2,
.phone-float-3 {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

.phone-float-1 {
  top: 15%;
  right: -10px;
  font-size: .7rem;
  white-space: nowrap;
}

.phone-float-2 {
  bottom: 30%;
  left: -20px;
  font-size: .7rem;
  white-space: nowrap;
  animation-delay: 1s;
}

.phone-float-3 {
  bottom: 12%;
  right: 0;
  font-size: .7rem;
  white-space: nowrap;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ── TICKER ── */
.ticker {
  background: var(--honey);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── BENEFITS ── */
.benefits {
  padding: 100px 60px;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  animation: fadeUp .5s ease both;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, .3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.benefit-card:nth-child(1) .benefit-icon {
  background: rgba(245, 166, 35, .15);
}

.benefit-card:nth-child(2) .benefit-icon {
  background: rgba(108, 53, 222, .2);
}

.benefit-card:nth-child(3) .benefit-icon {
  background: rgba(200, 241, 53, .15);
}

.benefit-card:nth-child(4) .benefit-icon {
  background: rgba(236, 72, 153, .15);
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: flex-start;
  /* ← was center — flex-start lets image grow tall */
  gap: 0;
}

/* Alternate layout using order — NO direction:rtl */
.step:nth-child(even) .step-content {
  order: 3;
  padding: 40px 40px 40px 0;
}

.step:nth-child(even) .step-line {
  order: 2;
}

.step:nth-child(even) .step-visual {
  order: 1;
}

.step-content {
  padding: 40px;
  animation: fadeUp .5s ease both;
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(245, 166, 35, .15);
  letter-spacing: -2px;
  margin-bottom: 8px;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: .95rem;
}

.step-checks {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
}

.step-checks li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 241, 53, .15);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 48px;
}

.step-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 0 8px rgba(245, 166, 35, .1);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-connector {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(180deg, rgba(245, 166, 35, .4), rgba(245, 166, 35, .1));
  margin-top: 8px;
}

.step:last-child .step-connector {
  display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     IMAGE FIX — only changed section
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.step-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* ← was center */
  padding: 24px 20px;
}

/* Card: no fixed height, no aspect-ratio, no overflow:hidden */
.step-card {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  overflow: visible;
  /* ← was hidden/unset — never clips image */
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  transition: transform .3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

/* Image fills card naturally — zero cropping */
.step-card img {
  width: 100%;
  height: auto;
  /* ← KEY: natural full height, never crops */
  display: block;
  border-radius: 20px;
  /* matches card radius */
  object-fit: unset;
  /* ← no forced fill/crop */
}

/* Remove old inner wrappers if still in HTML */
.step-card .inner_block,
.step-card .img {
  display: contents;
  /* ← makes wrapper divs invisible to layout */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     END IMAGE FIX
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── DOWNLOAD ── */
.download {
  margin: 0 60px 100px;
  background: linear-gradient(135deg, var(--navy-mid), var(--purple) 60%, #1a0d3a);
  border-radius: 32px;
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, .2) 0%, transparent 70%);
  pointer-events: none;
}

.download h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.download p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-bottom: 36px;
}

.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  padding: 12px 20px;
  color: var(--white);
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
}

.store-btn:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-3px);
}

.store-btn-icon {
  font-size: 1.6rem;
}

.store-btn-text {
  line-height: 1.2;
}

.store-btn-sub {
  font-size: .65rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.store-btn-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
}

.download-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.download-phone {
  width: 220px;
  background: var(--navy);
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, .1);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
  transform: perspective(600px) rotateY(8deg);
}

.download-phone:hover {
  transform: perspective(600px) rotateY(0deg);
}

/* ADD THIS — image fills naturally */
.download-phone img {
  width: 100%;
  height: auto;
  /* ← full photo */
  display: block;
  border-radius: 30px;
  /* matches parent */
  object-fit: unset;
}

/* ── CONTACT FORM ── */
.contact {
  padding: 100px 60px;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 53, 222, .2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-left h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.contact-left p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 166, 35, .12);
  border: 1px solid rgba(245, 166, 35, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text {
  font-size: .9rem;
}

.contact-item-label {
  font-size: .75rem;
  color: var(--gray);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  padding: 48px;
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-sub {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .3px;
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, .25);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--honey);
  background: rgba(245, 166, 35, .05);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-mid);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: var(--honey);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--honey-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 166, 35, .35);
}

.form-submit:active {
  transform: translateY(0);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 60px 60px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-store-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-store {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--white);
  font-size: .78rem;
  transition: background .2s;
}

.footer-store:hover {
  background: rgba(255, 255, 255, .12);
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--honey);
}

.footer-newsletter input {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 11px 16px;
  color: var(--white);
  font-size: .88rem;
  outline: none;
  width: 100%;
  margin-bottom: 10px;
  transition: border-color .2s;
}

.footer-newsletter input:focus {
  border-color: var(--honey);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .25);
}

.footer-newsletter button {
  width: 100%;
  background: var(--honey);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 11px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}

.footer-newsletter button:hover {
  background: var(--honey-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray);
  font-size: .82rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: var(--white);
}

.social-icon:hover {
  background: var(--honey);
  color: var(--navy);
  border-color: var(--honey);
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity .6s, transform .6s
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03)
}

.ld-logo {
  font-family: var(--font-d);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeUp .7s .3s ease forwards
}

.ld-logo em {
  color: var(--gold);
  font-style: normal
}

.ld-track {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, .08);
  border-radius: 99px;
  overflow: hidden
}

.ld-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 99px;
  animation: loadBar 2s ease forwards .5s
}

@keyframes loadBar {
  0% {
    width: 0
  }

  100% {
    width: 100%
  }
}


/* MISSION SECTION */
.mission {
  padding: 90px 64px;
  position: relative
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto
}

.mission-visual {
  position: relative
}

.mission-card {
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 166, 35, .08), transparent 70%);
  pointer-events: none
}

.mc-emoji {
  font-size: 3.5rem;
  margin-bottom: 16px
}

.mc-quote {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -.5px
}

.mc-quote em {
  color: var(--gold);
  font-style: normal
}

.mc-attr {
  font-size: .8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px
}

.mc-attr::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold)
}

.mission-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px
}

.mstat {
  background: var(--ink3);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: border-color .3s
}

.mstat:hover {
  border-color: rgba(245, 166, 35, .25)
}

.mstat-num {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white)
}

.mstat-num span {
  color: var(--gold)
}

.mstat-lbl {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: .3px
}

.mission-text .sec-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px
}

.mission-text h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 22px
}

.mission-text p {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 18px
}

.mission-text p strong {
  color: var(--white);
  font-weight: 600
}

.mission-text p em {
  color: var(--gold);
  font-style: normal
}


.ph-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.ph-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .3
}

.ph-blob.b1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple), transparent);
  top: -100px;
  left: -50px
}

.ph-blob.b2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -80px;
  right: -60px
}

.ph-stars {
  position: absolute;
  inset: 0
}

.ph-star {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  animation: tw 3s ease-in-out infinite
}

@keyframes tw {

  0%,
  100% {
    opacity: .15
  }

  50% {
    opacity: .7
  }
}

.ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 166, 35, .1);
  border: 1px solid rgba(245, 166, 35, .22);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .5s .4s ease forwards
}

.ph-h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .6s .55s ease forwards
}

.ph-h1 em {
  color: var(--gold);
  font-style: normal
}

.ph-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .55);
  max-width: 560px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .6s .7s ease forwards
}

.ph-sub strong {
  color: var(--gold);
  font-weight: 600
}


/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .5s .85s ease forwards
}

.breadcrumb a,
.breadcrumb span {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--gold)
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, .2);
  font-size: .7rem
}

.breadcrumb .current {
  color: var(--gold);
  font-weight: 600
}


/* CURSOR */
.cur-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: none;
  transition: width .15s, height .15s
}

.cur-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(245, 166, 35, .45);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 9998;
  pointer-events: none;
  transition: all .1s ease
}


/* ── UTILS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 16px;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  nav {
    padding: 16px 24px;
  }

  .burger {
    display: flex;
  }

  .nav-links.webview { display: none; }

  .nav-links.mobileview {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(13, 14, 42, .95);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: max-height .28s ease;
    z-index: 99;
  }

  .nav-links.mobileview li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .nav-links.mobileview li:first-child {
    border-top: none;
  }

  .nav-links.mobileview a {
    display: block;
    padding: 12px 20px;
    width: 100%;
  }

  .nav-toggle:checked~.nav-links.mobileview {
    max-height: calc(100vh - 90px);
  }

  .nav-links.mobileview .dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-links.mobileview .dropdown .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .24s ease;
    background: rgba(13, 14, 42, .95);
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 0;
    padding: 0;
  }

  .nav-links.mobileview .dropdown.open .dropdown-menu {
    max-height: 240px;
  }

  .nav-links.mobileview .dropdown .dropdown-menu li a {
    padding: 10px 34px;
  }

  .nav-links.mobileview .dropdown .arr {
    transition: transform .25s;
  }

  .nav-links.mobileview .dropdown.open>a .arr {
    transform: rotate(180deg);
  }

  .page-wrapper {
    padding: 40px 16px 80px;
  }

  .section-block {
    padding: 24px 20px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .col-span-2,
  .col-span-3 {
    grid-column: span 1;
  }

  .form-footer {
    padding: 20px;
  }

  .progress {
    overflow-x: auto;
    gap: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }

  .hero-right {
    margin-top: 48px;
  }

  .benefits,
  .how,
  .contact {
    padding: 72px 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .download {
    margin: 0 24px 80px;
    padding: 48px 32px;
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 0 24px;
  }

  footer {
    padding: 60px 24px 32px;
  }

  /* Mobile steps — stack vertically */
  .step {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .step-content,
  .step:nth-child(even) .step-content {
    order: 2;
    padding: 20px 0;
  }

  .step-line {
    order: 1;
    flex-direction: row;
    padding-top: 0;
    padding: 16px 0;
  }

  .step:nth-child(even) .step-line {
    order: 1;
  }

  .step-visual,
  .step:nth-child(even) .step-visual {
    order: 3;
    justify-content: center;
    padding: 0 0 32px;
  }

  .step-connector {
    width: 80px;
    height: 2px;
    min-height: unset;
    background: linear-gradient(90deg, rgba(245, 166, 35, .4), rgba(245, 166, 35, .1));
    margin-top: 0;
    margin-left: 8px;
  }

  .step-card {
    max-width: 100%;
  }

  .step-card img {
    border-radius: 16px;
  }
}


/* FORM */
.contact-form-col {
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  overflow: hidden
}

.cf-header {
  padding: 32px 36px 0;
  border-bottom: 0
}

.cf-title {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.5px
}

.cf-sub {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 28px
}

.cf-body {
  padding: 0 36px 32px
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.fld {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 0
}

.fld label {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px
}

.req {
  color: var(--red);
  font-size: .85rem
}

.inp-wrap {
  position: relative
}

.fi {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .85rem;
  pointer-events: none;
  opacity: .4;
  transition: opacity .2s
}

.has-i input,
.has-i select,
.has-i textarea {
  padding-left: 40px
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  padding: 12px 15px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: .88rem;
  outline: none;
  transition: all .22s;
  appearance: none
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .18)
}

select option {
  background: var(--ink2)
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(245, 166, 35, .5);
  background: rgba(245, 166, 35, .04);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .08)
}

.fld.err input,
.fld.err select,
.fld.err textarea {
  border-color: rgba(255, 87, 87, .45)
}

.fld.ok input,
.fld.ok select {
  border-color: rgba(59, 235, 160, .35)
}

.v-chk {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  display: none;
  font-size: .85rem
}

.fld.ok .v-chk {
  display: block
}

.err-t {
  font-size: .7rem;
  color: var(--red);
  display: none
}

.fld.err .err-t {
  display: block
}

textarea {
  resize: vertical;
  min-height: 110px
}

.mb16 {
  margin-bottom: 16px
}


.social-row h4 {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px
}

.social-icons {
  display: flex;
  gap: 10px
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  transition: all .25s
}

.soc-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-3px)
}

.map-placeholder {
  margin-top: 28px;
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  overflow: hidden;
  position: relative
}

.map-inner {
  height: 180px;
  background: linear-gradient(135deg, var(--ink3), #1a1d3d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted)
}

.map-inner .map-pin {
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}


.cf-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px
}

.cf-submit:hover {
  background: #e8920f;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 166, 35, .35)
}

.cf-submit:active {
  transform: translateY(0)
}


/* success */
.cf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 36px;
  text-align: center
}

.cf-success.show {
  display: flex;
  animation: fadeUp .4s ease
}

.cs-icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
  animation: bounceIn .5s ease
}

@keyframes bounceIn {
  0% {
    transform: scale(0)
  }

  60% {
    transform: scale(1.2)
  }

  100% {
    transform: scale(1)
  }
}

.cs-h {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px
}

.cs-p {
  font-size: .85rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 24px
}

.cs-back {
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .12);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 10px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
  transition: all .2s
}

.cs-back:hover {
  background: rgba(255, 255, 255, .12)
}

.nav-links .dropdown>a .arr {
  font-size: .65rem;
  transition: transform .25s
}

.nav-links .dropdown:hover>a .arr {
  transform: rotate(180deg)
}

.dd-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(10, 11, 30, .97);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 8px;
  min-width: 190px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .5);
  z-index: 600
}

.dd-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 11px;
  height: 11px;
  background: rgba(10, 11, 30, .97);
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-top: 1px solid rgba(255, 255, 255, .1);
  transform: translateX(-50%) rotate(45deg)
}

.nav-links .dropdown:hover .dd-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0)
}

.dd-menu li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .18s, color .18s
}

.dd-menu li a:hover {
  background: rgba(245, 166, 35, .1);
  color: var(--gold)
}



/* ── PAGE LAYOUT ── */
.page-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

/* ── PAGE HEADER ── */
.page-header {
  margin-bottom: 48px;
  animation: fadeUp .5s ease both;
}

.page-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--honey-light);
  border: 1px solid rgba(245, 166, 35, .25);
  color: var(--honey);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
}

.page-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 540px;
}

/* ── PROGRESS STEPS ── */
.progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  animation: fadeUp .5s .1s ease both;
}

.prog-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  transition: background .3s;
  position: relative;
}

.prog-step.active {
  background: rgba(245, 166, 35, .08);
}

.prog-step.done .prog-num {
  background: var(--success);
  border-color: var(--success);
  color: var(--navy);
}

.prog-step.done .prog-num::after {
  content: '✓';
}

.prog-step.active .prog-num {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--navy);
}

.prog-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--gray);
  transition: all .3s;
}

.prog-label {
  line-height: 1.2;
}

.prog-label-title {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.prog-label-sub {
  font-size: .7rem;
  color: var(--gray);
}

.prog-connector {
  width: 32px;
  height: 2px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .1);
  position: relative;
}

.prog-connector.done {
  background: var(--honey);
}

/* ── FORM CARD ── */
.form-card {
  background: #161830;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  animation: fadeUp .5s .2s ease both;
}

.section-block {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
}

.section-block:last-child {
  border-bottom: none;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.section-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.section-icon.orange {
  background: rgba(245, 166, 35, .15);
}

.section-icon.purple {
  background: rgba(108, 53, 222, .2);
}

.section-icon.green {
  background: rgba(74, 222, 128, .12);
}

.section-icon.pink {
  background: rgba(236, 72, 153, .12);
}

.section-head-text h3 {
  font-size: 1rem;
  font-weight: 700;
}

.section-head-text p {
  font-size: .78rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ── GRID ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

/* ── FIELD ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.required-dot {
  color: var(--error);
  font-size: .9rem;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .9rem;
  pointer-events: none;
  color: var(--gray);
  transition: color .2s;
}

.has-icon input,
.has-icon select,
.has-icon textarea {
  padding-left: 40px;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}

select {
  cursor: pointer;
}

select option {
  background: var(--navy-mid);
  color: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--border-focus);
  background: rgba(245, 166, 35, .04);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .1);
}

input:focus~.input-icon,
select:focus~.input-icon {
  color: var(--honey);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Error state */
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #9d1616;
  background: rgba(255, 90, 90, .04);
  box-shadow: 0 0 0 3px rgba(255, 90, 90, .1);
}

.error-msg {
  font-size: .72rem;
  color: var(--error);
  display: none;
  align-items: center;
  gap: 4px;
  animation: fadeUp .2s ease;
}

.field.error .error-msg {
  display: flex;
}

/* Valid state */
.field.valid input,
.field.valid select {
  border-color: rgba(74, 222, 128, .4);
}

.valid-check {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--success);
  font-size: .85rem;
  display: none;
}

.field.valid .valid-check {
  display: block;
}

/* ── FILE UPLOAD ── */
.file-upload-area {
  border: 1.5px dashed rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  background: rgba(255, 255, 255, .02);
}

.file-upload-area:hover {
  border-color: rgba(245, 166, 35, .4);
  background: rgba(245, 166, 35, .04);
}

.file-upload-area.has-file {
  border-color: rgba(74, 222, 128, .4);
  background: rgba(74, 222, 128, .04);
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.file-label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}

.file-sub {
  font-size: .7rem;
  color: var(--gray);
  margin-top: 3px;
}

.file-name {
  font-size: .75rem;
  color: var(--success);
  margin-top: 6px;
  font-weight: 600;
  display: none;
}

.file-upload-area.has-file .file-name {
  display: block;
}

.file-upload-area.has-file .file-icon {
  display: none;
}

.file-upload-area.has-file .file-label {
  color: var(--success);
}

/* ── CHARACTER COUNTER ── */
.char-counter {
  font-size: .7rem;
  color: var(--gray);
  text-align: right;
  margin-top: 4px;
}

.char-counter.warn {
  color: var(--honey);
}

.char-counter.over {
  color: var(--error);
}

/* ── FORM FOOTER ── */
.form-footer {
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, .15);
  gap: 16px;
  flex-wrap: wrap;
}

.form-footer-left {
  font-size: .78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-actions {
  display: flex;
  gap: 12px;
}

.btn-reset {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .6);
  padding: 11px 24px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}

.btn-reset:hover {
  border-color: rgba(255, 255, 255, .3);
  color: var(--white);
}

.btn-save {
  background: var(--honey);
  color: var(--navy);
  border: none;
  padding: 11px 32px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-save:hover {
  background: var(--honey-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 166, 35, .35);
}

.btn-save:active {
  transform: translateY(0);
}

/* ── SUCCESS STATE ── */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 14, 42, .95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}

.success-overlay.show {
  display: flex;
  animation: fadeIn .4s ease;
}

.success-anim {
  font-size: 5rem;
  margin-bottom: 24px;
  animation: bounce .6s ease;
}

.success-overlay h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-overlay p {
  color: var(--gray);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-home {
  background: var(--honey);
  color: var(--navy);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.2)
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-5px)
  }

  75% {
    transform: translateX(5px)
  }
}


/* Basic dropdown styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown a {
  text-decoration: none;
  padding: 2px 12px;
  display: block;
  color: rgba(255, 255, 255, .7);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-right: 20px;
  background: rgba(13, 14, 42, .95);
  border: 1px solid #fcfbfb;
  min-width: 150px;
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  padding: 8px 12px;
  display: block;
  color: #e7e7dd;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Container styling */
.app_btn {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  /* Spacing between buttons */
  align-items: center;
}

/* Individual button link styling */
.app_btn li a {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  line-height: 0;
  /* Removes extra spacing below images */
}

/* Image sizing and shape */
.app_btn img {
  width: 160px;
  /* Standard width for store buttons */
  height: auto;
  border-radius: 8px;
  /* Smooths edges if the image isn't already rounded */
  display: block;
}

/* Hover Effects */
.app_btn li a:hover {
  transform: translateY(-3px);
  /* Subtle lift effect */
  opacity: 0.9;
}

/* Active/Click effect */
.app_btn li a:active {
  transform: translateY(0);
}

/* Responsive adjustment for mobile */
@media (max-width: 480px) {
  .app_btn {
    flex-direction: column;
    /* Stack buttons on small screens */
    gap: 10px;
  }
}

@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;

    display: none;
    /* 🔴 IMPORTANT */
    opacity: 1;
    pointer-events: auto;
    margin-top: 10px;
    padding-left: 10px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    /* ✅ SHOW MENU */
  }

}