/* ============================================================
   Reach Up — stylesheet
   Tokens: blue gradient brand (#5FA8FF → #0047AB) on a paper-blue
   canvas, Sora for display type, Inter for body, Space Grotesk
   for numbers/data (prices, stats, timeline).
   ============================================================ */

:root{
  --blue-1: #5FA8FF;
  --blue-2: #0047AB;
  --blue-3: #0B3E91;
  --navy: #071A35;
  --navy-2: #0C2549;
  --ink: #0B1E3D;
  --slate: #55648099;
  --slate-solid: #55648C;
  --paper: #F5F8FF;
  --paper-2: #EAF1FF;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --gold: #F5A623;
  --line: #DCE6FA;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-data: 'Space Grotesk', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 20px 50px -25px rgba(11, 30, 61, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(11, 30, 61, 0.18);
  --container: 1180px;
}

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

html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p{ margin: 0 0 1em; color: var(--slate-solid); }

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

ul{ margin: 0; padding: 0; list-style: none; }

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

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

.grad-text{
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

:focus-visible{
  outline: 3px solid var(--blue-1);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ============ Buttons ============ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn--primary{
  background: linear-gradient(90deg, var(--blue-2), var(--blue-3));
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(0, 71, 171, 0.55);
}
.btn--primary:hover{ box-shadow: 0 16px 30px -10px rgba(0, 71, 171, 0.65); }

.btn--ghost{
  background: rgba(0, 71, 171, 0.08);
  color: var(--blue-2);
  border: 1px solid rgba(0, 71, 171, 0.2);
}
.btn--ghost:hover{ background: rgba(0, 71, 171, 0.14); }

.btn--ghost-light{
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost-light:hover{ background: rgba(255,255,255,0.2); }

.btn--outline{
  background: transparent;
  color: var(--blue-2);
  border: 1.5px solid var(--blue-2);
}
.btn--outline:hover{ background: rgba(0, 71, 171, 0.06); }

.btn--whatsapp{
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.55);
}
.btn--whatsapp:hover{ background: var(--whatsapp-dark); }

/* ============ Nav ============ */
.nav{
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 248, 255, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand{ display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.brand__mark{ width: 34px; height: 34px; }
.brand__text{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__text small{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.brand__text--footer{ color: var(--white); }

.nav__links{ display: flex; align-items: center; gap: 1.4rem; }
.nav__links a{
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-solid);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__links a:hover{ color: var(--blue-2); }

.nav__cta{ padding: 0.6em 1.2em; font-size: 0.85rem; }

.hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px;
}
.hamburger span{ height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ============ Mobile menu ============ */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.is-open{ transform: translateX(0); }
.mobile-menu__close{
  align-self: flex-end;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.mobile-menu__links{ display: flex; flex-direction: column; gap: 1.1rem; margin: 2rem 0; }
.mobile-menu__links a{ font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); }
.mobile-menu__social{ display: flex; gap: 1.2rem; margin-bottom: 2rem; }
.mobile-menu__social a{ font-size: 0.85rem; color: var(--blue-1); font-weight: 600; }

/* ============ Hero ============ */
.hero{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}
.hero__bg{ position: absolute; inset: -10% -10% auto -10%; height: 130%; z-index: 0; pointer-events: none; }
.orb{ position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45; }
.orb--1{ width: 340px; height: 340px; background: var(--blue-1); top: -60px; right: 10%; animation: float-a 12s ease-in-out infinite; }
.orb--2{ width: 260px; height: 260px; background: var(--blue-2); bottom: -40px; left: 5%; animation: float-b 14s ease-in-out infinite; }
@keyframes float-a{ 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(-20px, 30px);} }
@keyframes float-b{ 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(25px, -20px);} }

.growth-line{ position: absolute; left: 0; right: 0; bottom: 8%; opacity: 0.7; }
.growth-line svg{ width: 100%; height: 160px; }
#growthPath{
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-line 2.4s ease forwards 0.4s;
}
@keyframes draw-line{ to{ stroke-dashoffset: 0; } }

.hero__content{ position: relative; z-index: 1; }
.hero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.5em 1em;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-2);
  box-shadow: var(--shadow-card);
  margin-bottom: 1.4rem;
}
.pulse-dot{
  width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%{ box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero__title{ font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; margin-bottom: 0.55em; }
.hero__subtitle{ font-size: 1.05rem; max-width: 46ch; margin-bottom: 1.8rem; }
.hero__ctas{ display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }

.hero__trust{ display: flex; flex-wrap: wrap; gap: 1.6rem 2rem; }
.trust-item{ display: flex; flex-direction: column; }
.trust-item strong{ font-family: var(--font-data); font-size: 1.3rem; font-weight: 700; color: var(--blue-2); }
.trust-item span{ font-size: 0.75rem; color: var(--slate-solid); text-transform: uppercase; letter-spacing: 0.04em; }

.hero__slider{
  position: relative;
  z-index: 1;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.slider-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(14px);
  animation: card-in 0.6s ease forwards;
}
.slider-card__top{ display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--slate-solid); margin-bottom: 0.4rem; }
.slider-card__metric{ font-family: var(--font-data); font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.slider-card__label{ font-size: 0.85rem; color: var(--slate-solid); }
@keyframes card-in{ to{ opacity: 1; transform: translateY(0); } }

/* ============ Sections (generic) ============ */
.section{ max-width: var(--container); margin: 0 auto; padding: 5rem 1.5rem; }
.section__head{ max-width: 640px; margin: 0 auto 2.8rem; text-align: center; }
.section__head--light{ }
.eyebrow{
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 0.6rem;
}
.section__head h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section__head p{ font-size: 1rem; }

/* ============ Countries ============ */
.country-selector{ display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.6rem; }
.country-pill{
  padding: 0.6em 1.2em;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.country-pill.is-active, .country-pill:hover{
  background: linear-gradient(90deg, var(--blue-2), var(--blue-3));
  color: var(--white);
  border-color: transparent;
}
.country-grid{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}
.country-group h4{ font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue-2); margin-bottom: 1rem; }
.country-group ul{ display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; }
.country-group li{ font-size: 0.92rem; color: var(--slate-solid); position: relative; padding-left: 1rem; }
.country-group li::before{ content: "•"; position: absolute; left: 0; color: var(--blue-1); }
.countries__more{ text-align: center; margin-top: 1.6rem; font-size: 0.9rem; }
.countries__more a{ color: var(--blue-2); font-weight: 600; }

/* ============ Platforms ============ */
.platform-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.platform-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
  position: relative;
}
.platform-card:hover{ transform: translateY(-4px); }
.platform-card.is-soon{ opacity: 0.65; }
.platform-icon{
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-data); font-weight: 700; color: var(--white);
  margin-bottom: 1rem; font-size: 0.95rem;
}
.platform-icon.ig{ background: linear-gradient(135deg, #f5a623, #d6249f, #515bd4); }
.platform-icon.fb{ background: #1877F2; }
.platform-icon.tt{ background: linear-gradient(135deg, #010101, #25F4EE, #FE2C55); }
.platform-icon.yt{ background: #FF0000; }
.platform-icon.tg{ background: #29A9EA; }
.platform-icon.x{ background: #000000; }
.platform-card h3{ font-size: 1.1rem; }
.platform-card p{ font-size: 0.9rem; }
.tag{
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 0.3em 0.7em; border-radius: 999px;
  background: rgba(37,211,102,0.12); color: var(--whatsapp-dark);
}
.tag--soon{ background: rgba(85,100,140,0.12); color: var(--slate-solid); }

/* ============ Pricing ============ */
.pricing-tabs{ display: flex; justify-content: center; gap: 0.6rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.pricing-tab{
  padding: 0.6em 1.4em; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  background: var(--white); border: 1px solid var(--line); transition: all 0.2s ease;
}
.pricing-tab.is-active, .pricing-tab:hover{ background: var(--ink); color: var(--white); border-color: var(--ink); }

.pricing-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.price-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.8rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  position: relative; transition: transform 0.2s ease;
}
.price-card:hover{ transform: translateY(-4px); }
.price-card.is-highlight{ border: 2px solid var(--blue-2); }
.price-card__badge{
  position: absolute; top: -12px; right: 1.4rem; background: var(--gold); color: var(--navy);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; padding: 0.3em 0.8em; border-radius: 999px;
}
.price-card h3{ font-size: 1.05rem; margin-bottom: 0.3rem; }
.price-card__price{ font-family: var(--font-data); font-size: 2rem; font-weight: 700; color: var(--blue-2); margin-bottom: 0.2rem; }
.price-card__price small{ font-family: var(--font-body); font-size: 0.85rem; color: var(--slate-solid); font-weight: 500; }
.price-card ul{ margin: 1rem 0 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.price-card li{ font-size: 0.88rem; color: var(--slate-solid); padding-left: 1.2rem; position: relative; }
.price-card li::before{ content: "✓"; position: absolute; left: 0; color: var(--whatsapp-dark); font-weight: 700; }

/* ============ Why ============ */
.why-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.why-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.5rem; box-shadow: var(--shadow-card);
}
.why-ico{ font-size: 1.6rem; margin-bottom: 0.7rem; }
.why-card h4{ font-size: 1rem; }
.why-card p{ font-size: 0.88rem; margin-bottom: 0; }

/* ============ Builder ============ */
.builder-card{
  max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-soft);
}
.builder-row{ display: flex; gap: 2rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.builder-field{ flex: 1; min-width: 220px; }
.builder-field label{ display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate-solid); margin-bottom: 0.7rem; }
.chip-group{ display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip{
  padding: 0.5em 1em; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line);
  font-size: 0.85rem; font-weight: 600; transition: all 0.2s ease;
}
.chip.is-active{ background: var(--ink); color: var(--white); border-color: var(--ink); }

.builder-row--slider{ display: flex; flex-direction: column; }
.builder-row--slider label{ font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.8rem; text-transform: none; }
.builder-row--slider label span{ font-family: var(--font-data); color: var(--blue-2); }
#builderSlider{
  width: 100%; accent-color: var(--blue-2); height: 6px; margin-bottom: 0.5rem;
}
.builder-scale{ display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--slate-solid); }

.builder-result{
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding: 1.4rem; background: var(--paper); border-radius: var(--radius-md); margin-bottom: 1.6rem;
}
.builder-summary{ font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
.builder-note{ font-size: 0.82rem; margin-bottom: 0; }
.builder-price{ font-family: var(--font-data); font-size: 2.2rem; font-weight: 700; color: var(--blue-2); display: flex; align-items: baseline; gap: 0.1rem; }
.builder-price small{ font-family: var(--font-body); font-size: 0.9rem; color: var(--slate-solid); font-weight: 500; margin-left: 0.2rem; }
.builder-cta{ width: 100%; justify-content: center; }

/* ============ Business ============ */
.business{ background: var(--navy); border-radius: var(--radius-lg); margin: 0 1.5rem; padding: 5rem 1.5rem; max-width: none; }
.business .section__head--light h2, .business .section__head--light p{ color: var(--white); }
.business .eyebrow{ color: var(--blue-1); }
.business .section__head--light p{ color: #B7C6E6; }

.business-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; max-width: var(--container); margin: 0 auto; }
.business-card{
  background: var(--navy-2); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
  padding: 2rem; color: var(--white); position: relative;
}
.business-card.is-highlight{ background: linear-gradient(160deg, var(--blue-2), var(--blue-3)); border-color: transparent; }
.badge{
  position: absolute; top: -12px; left: 2rem; background: var(--gold); color: var(--navy);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; padding: 0.35em 0.9em; border-radius: 999px;
}
.business-card h3{ color: var(--white); font-size: 1.15rem; }
.business-price{ font-family: var(--font-data); font-size: 1.8rem; font-weight: 700; margin-bottom: 1.2rem; }
.business-price span{ color: var(--white); }
.business-card ul{ display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.6rem; }
.business-card li{ font-size: 0.9rem; color: #C9D6EE; padding-left: 1.2rem; position: relative; }
.business-card li::before{ content: "✓"; position: absolute; left: 0; color: var(--blue-1); font-weight: 700; }
.business-card .btn--outline{ color: var(--white); border-color: rgba(255,255,255,0.5); }
.business-card .btn--outline:hover{ background: rgba(255,255,255,0.1); }

/* ============ How it works / timeline ============ */
.timeline{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; position: relative; }
.timeline::before{
  content: ""; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2)); opacity: 0.4;
}
.timeline-step{ position: relative; text-align: center; }
.timeline-num{
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2)); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-data); font-weight: 700;
  box-shadow: var(--shadow-card); position: relative; z-index: 1;
}
.timeline-step h4{ font-size: 1rem; }
.timeline-step p{ font-size: 0.88rem; }

/* ============ Reviews ============ */
.reviews{ overflow: hidden; }
.review-track{
  display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.6rem;
}
.review-card{
  scroll-snap-align: start; min-width: 280px; flex: 1 0 280px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.6rem; box-shadow: var(--shadow-card);
}
.review-stars{ color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.review-card p{ font-size: 0.95rem; font-style: italic; color: var(--ink); }
.review-author{ font-size: 0.85rem; font-weight: 600; color: var(--blue-2); }

/* ============ Payments ============ */
.payments-grid{ display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.payment-pill{
  padding: 0.7em 1.4em; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  font-weight: 600; font-size: 0.9rem; color: var(--ink); box-shadow: var(--shadow-card);
}

/* ============ FAQ ============ */
.accordion{ max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.accordion-item{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.accordion-head{
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem; font-weight: 600; font-size: 0.95rem; text-align: left;
}
.accordion-head span{ font-size: 1.3rem; color: var(--blue-2); transition: transform 0.25s ease; line-height: 1; }
.accordion-item.is-open .accordion-head span{ transform: rotate(45deg); }
.accordion-body{
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.4rem;
}
.accordion-item.is-open .accordion-body{ max-height: 300px; padding: 0 1.4rem 1.2rem; }
.accordion-body p{ font-size: 0.9rem; margin: 0; }

/* ============ Final CTA ============ */
.cta-final{ max-width: none; padding: 0; }
.cta-final__inner{
  max-width: var(--container); margin: 0 1.5rem; padding: 4rem 2rem; text-align: center;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-3)); border-radius: var(--radius-lg); color: var(--white);
}
.cta-final__inner h2{ color: var(--white); }
.cta-final__inner p{ color: #DCE9FF; max-width: 46ch; margin: 0 auto 1.6rem; }
.cta-final__buttons{ display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============ Footer ============ */
.footer{ background: var(--navy); color: #B7C6E6; margin-top: 4rem; padding: 4rem 1.5rem 1.5rem; }
.footer__grid{
  max-width: var(--container); margin: 0 auto; display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p{ font-size: 0.9rem; color: #9FB0D6; max-width: 32ch; }
.footer__social{ display: flex; gap: 0.8rem; }
.footer__social a{
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700;
  transition: background 0.2s ease;
}
.footer__social a:hover{ background: var(--blue-2); }
.footer__col h5{ font-family: var(--font-display); color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.footer__col a{ display: block; font-size: 0.88rem; margin-bottom: 0.7rem; color: #B7C6E6; transition: color 0.2s ease; }
.footer__col a:hover{ color: var(--blue-1); }
.footer__bottom{
  max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 0.6rem; padding-top: 1.6rem; font-size: 0.8rem; color: #8598C2;
}

/* ============ Floating WhatsApp ============ */
.whatsapp-float{
  position: fixed; bottom: 26px; right: 26px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }

/* ============ Scroll progress + back to top ============ */
.scroll-progress{
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  z-index: 300;
}
.back-to-top{
  position: fixed; bottom: 26px; right: 96px; z-index: 150; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-card); color: var(--blue-2);
  font-size: 1.1rem; opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top.is-visible{ opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ============ Chatbot ============ */
.chatbot{ position: fixed; bottom: 26px; right: 26px; z-index: 149; }
.chatbot__toggle{
  width: 58px; height: 58px; border-radius: 50%; background: var(--ink); color: var(--white);
  display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-soft);
}
.chatbot__panel{
  position: fixed; bottom: 100px; right: 26px; width: 340px; max-width: calc(100vw - 2.4rem);
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line);
  transform: translateY(20px) scale(0.97); opacity: 0; pointer-events: none; transition: all 0.25s ease;
}
.chatbot__panel.is-open{ transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chatbot__header{
  background: linear-gradient(90deg, var(--blue-2), var(--blue-3)); color: var(--white);
  padding: 1rem 1.2rem; display: flex; justify-content: space-between; align-items: center; font-weight: 700;
}
.chatbot__header button{ color: var(--white); font-size: 1.3rem; line-height: 1; }
.chatbot__messages{ padding: 1rem 1.2rem; height: 260px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.6rem; }
.chat-msg{ max-width: 80%; padding: 0.6em 0.9em; border-radius: 12px; font-size: 0.85rem; line-height: 1.4; }
.chat-msg.bot{ background: var(--paper-2); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user{ background: var(--blue-2); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chatbot__quick{ display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1.2rem 0.8rem; }
.chatbot__quick button{
  font-size: 0.76rem; padding: 0.4em 0.8em; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line);
  transition: background 0.2s ease;
}
.chatbot__quick button:hover{ background: var(--paper); }
.chatbot__input{ display: flex; border-top: 1px solid var(--line); }
.chatbot__input input{
  flex: 1; border: none; padding: 0.9rem 1.2rem; font-family: inherit; font-size: 0.85rem; outline: none;
}
.chatbot__input button{ width: 50px; color: var(--blue-2); font-size: 1.2rem; }

/* ============ Responsive ============ */
@media (max-width: 980px){
  .nav__links{ display: none; }
  .hamburger{ display: flex; }
  .hero{ grid-template-columns: 1fr; }
  .country-grid{ grid-template-columns: 1fr; }
  .platform-grid{ grid-template-columns: repeat(2, 1fr); }
  .timeline{ grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .timeline::before{ display: none; }
  .footer__grid{ grid-template-columns: repeat(2, 1fr); }
  .business{ margin: 0 0.8rem; }
}

@media (max-width: 600px){
  .platform-grid{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .builder-row{ gap: 1.2rem; }
  .chatbot__panel{ right: 12px; bottom: 88px; }
  .whatsapp-float{ right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .back-to-top{ right: 78px; bottom: 16px; }
}




/* ============ চ্যাটবট + WhatsApp একসাথে ============ */
.chatbot-wrapper {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 149;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

/* চ্যাটবট টগল বাটন - উপরে থাকবে */
.chatbot__toggle {
  display: flex !important;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-3));
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(0, 71, 171, 0.6);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 150;
}

.chatbot__toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 35px -10px rgba(0, 71, 171, 0.7);
}

.chatbot__toggle svg {
  width: 28px;
  height: 28px;
}

/* WhatsApp ফ্লোটিং বাটন - নিচে থাকবে */
.whatsapp-float {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease;
  z-index: 149;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* চ্যাটবট প্যানেল - WhatsApp-এর উপরে খুলবে */
.chatbot__panel {
  position: fixed;
  bottom: 110px;
  right: 26px;
  width: 350px;
  max-width: calc(100vw - 2.4rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 151;
}

.chatbot__panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* মোবাইলের জন্য */
@media (max-width: 600px) {
  .chatbot-wrapper {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  
  .chatbot__toggle {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
  
  .chatbot__panel {
    right: 12px;
    bottom: 100px;
    width: calc(100vw - 24px);
  }
}

/* চ্যাটবটের ভিতরের স্টাইল */
.chatbot__header {
  background: linear-gradient(90deg, var(--blue-2), var(--blue-3));
  color: var(--white);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.chatbot__header button {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

.chatbot__messages {
  padding: 1rem 1.2rem;
  height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chat-msg {
  max-width: 80%;
  padding: 0.6em 0.9em;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.chat-msg.bot {
  background: var(--paper-2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--blue-2);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.2rem 0.8rem;
}

.chatbot__quick button {
  font-size: 0.76rem;
  padding: 0.4em 0.8em;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: background 0.2s ease;
  cursor: pointer;
}

.chatbot__quick button:hover {
  background: var(--paper);
}

.chatbot__input {
  display: flex;
  border-top: 1px solid var(--line);
}

.chatbot__input input {
  flex: 1;
  border: none;
  padding: 0.9rem 1.2rem;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}

.chatbot__input button {
  width: 50px;
  color: var(--blue-2);
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
}
/* ============ স্মার্ট চ্যাটবট স্টাইল ============ */

/* চ্যাটবট মেসেজ স্টাইল */
.chat-msg {
  max-width: 85%;
  padding: 0.8em 1em;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  word-wrap: break-word;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
  background: var(--paper-2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--blue-2), var(--blue-3));
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 71, 171, 0.2);
}

/* চ্যাটবট হেডার */
.chatbot__header {
  background: linear-gradient(135deg, var(--blue-2), var(--blue-3));
  color: var(--white);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.chatbot__header span::before {
  content: "🤖 ";
}

.chatbot__header button {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.chatbot__header button:hover {
  opacity: 1;
}

/* চ্যাটবট মেসেজ এরিয়া */
.chatbot__messages {
  padding: 1rem 1.2rem;
  height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--paper);
  scroll-behavior: smooth;
}

.chatbot__messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot__messages::-webkit-scrollbar-track {
  background: var(--paper-2);
}

.chatbot__messages::-webkit-scrollbar-thumb {
  background: var(--blue-1);
  border-radius: 999px;
}

/* কুইক বাটন */
.chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem 0.8rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chatbot__quick button {
  font-size: 0.72rem;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.chatbot__quick button:hover {
  background: var(--blue-2);
  color: var(--white);
  border-color: var(--blue-2);
  transform: translateY(-1px);
}

/* ইনপুট এরিয়া */
.chatbot__input {
  display: flex;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chatbot__input input {
  flex: 1;
  border: none;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  background: transparent;
}

.chatbot__input input::placeholder {
  color: var(--slate-solid);
  opacity: 0.7;
}

.chatbot__input button {
  width: 50px;
  color: var(--blue-2);
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot__input button:hover {
  color: var(--blue-3);
  transform: scale(1.1);
}

/* চ্যাটবট প্যানেল - বড় স্ক্রিনে */
.chatbot__panel {
  position: fixed;
  bottom: 110px;
  right: 26px;
  width: 380px;
  max-width: calc(100vw - 2.4rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 151;
}

.chatbot__panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* মোবাইলের জন্য */
@media (max-width: 600px) {
  .chatbot__panel {
    right: 10px;
    bottom: 100px;
    width: calc(100vw - 20px);
    max-height: 85vh;
    border-radius: var(--radius-md);
  }
  
  .chatbot__messages {
    height: 220px;
  }
  
  .chatbot__quick button {
    font-size: 0.65rem;
    padding: 0.3em 0.7em;
  }
}
/* চ্যাটবট মেসেজ স্টাইল - আরও ক্লিন */
.chat-msg {
  max-width: 85%;
  padding: 0.8em 1em;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.7;
  word-wrap: break-word;
  animation: fadeIn 0.3s ease;
}

.chat-msg.bot {
  background: var(--paper-2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: 400;
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--blue-2), var(--blue-3));
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 71, 171, 0.2);
  font-weight: 400;
}

/* চ্যাটবট হেডার */
.chatbot__header {
  background: linear-gradient(135deg, var(--blue-2), var(--blue-3));
  color: var(--white);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.chatbot__header span::before {
  content: "🤖 ";
}

/* ============ চ্যাটবট - মোবাইল ফুল স্ক্রিন ============ */

/* চ্যাটবট প্যানেল - ডেস্কটপ */
.chatbot__panel {
  position: fixed;
  bottom: 110px;
  right: 26px;
  width: 380px;
  max-width: calc(100vw - 2.4rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 151;
  max-height: 600px;
}

.chatbot__panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* চ্যাটবট - মোবাইল ফুল স্ক্রিন */
@media (max-width: 768px) {
  .chatbot__panel {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(0) scale(1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    box-shadow: none;
    border: none;
  }

  .chatbot__panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* চ্যাটবট হেডার - মোবাইল */
  .chatbot__header {
    padding: 1.2rem 1.5rem;
    border-radius: 0;
    flex-shrink: 0;
    min-height: 60px;
    font-size: 1.1rem;
  }

  .chatbot__header button {
    font-size: 1.8rem;
    padding: 0 8px;
  }

  /* চ্যাটবট মেসেজ - মোবাইল */
  .chatbot__messages {
    padding: 1.2rem 1.5rem;
    height: auto !important;
    flex: 1;
    overflow-y: auto;
    background: var(--paper);
    min-height: 200px;
  }

  .chat-msg {
    font-size: 1rem;
    max-width: 90%;
    padding: 0.8em 1.1em;
    border-radius: 16px;
  }

  /* কুইক বাটন - মোবাইল */
  .chatbot__quick {
    padding: 0.8rem 1.5rem;
    gap: 0.6rem;
    flex-shrink: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
  }

  .chatbot__quick button {
    font-size: 0.8rem;
    padding: 0.5em 1em;
    border-radius: 999px;
    flex: 0 0 auto;
  }

  /* ইনপুট - মোবাইল */
  .chatbot__input {
    flex-shrink: 0;
    border-top: 1px solid var(--line);
    background: var(--white);
    padding: 0;
  }

  .chatbot__input input {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    min-height: 56px;
  }

  .chatbot__input button {
    width: 60px;
    font-size: 1.5rem;
  }

  /* চ্যাটবট টগল বাটন - মোবাইলে অ্যাডজাস্ট */
  .chatbot__toggle {
    width: 56px;
    height: 56px;
  }

  .chatbot__toggle svg {
    width: 26px;
    height: 26px;
  }

  /* ওভারলে ব্যাকগ্রাউন্ড - মোবাইলে */
  .chatbot-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }

  .chatbot-overlay.is-active {
    display: block;
  }
}

/* ছোট মোবাইলের জন্য (iPhone SE, ইত্যাদি) */
@media (max-width: 400px) {
  .chatbot__header {
    padding: 1rem 1.2rem;
    min-height: 50px;
    font-size: 1rem;
  }

  .chatbot__messages {
    padding: 1rem 1.2rem;
  }

  .chat-msg {
    font-size: 0.9rem;
    padding: 0.6em 0.9em;
  }

  .chatbot__quick {
    padding: 0.6rem 1.2rem;
    gap: 0.4rem;
  }

  .chatbot__quick button {
    font-size: 0.7rem;
    padding: 0.4em 0.8em;
  }

  .chatbot__input input {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    min-height: 48px;
  }

  .chatbot__input button {
    width: 50px;
    font-size: 1.3rem;
  }
}

/* ফুটার সোশ্যাল আইকন */
.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #B7C6E6;
  text-decoration: none;
}

.footer__social a:hover {
  background: var(--blue-2);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 71, 171, 0.3);
}

.footer__social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ফেসবুক হভার কালার */
.footer__social a:hover {
  background: #1877F2;
}

/* ইউটিউব হভার কালার */
.footer__social a:nth-child(2):hover {
  background: #FF0000;
}

/* লিংকডইন হভার কালার */
.footer__social a:nth-child(3):hover {
  background: #0A66C2;
}



/* ============ ল্যাপটপ/ডেস্কটপ ফুল স্ক্রিন ============ */

/* কন্টেইনার ফুল স্ক্রিন */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* সেকশন ফুল স্ক্রিন */
.section {
  max-width: 100% !important;
  width: 100%;
  padding: 5rem 2rem;
}

/* কন্টেইনার */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* হিরো সেকশন ফুল স্ক্রিন */
.hero {
  max-width: 100% !important;
  width: 100%;
  padding: 4.5rem 3rem 5rem;
}

.hero__content {
  max-width: 800px;
}

.hero__slider {
  max-width: 500px;
}

/* নেভিগেশন ফুল স্ক্রিন */
.nav__inner {
  max-width: 100% !important;
  padding: 0.9rem 2rem;
}

/* প্রাইসিং গ্রিড ফুল স্ক্রিন */
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* পেমেন্ট ডিটেইলস ফুল স্ক্রিন */
.payment-details {
  max-width: 100% !important;
  padding: 4rem 2rem;
}

.payment-details-container {
  max-width: 900px;
  margin: 0 auto;
}

.payment-info-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.payment-card {
  padding: 2.5rem 3rem;
}

/* বিজনেস সেকশন ফুল স্ক্রিন */
.business {
  max-width: 100% !important;
  margin: 0 1.5rem;
  border-radius: var(--radius-lg);
  padding: 5rem 2rem;
}

.business-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* ফুল স্ক্রিন স্লাইডার */
.hero__slider .slider-card {
  max-width: 100%;
}

/* টাইমলাইন ফুল স্ক্রিন */
.timeline {
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}

/* ফুটার ফুল স্ক্রিন */
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
}

.footer {
  padding: 4rem 2rem 1.5rem;
}

/* সেকশন হেড - বড় স্ক্রিনে */
.section__head {
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section__head h2 {
  font-size: 2.5rem;
}

.section__head p {
  font-size: 1.1rem;
}

/* কান্ট্রি গ্রিড ফুল স্ক্রিন */
.country-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem;
}

/* প্ল্যাটফর্ম গ্রিড ফুল স্ক্রিন */
.platform-grid {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* বিল্ডার ফুল স্ক্রিন */
.builder-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 2.5rem;
}

/* রিভিউ ফুল স্ক্রিন */
.review-track {
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.8rem;
}

.review-card {
  min-width: 300px;
  flex: 1 0 300px;
  padding: 2rem;
}

/* সিটিএ ফুল স্ক্রিন */
.cta-final__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 3rem;
}

/* ============ ডেস্কটপ লার্জ স্ক্রিনের জন্য ============ */
@media (min-width: 1400px) {
  .hero__title {
    font-size: 4rem;
  }
  
  .section {
    padding: 6rem 3rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .business-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer__grid {
    gap: 3rem;
  }
}

/* ============ মিডিয়াম স্ক্রিন (ট্যাবলেট) ============ */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero {
    padding: 3.5rem 2rem 4rem;
  }
}

/* ============ মোবাইল স্ক্রিন ============ */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1.2rem;
  }
  
  .hero {
    padding: 3rem 1.2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-grid {
    grid-template-columns: 1fr;
  }
  
  .business-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-info-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-card {
    padding: 1.5rem;
  }
  
  .section__head h2 {
    font-size: 1.8rem;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .country-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  
  .timeline {
    grid-template-columns: 1fr;
  }
  
  .builder-card {
    padding: 1.5rem;
  }
  
  .nav__inner {
    padding: 0.7rem 1.2rem;
  }
  
  .cta-final__inner {
    padding: 2.5rem 1.5rem;
  }
}

/* ============ এক্সট্রা স্মল স্ক্রিন ============ */
@media (max-width: 480px) {
  .section {
    padding: 2.5rem 1rem;
  }
  
  .hero {
    padding: 2rem 1rem 3rem;
  }
  
  .hero__title {
    font-size: 1.8rem;
  }
  
  .section__head h2 {
    font-size: 1.5rem;
  }
  
  .payment-card {
    padding: 1.2rem;
  }
  
  .payment-tab {
    font-size: 0.75rem;
    padding: 0.4em 1em;
  }
  
  .payment-actions .btn {
    min-width: 120px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   BUSINESS PACKAGES - Auto-Swipe Mobile Cards
   ============================================================ */

/* ============ Business Section Base ============ */
.business { 
  background: var(--navy); 
  border-radius: var(--radius-lg); 
  margin: 0 1.5rem; 
  padding: 4rem 2rem; 
  max-width: none; 
  width: auto;
  overflow: hidden;
}

.business .section__head--light { 
  margin-bottom: 2.5rem;
}

.business .section__head--light h2 { 
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.business .section__head--light p { 
  color: #B7C6E6;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.business .eyebrow { 
  color: var(--blue-1); 
}

/* ============ Slider Wrapper ============ */
.business-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ Business Grid ============ */
.business-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  max-width: 1200px; 
  margin: 0 auto; 
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============ Business Card ============ */
.business-card {
  background: var(--navy-2); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: var(--radius-md);
  padding: 2rem; 
  color: var(--white); 
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.business-card.is-highlight { 
  background: linear-gradient(160deg, var(--blue-2), var(--blue-3)); 
  border: 2px solid rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.business-card.is-highlight:hover {
  transform: scale(1.02) translateY(-5px);
}

/* Badge */
.badge {
  position: absolute; 
  top: -12px; 
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold); 
  color: var(--navy);
  font-size: 0.7rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  padding: 0.3em 1em; 
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

/* Card Content */
.business-card h3 { 
  color: var(--white); 
  font-size: 1.2rem; 
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  text-align: center;
}

.business-price { 
  font-family: var(--font-data); 
  font-size: 2rem; 
  font-weight: 700; 
  margin-bottom: 1.2rem;
  color: var(--white);
  text-align: center;
}

.business-price span { 
  color: var(--white); 
}

.business-card ul { 
  display: flex; 
  flex-direction: column; 
  gap: 0.6rem; 
  margin-bottom: 1.5rem;
  flex: 1;
}

.business-card li { 
  font-size: 0.9rem; 
  color: #C9D6EE; 
  padding-left: 1.4rem; 
  position: relative; 
  line-height: 1.5;
  list-style: none;
}

.business-card li::before { 
  content: "✓"; 
  position: absolute; 
  left: 0; 
  top: 0;
  color: var(--blue-1); 
  font-weight: 700;
  font-size: 0.9rem;
}

/* Buttons */
.business-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 0.8em 1.5em;
  font-size: 0.95rem;
}

.business-card .btn--outline { 
  color: var(--white); 
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.business-card .btn--outline:hover { 
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.business-card .btn--primary {
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  border: none;
}

.business-card .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(95, 168, 255, 0.3);
}

/* ============ Slider Dots ============ */
.slider-dots {
  display: none;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: var(--blue-1);
  width: 30px;
  border-radius: 10px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ===== Tablets (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .business {
    margin: 0 1.2rem;
    padding: 3.5rem 1.5rem;
  }
  
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 700px;
  }
  
  .business-card {
    padding: 1.6rem 1.3rem;
    min-height: 320px;
  }
  
  .business-card.is-highlight {
    transform: scale(1);
  }
  
  .business-card.is-highlight:hover {
    transform: translateY(-5px);
  }
  
  .badge {
    font-size: 0.65rem;
    padding: 0.25em 0.9em;
  }
  
  .business-card h3 {
    font-size: 1.1rem;
  }
  
  .business-price {
    font-size: 1.6rem;
  }
  
  .business-card li {
    font-size: 0.85rem;
    padding-left: 1.2rem;
  }
  
  .business-card .btn {
    font-size: 0.9rem;
    padding: 0.7em 1.2em;
  }
}

/* ===== MOBILE PHONES - AUTO-SWIPE ===== */
@media (max-width: 767px) {
  .business {
    margin: 0 0.8rem;
    padding: 2.5rem 0.8rem;
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  
  .business .section__head {
    margin-bottom: 1.8rem;
    padding: 0 0.5rem;
  }
  
  .business .section__head h2 {
    font-size: 1.5rem;
  }
  
  .business .section__head p {
    font-size: 0.9rem;
  }
  
  /* Hide grid, use flex for swipe */
  .business-grid {
    display: flex !important;
    gap: 1rem;
    overflow: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1.5rem;
    margin: 0;
    transform: translateX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
  }
  
  /* Each card in horizontal scroll */
  .business-card {
    flex: 0 0 90%;
    min-width: 280px;
    max-width: 340px;
    scroll-snap-align: none;
    padding: 1.5rem 1.2rem;
    min-height: 340px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  /* Hide scrollbar */
  .business-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  
  /* Highlighted card styling */
  .business-card.is-highlight {
    transform: scale(1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(160deg, var(--blue-2), var(--blue-3));
  }
  
  .business-card.is-highlight:hover {
    transform: scale(1);
  }
  
  /* Badge on mobile */
  .badge {
    top: -10px;
    font-size: 0.6rem;
    padding: 0.2em 0.8em;
    box-shadow: 0 3px 10px rgba(245, 166, 35, 0.25);
  }
  
  .business-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }
  
  .business-price {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .business-card ul {
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }
  
  .business-card li {
    font-size: 0.85rem;
    padding-left: 1.2rem;
  }
  
  .business-card .btn {
    font-size: 0.88rem;
    padding: 0.7em 1.2em;
  }
  
  /* Show dots on mobile */
  .slider-dots {
    display: flex;
  }
}

/* ===== Small Mobile Phones (max-width: 480px) ===== */
@media (max-width: 480px) {
  .business {
    padding: 2rem 0.5rem;
    margin: 0 0.5rem;
  }
  
  .business .section__head h2 {
    font-size: 1.3rem;
  }
  
  .business .section__head p {
    font-size: 0.85rem;
  }
  
  .business-grid {
    gap: 0.8rem;
    padding: 0.5rem 0 1.2rem;
  }
  
  .business-card {
    flex: 0 0 92%;
    min-width: 260px;
    padding: 1.2rem 1rem;
    min-height: 310px;
  }
  
  .badge {
    font-size: 0.55rem;
    padding: 0.15em 0.7em;
    top: -8px;
  }
  
  .business-card h3 {
    font-size: 0.95rem;
  }
  
  .business-price {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  
  .business-card li {
    font-size: 0.8rem;
    padding-left: 1.1rem;
  }
  
  .business-card li::before {
    font-size: 0.75rem;
  }
  
  .business-card .btn {
    font-size: 0.82rem;
    padding: 0.6em 1em;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 24px;
  }
}

/* ===== Very Small Phones (max-width: 360px) ===== */
@media (max-width: 360px) {
  .business {
    padding: 1.5rem 0.3rem;
  }
  
  .business .section__head h2 {
    font-size: 1.1rem;
  }
  
  .business .section__head p {
    font-size: 0.78rem;
  }
  
  .business-card {
    flex: 0 0 94%;
    min-width: 230px;
    padding: 1rem 0.8rem;
    min-height: 280px;
  }
  
  .business-card h3 {
    font-size: 0.85rem;
  }
  
  .business-price {
    font-size: 1.1rem;
  }
  
  .business-card li {
    font-size: 0.75rem;
    padding-left: 1rem;
  }
  
  .business-card .btn {
    font-size: 0.78rem;
    padding: 0.5em 0.8em;
  }
}

/* ============================================================
   ACCESSIBILITY & UTILITY
   ============================================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .business-card {
    transition: none !important;
  }
  
  .business-card:hover {
    transform: none !important;
  }
  
  .business-card.is-highlight {
    transform: none !important;
  }
  
  .business-card.is-highlight:hover {
    transform: none !important;
  }
  
  .business-grid {
    transition: none !important;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .business {
    background: #0a1a2e;
  }
  
  .business-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
  }
  
  .business-card.is-highlight {
    background: linear-gradient(160deg, #003d99, #002266);
  }
}

/* Print Styles */
@media print {
  .business {
    background: white !important;
    margin: 0 !important;
    padding: 2rem !important;
    border: 1px solid #ddd !important;
  }
  
  .business .section__head--light h2 {
    color: #000 !important;
  }
  
  .business .section__head--light p {
    color: #666 !important;
  }
  
  .business-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    transform: none !important;
  }
  
  .business-card {
    flex: none !important;
    min-width: auto !important;
    max-width: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }
  
  .business-card h3,
  .business-price span,
  .business-card li {
    color: #000 !important;
  }
  
  .business-card .btn {
    display: none !important;
  }
  
  .badge {
    background: gold !important;
    color: #000 !important;
  }
  
  .slider-dots {
    display: none !important;
  }
}


/* Fix for business slider - ensure smooth sliding */
@media (max-width: 767px) {
  .business-grid {
    display: flex !important;
    gap: 1rem;
    overflow: hidden;
    padding: 0.5rem 0 1.5rem;
    margin: 0;
    transform: translateX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: transform;
  }

  .business-card {
    flex: 0 0 90%;
    min-width: 280px;
    max-width: 340px;
    padding: 1.5rem 1.2rem;
    min-height: 340px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Ensure slider container has proper width */
  .business-slider-wrapper {
    overflow: hidden;
    position: relative;
  }

  /* Dots styling */
  .slider-dots {
    display: flex !important;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
  }

  .dot.active {
    background: var(--blue-1);
    width: 30px;
    border-radius: 10px;
  }
}



/* ============================================================
   BUSINESS PACKAGES - Auto-Swipe Mobile Cards (FIXED)
   ============================================================ */

/* ============ Business Section Base ============ */
.business { 
  background: var(--navy); 
  border-radius: var(--radius-lg); 
  margin: 0 1.5rem; 
  padding: 4rem 2rem; 
  max-width: none; 
  width: auto;
  overflow: hidden;
}

.business .section__head--light { 
  margin-bottom: 2.5rem;
}

.business .section__head--light h2 { 
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.business .section__head--light p { 
  color: #B7C6E6;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.business .eyebrow { 
  color: var(--blue-1); 
}

/* ============ Slider Wrapper ============ */
.business-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* ============ Business Grid ============ */
.business-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  max-width: 1200px; 
  margin: 0 auto; 
}

/* ============ Business Card ============ */
.business-card {
  background: var(--navy-2); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: var(--radius-md);
  padding: 2rem; 
  color: var(--white); 
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
  width: 100%;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.business-card.is-highlight { 
  background: linear-gradient(160deg, var(--blue-2), var(--blue-3)); 
  border: 2px solid rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.business-card.is-highlight:hover {
  transform: scale(1.02) translateY(-5px);
}

/* Badge */
.badge {
  position: absolute; 
  top: -12px; 
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold); 
  color: var(--navy);
  font-size: 0.7rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  padding: 0.3em 1em; 
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  z-index: 10;
}

/* Card Content */
.business-card h3 { 
  color: var(--white); 
  font-size: 1.2rem; 
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  text-align: center;
}

.business-price { 
  font-family: var(--font-data); 
  font-size: 2rem; 
  font-weight: 700; 
  margin-bottom: 1.2rem;
  color: var(--white);
  text-align: center;
}

.business-price span { 
  color: var(--white); 
}

.business-card ul { 
  display: flex; 
  flex-direction: column; 
  gap: 0.6rem; 
  margin-bottom: 1.5rem;
  flex: 1;
}

.business-card li { 
  font-size: 0.9rem; 
  color: #C9D6EE; 
  padding-left: 1.4rem; 
  position: relative; 
  line-height: 1.5;
  list-style: none;
}

.business-card li::before { 
  content: "✓"; 
  position: absolute; 
  left: 0; 
  top: 0;
  color: var(--blue-1); 
  font-weight: 700;
  font-size: 0.9rem;
}

/* Buttons */
.business-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 0.8em 1.5em;
  font-size: 0.95rem;
}

.business-card .btn--outline { 
  color: var(--white); 
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.business-card .btn--outline:hover { 
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.business-card .btn--primary {
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  border: none;
}

.business-card .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(95, 168, 255, 0.3);
}

/* ============ Slider Dots ============ */
.slider-dots {
  display: none;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: var(--blue-1);
  width: 30px;
  border-radius: 10px;
}

/* ============================================================
   MOBILE RESPONSIVE - SWIPEABLE CARDS
   ============================================================ */

/* ===== Mobile Phones ===== */
@media (max-width: 767px) {
  .business {
    margin: 0 0.8rem;
    padding: 2.5rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  
  .business .section__head {
    margin-bottom: 1.8rem;
    padding: 0 0.8rem;
  }
  
  .business .section__head h2 {
    font-size: 1.5rem;
  }
  
  .business .section__head p {
    font-size: 0.9rem;
  }
  
  /* Slider container - FIXED */
  .business-slider-wrapper {
    overflow: visible;
    padding: 0;
  }
  
  /* Grid becomes flex slider - FIXED */
  .business-grid {
    display: flex !important;
    gap: 1rem;
    overflow: visible;
    padding: 0.5rem 0.8rem 1.5rem;
    margin: 0;
    transform: translateX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: transform;
    /* Important: keep cards visible */
    position: relative;
  }
  
  /* Each card - FIXED visibility */
  .business-card {
    flex: 0 0 90%;
    min-width: 280px;
    max-width: 340px;
    padding: 1.5rem 1.2rem;
    min-height: 340px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Ensure text is visible */
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
  }
  
  /* Hide scrollbar */
  .business-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  
  .business-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  /* Highlighted card - FIXED */
  .business-card.is-highlight {
    transform: scale(1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(160deg, var(--blue-2), var(--blue-3));
  }
  
  .business-card.is-highlight:hover {
    transform: scale(1);
  }
  
  /* Badge on mobile */
  .badge {
    top: -10px;
    font-size: 0.6rem;
    padding: 0.2em 0.8em;
    box-shadow: 0 3px 10px rgba(245, 166, 35, 0.25);
  }
  
  .business-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: var(--white) !important;
  }
  
  .business-price {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--white) !important;
  }
  
  .business-price span {
    color: var(--white) !important;
  }
  
  .business-card ul {
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }
  
  .business-card li {
    font-size: 0.85rem;
    padding-left: 1.2rem;
    color: #C9D6EE !important;
  }
  
  .business-card .btn {
    font-size: 0.88rem;
    padding: 0.7em 1.2em;
  }
  
  /* Show dots on mobile */
  .slider-dots {
    display: flex !important;
    padding: 0 0.8rem 0.5rem;
  }
}

/* ===== Small Mobile Phones ===== */
@media (max-width: 480px) {
  .business {
    padding: 2rem 0;
    margin: 0 0.5rem;
  }
  
  .business .section__head h2 {
    font-size: 1.3rem;
  }
  
  .business .section__head p {
    font-size: 0.85rem;
  }
  
  .business-grid {
    gap: 0.8rem;
    padding: 0.5rem 0.5rem 1.2rem;
  }
  
  .business-card {
    flex: 0 0 92%;
    min-width: 260px;
    padding: 1.2rem 1rem;
    min-height: 310px;
  }
  
  .badge {
    font-size: 0.55rem;
    padding: 0.15em 0.7em;
    top: -8px;
  }
  
  .business-card h3 {
    font-size: 0.95rem;
  }
  
  .business-price {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  
  .business-card li {
    font-size: 0.8rem;
    padding-left: 1.1rem;
  }
  
  .business-card li::before {
    font-size: 0.75rem;
  }
  
  .business-card .btn {
    font-size: 0.82rem;
    padding: 0.6em 1em;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 24px;
  }
}

/* ===== Very Small Phones ===== */
@media (max-width: 360px) {
  .business {
    padding: 1.5rem 0;
  }
  
  .business .section__head h2 {
    font-size: 1.1rem;
  }
  
  .business .section__head p {
    font-size: 0.78rem;
  }
  
  .business-card {
    flex: 0 0 94%;
    min-width: 230px;
    padding: 1rem 0.8rem;
    min-height: 280px;
  }
  
  .business-card h3 {
    font-size: 0.85rem;
  }
  
  .business-price {
    font-size: 1.1rem;
  }
  
  .business-card li {
    font-size: 0.75rem;
    padding-left: 1rem;
  }
  
  .business-card .btn {
    font-size: 0.78rem;
    padding: 0.5em 0.8em;
  }
}

/* ===== Landscape Mobile ===== */
@media (max-width: 767px) and (orientation: landscape) and (max-height: 500px) {
  .business {
    padding: 1.5rem 0;
  }
  
  .business .section__head {
    margin-bottom: 1.2rem;
  }
  
  .business .section__head h2 {
    font-size: 1.2rem;
  }
  
  .business-grid {
    gap: 0.8rem;
    padding: 0.3rem 0.8rem 1rem;
  }
  
  .business-card {
    flex: 0 0 60%;
    min-width: 240px;
    padding: 1rem 1rem;
    min-height: 260px;
  }
  
  .business-card h3 {
    font-size: 0.9rem;
  }
  
  .business-price {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .business-card li {
    font-size: 0.78rem;
    padding-left: 1rem;
  }
  
  .business-card .btn {
    font-size: 0.78rem;
    padding: 0.5em 0.8em;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .business-card {
    transition: none !important;
  }
  
  .business-card:hover {
    transform: none !important;
  }
  
  .business-card.is-highlight {
    transform: none !important;
  }
  
  .business-card.is-highlight:hover {
    transform: none !important;
  }
  
  .business-grid {
    transition: none !important;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .business {
    background: #0a1a2e;
  }
  
  .business-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
  }
  
  .business-card.is-highlight {
    background: linear-gradient(160deg, #003d99, #002266);
  }
}


/* ============================================================
   HERO - FULL SCREEN SLIDER (FIXED)
   ============================================================ */

/* Hero Container - Full Viewport */
.hero {
  position: relative;
  width: 100%;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--paper);
  display: block !important;
}

/* Remove any conflicting styles */
.hero::before,
.hero::after {
  display: none !important;
}

/* ============ Slides Container ============ */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  overflow: hidden;
}

/* ============ Individual Slide ============ */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 4rem 6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(0.95);
  z-index: 1;
  background: var(--paper);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* ============ Slide Background ============ */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-slide__bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb--1 {
  width: 400px;
  height: 400px;
  background: var(--blue-1);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.orb--2 {
  width: 300px;
  height: 300px;
  background: var(--blue-2);
  bottom: -50px;
  left: 5%;
  animation-delay: 5s;
}

.orb--3 {
  width: 350px;
  height: 350px;
  background: #FE2C55;
  top: -80px;
  left: 20%;
  animation-delay: 2s;
}

.orb--4 {
  width: 280px;
  height: 280px;
  background: #25F4EE;
  bottom: -30px;
  right: 15%;
  animation-delay: 7s;
}

.orb--5 {
  width: 320px;
  height: 320px;
  background: #F5A623;
  top: -60px;
  right: 25%;
  animation-delay: 3s;
}

.orb--6 {
  width: 300px;
  height: 300px;
  background: #FF6B6B;
  bottom: -40px;
  left: 15%;
  animation-delay: 8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ============ Slide Content ============ */
.hero-slide__content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 600px;
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-slide__content {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-slide__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.hero-slide__title .grad-text {
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-slide__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--slate-solid);
  margin-bottom: 1.5rem;
  max-width: 90%;
  line-height: 1.6;
}

.hero-slide__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-slide__stats .stat {
  display: flex;
  flex-direction: column;
}

.hero-slide__stats .stat span {
  font-family: var(--font-data);
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 700;
  color: var(--blue-2);
}

.hero-slide__stats .stat {
  font-size: 0.85rem;
  color: var(--slate-solid);
}

.hero-slide__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============ Visual Mockups ============ */
.hero-slide__visual {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideRight 0.8s ease forwards;
  opacity: 0;
  transform: translateX(30px);
}

.hero-slide.active .hero-slide__visual {
  opacity: 1;
  transform: translateX(0);
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Phone Mockup */
.phone-mockup {
  width: 280px;
  height: 540px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5, #fff);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: #262626;
}

.phone-stats {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 10px;
  border-radius: 12px;
}

.phone-stat {
  display: flex;
  flex-direction: column;
}

.phone-stat .number {
  font-family: var(--font-data);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-2);
}

.phone-stat .label {
  font-size: 0.65rem;
  color: var(--slate-solid);
}

.phone-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}

.phone-posts .post {
  background: linear-gradient(135deg, #ddd, #eee);
  border-radius: 8px;
  aspect-ratio: 1;
}

/* TikTok Mockup */
.tiktok-mockup {
  width: 280px;
  height: 540px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.tiktok-mockup .tiktok-header {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
}

.tiktok-mockup .tiktok-video {
  width: 100%;
  height: 70%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tiktok-stats {
  display: flex;
  gap: 1rem;
  color: white;
  font-size: 0.8rem;
}

.tiktok-stats .tiktok-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.tiktok-mockup .tiktok-footer {
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Dashboard Mockup */
.dashboard-mockup {
  width: 400px;
  height: 320px;
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.dashboard-mockup .dashboard-header {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.dashboard-mockup .dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  margin-bottom: 1.5rem;
}

.dashboard-mockup .dashboard-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--blue-1), var(--blue-2));
  border-radius: 4px 4px 0 0;
  transition: height 0.3s ease;
  min-height: 20px;
}

.dashboard-mockup .dashboard-stats {
  display: flex;
  gap: 2rem;
}

.dashboard-mockup .dashboard-stats div {
  display: flex;
  flex-direction: column;
}

.dashboard-mockup .dashboard-stats div span {
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-2);
}

.dashboard-mockup .dashboard-stats div {
  font-size: 0.8rem;
  color: var(--slate-solid);
}

/* ============ Navigation Dots ============ */
.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.8rem;
}

.hero-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 71, 171, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-nav-dot:hover {
  background: rgba(0, 71, 171, 0.4);
}

.hero-nav-dot.active {
  background: var(--blue-2);
  width: 40px;
  border-radius: 10px;
}

/* ============ Indicators ============ */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  right: 4rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue-2);
}

.hero-indicators .hero-separator {
  color: var(--slate);
  font-weight: 300;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-slide {
    padding: 4rem 8rem;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 320px;
    height: 600px;
  }
  
  .dashboard-mockup {
    width: 450px;
    height: 350px;
  }
}

/* Desktop */
@media (min-width: 1025px) and (max-width: 1399px) {
  .hero-slide {
    padding: 4rem 6rem;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
  }
  
  .hero-slide {
    padding: 3rem 3rem;
    flex-direction: column;
    gap: 1.5rem;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
  }
  
  .hero-slide__content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-slide__subtitle {
    max-width: 100%;
  }
  
  .hero-slide__stats {
    justify-content: center;
  }
  
  .hero-slide__ctas {
    justify-content: center;
  }
  
  .hero-slide__visual {
    width: 100%;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 200px;
    height: 380px;
  }
  
  .dashboard-mockup {
    width: 100%;
    max-width: 380px;
    height: auto;
  }
  
  .hero-indicators {
    right: 2rem;
    bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
  }
  
  .hero-slide {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
  }
  
  .hero-slide__content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-slide__title {
    font-size: 1.8rem;
  }
  
  .hero-slide__subtitle {
    max-width: 100%;
    font-size: 0.9rem;
  }
  
  .hero-slide__stats {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-slide__stats .stat span {
    font-size: 1.1rem;
  }
  
  .hero-slide__ctas {
    justify-content: center;
  }
  
  .hero-slide__visual {
    width: 100%;
    justify-content: center;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 150px;
    height: 280px;
  }
  
  .phone-screen {
    padding: 12px;
  }
  
  .phone-stats {
    gap: 1rem;
    padding: 8px;
  }
  
  .phone-stat .number {
    font-size: 0.9rem;
  }
  
  .dashboard-mockup {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 1.2rem;
  }
  
  .dashboard-mockup .dashboard-chart {
    height: 70px;
    gap: 8px;
  }
  
  .dashboard-mockup .dashboard-stats div span {
    font-size: 1.1rem;
  }
  
  .hero-nav {
    bottom: 30px;
  }
  
  .hero-nav-dot {
    width: 10px;
    height: 10px;
  }
  
  .hero-nav-dot.active {
    width: 30px;
  }
  
  .hero-indicators {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-slide {
    padding: 1.5rem 1rem;
  }
  
  .hero-slide__title {
    font-size: 1.4rem;
  }
  
  .hero-slide__subtitle {
    font-size: 0.8rem;
  }
  
  .hero-slide__stats .stat span {
    font-size: 1rem;
  }
  
  .hero-slide__stats .stat {
    font-size: 0.7rem;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 130px;
    height: 240px;
  }
  
  .phone-screen {
    padding: 8px;
  }
  
  .phone-stats {
    padding: 6px;
    gap: 0.5rem;
  }
  
  .phone-stat .number {
    font-size: 0.8rem;
  }
  
  .phone-posts {
    gap: 4px;
  }
  
  .dashboard-mockup {
    max-width: 260px;
    padding: 1rem;
  }
  
  .dashboard-mockup .dashboard-chart {
    height: 50px;
    gap: 6px;
  }
  
  .dashboard-mockup .dashboard-stats div span {
    font-size: 1rem;
  }
  
  .hero-nav {
    bottom: 20px;
    gap: 0.6rem;
  }
  
  .hero-nav-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-nav-dot.active {
    width: 24px;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.3s ease;
  }
  
  .hero-slide.active {
    transform: none;
  }
  
  .hero-slide__content,
  .hero-slide__visual {
    animation: none;
  }
  
  .hero-slide__bg .orb {
    animation: none;
  }
}

/* ============================================================
   HERO - FULL SCREEN SLIDER (FIXED LAYOUT)
   ============================================================ */

/* Hero Container - Full Viewport */
.hero {
  position: relative;
  width: 100%;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--paper);
  display: flex !important;
  align-items: center !important;
}

/* ============ Slides Container ============ */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  overflow: hidden;
}

/* ============ Individual Slide ============ */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 4rem 6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(0.95);
  z-index: 1;
  background: var(--paper);
  gap: 4rem;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* ============ Slide Background ============ */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-slide__bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb--1 {
  width: 400px;
  height: 400px;
  background: var(--blue-1);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.orb--2 {
  width: 300px;
  height: 300px;
  background: var(--blue-2);
  bottom: -50px;
  left: 5%;
  animation-delay: 5s;
}

.orb--3 {
  width: 350px;
  height: 350px;
  background: #FE2C55;
  top: -80px;
  left: 20%;
  animation-delay: 2s;
}

.orb--4 {
  width: 280px;
  height: 280px;
  background: #25F4EE;
  bottom: -30px;
  right: 15%;
  animation-delay: 7s;
}

.orb--5 {
  width: 320px;
  height: 320px;
  background: #F5A623;
  top: -60px;
  right: 25%;
  animation-delay: 3s;
}

.orb--6 {
  width: 300px;
  height: 300px;
  background: #FF6B6B;
  bottom: -40px;
  left: 15%;
  animation-delay: 8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ============ Slide Content (Left Side) ============ */
.hero-slide__content {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  max-width: 600px;
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-slide__content {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-slide__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.hero-slide__title .grad-text {
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-slide__subtitle {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: var(--slate-solid);
  margin-bottom: 1.5rem;
  max-width: 90%;
  line-height: 1.6;
}

.hero-slide__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-slide__stats .stat {
  display: flex;
  flex-direction: column;
}

.hero-slide__stats .stat span {
  font-family: var(--font-data);
  font-size: clamp(1.3rem, 1.5vw, 1.8rem);
  font-weight: 700;
  color: var(--blue-2);
}

.hero-slide__stats .stat {
  font-size: 0.85rem;
  color: var(--slate-solid);
}

.hero-slide__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============ Visual Mockups (Right Side) ============ */
.hero-slide__visual {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideRight 0.8s ease forwards;
  opacity: 0;
  transform: translateX(30px);
  max-width: 50%;
}

.hero-slide.active .hero-slide__visual {
  opacity: 1;
  transform: translateX(0);
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Phone Mockup */
.phone-mockup {
  width: 280px;
  height: 540px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5, #fff);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: #262626;
}

.phone-stats {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 10px;
  border-radius: 12px;
}

.phone-stat {
  display: flex;
  flex-direction: column;
}

.phone-stat .number {
  font-family: var(--font-data);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-2);
}

.phone-stat .label {
  font-size: 0.65rem;
  color: var(--slate-solid);
}

.phone-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}

.phone-posts .post {
  background: linear-gradient(135deg, #ddd, #eee);
  border-radius: 8px;
  aspect-ratio: 1;
}

/* TikTok Mockup */
.tiktok-mockup {
  width: 280px;
  height: 540px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.tiktok-mockup .tiktok-header {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
}

.tiktok-mockup .tiktok-video {
  width: 100%;
  height: 70%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tiktok-stats {
  display: flex;
  gap: 1rem;
  color: white;
  font-size: 0.8rem;
}

.tiktok-stats .tiktok-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.tiktok-mockup .tiktok-footer {
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Dashboard Mockup */
.dashboard-mockup {
  width: 400px;
  height: 320px;
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.dashboard-mockup .dashboard-header {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.dashboard-mockup .dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  margin-bottom: 1.5rem;
}

.dashboard-mockup .dashboard-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--blue-1), var(--blue-2));
  border-radius: 4px 4px 0 0;
  transition: height 0.3s ease;
  min-height: 20px;
}

.dashboard-mockup .dashboard-stats {
  display: flex;
  gap: 2rem;
}

.dashboard-mockup .dashboard-stats div {
  display: flex;
  flex-direction: column;
}

.dashboard-mockup .dashboard-stats div span {
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-2);
}

.dashboard-mockup .dashboard-stats div {
  font-size: 0.8rem;
  color: var(--slate-solid);
}

/* ============ Navigation Dots ============ */
.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.8rem;
}

.hero-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 71, 171, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-nav-dot:hover {
  background: rgba(0, 71, 171, 0.4);
}

.hero-nav-dot.active {
  background: var(--blue-2);
  width: 40px;
  border-radius: 10px;
}

/* ============ Indicators ============ */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  right: 4rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue-2);
}

.hero-indicators .hero-separator {
  color: var(--slate);
  font-weight: 300;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-slide {
    padding: 4rem 8rem;
    gap: 5rem;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 320px;
    height: 600px;
  }
  
  .dashboard-mockup {
    width: 450px;
    height: 350px;
  }
}

/* Desktop */
@media (min-width: 1025px) and (max-width: 1399px) {
  .hero-slide {
    padding: 4rem 5rem;
    gap: 3rem;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 250px;
    height: 480px;
  }
  
  .dashboard-mockup {
    width: 350px;
    height: 290px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
  }
  
  .hero-slide {
    padding: 3rem 2.5rem;
    flex-direction: column;
    gap: 2rem;
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    justify-content: center !important;
  }
  
  .hero-slide__content {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-slide__subtitle {
    max-width: 100%;
  }
  
  .hero-slide__stats {
    justify-content: center;
  }
  
  .hero-slide__ctas {
    justify-content: center;
  }
  
  .hero-slide__visual {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 220px;
    height: 400px;
  }
  
  .dashboard-mockup {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  
  .hero-indicators {
    right: 2rem;
    bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
  }
  
  .hero-slide {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    justify-content: center !important;
  }
  
  .hero-slide__content {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-slide__title {
    font-size: 1.8rem;
  }
  
  .hero-slide__subtitle {
    max-width: 100%;
    font-size: 0.9rem;
  }
  
  .hero-slide__stats {
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  
  .hero-slide__stats .stat span {
    font-size: 1.2rem;
  }
  
  .hero-slide__ctas {
    justify-content: center;
  }
  
  .hero-slide__visual {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 180px;
    height: 320px;
  }
  
  .phone-screen {
    padding: 12px;
  }
  
  .phone-stats {
    gap: 1rem;
    padding: 8px;
  }
  
  .phone-stat .number {
    font-size: 1rem;
  }
  
  .dashboard-mockup {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 1.2rem;
  }
  
  .dashboard-mockup .dashboard-chart {
    height: 80px;
  }
  
  .dashboard-mockup .dashboard-stats div span {
    font-size: 1.2rem;
  }
  
  .hero-nav {
    bottom: 30px;
  }
  
  .hero-nav-dot {
    width: 10px;
    height: 10px;
  }
  
  .hero-nav-dot.active {
    width: 30px;
  }
  
  .hero-indicators {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-slide {
    padding: 1.5rem 1rem;
  }
  
  .hero-slide__title {
    font-size: 1.4rem;
  }
  
  .hero-slide__subtitle {
    font-size: 0.8rem;
  }
  
  .hero-slide__stats .stat span {
    font-size: 1rem;
  }
  
  .hero-slide__stats .stat {
    font-size: 0.7rem;
  }
  
  .phone-mockup,
  .tiktok-mockup {
    width: 150px;
    height: 260px;
  }
  
  .phone-screen {
    padding: 8px;
  }
  
  .phone-stats {
    padding: 6px;
    gap: 0.5rem;
  }
  
  .phone-stat .number {
    font-size: 0.8rem;
  }
  
  .phone-posts {
    gap: 4px;
  }
  
  .dashboard-mockup {
    max-width: 280px;
    padding: 1rem;
  }
  
  .dashboard-mockup .dashboard-chart {
    height: 60px;
    gap: 6px;
  }
  
  .dashboard-mockup .dashboard-stats div span {
    font-size: 1rem;
  }
  
  .hero-nav {
    bottom: 20px;
    gap: 0.6rem;
  }
  
  .hero-nav-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-nav-dot.active {
    width: 24px;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.3s ease;
  }
  
  .hero-slide.active {
    transform: none;
  }
  
  .hero-slide__content,
  .hero-slide__visual {
    animation: none;
  }
  
  .hero-slide__bg .orb {
    animation: none;
  }
}


/* ============================================================
   SLIDE 1 - INSTAGRAM REDESIGNED
   ============================================================ */

/* Hero Title with Gradient */
.hero-slide__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.hero-slide__title .gradient-text {
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2), #6C63FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.hero-slide__highlight {
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.hero-slide__highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  opacity: 0.2;
  border-radius: 4px;
}

/* Features Grid */
.hero-slide__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-number {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-2);
}

.feature-label {
  font-size: 0.7rem;
  color: var(--slate-solid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Large Button */
.btn--large {
  padding: 1rem 2.2rem;
  font-size: 1rem;
  gap: 0.8rem;
}

.btn--large svg {
  transition: transform 0.3s ease;
}

.btn--large:hover svg {
  transform: translateX(4px);
}

/* ============ Instagram Card ============ */
.instagram-card {
  width: 340px;
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Profile Section */
.ig-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #f0f0f0;
}

.ig-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-2);
}

.ig-online {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.ig-profile-info {
  flex: 1;
}

.ig-username {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.ig-name {
  font-size: 0.8rem;
  color: var(--slate-solid);
  margin: 2px 0 4px;
}

.ig-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f5a623, #f7c948);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Stats Grid */
.ig-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.ig-stat {
  text-align: center;
}

.ig-stat-number {
  display: block;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue-2);
}

.ig-stat-label {
  font-size: 0.6rem;
  color: var(--slate-solid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Posts Grid */
.ig-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 1.2rem;
}

.ig-post {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.ig-post:hover {
  transform: scale(1.05);
}

/* Growth Bar */
.ig-growth-bar {
  position: relative;
  height: 24px;
  background: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
}

.ig-growth-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2), #6C63FF);
  border-radius: 12px;
  transition: width 1s ease;
  position: relative;
}

.ig-growth-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Desktop */
@media (min-width: 1025px) {
  .hero-slide__features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .instagram-card {
    width: 380px;
    padding: 28px;
  }
  
  .ig-avatar {
    width: 72px;
    height: 72px;
  }
  
  .ig-stat-number {
    font-size: 1.4rem;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-slide__features {
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem;
  }
  
  .instagram-card {
    width: 320px;
    padding: 20px;
  }
  
  .ig-avatar {
    width: 56px;
    height: 56px;
  }
  
  .ig-posts-grid {
    gap: 4px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-slide__features {
    grid-template-columns: repeat(3, 1fr);
    padding: 0.8rem;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
  
  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .feature-number {
    font-size: 0.9rem;
  }
  
  .feature-label {
    font-size: 0.6rem;
  }
  
  .instagram-card {
    width: 100%;
    max-width: 340px;
    padding: 16px;
  }
  
  .ig-avatar {
    width: 48px;
    height: 48px;
  }
  
  .ig-username {
    font-size: 0.9rem;
  }
  
  .ig-stats-grid {
    padding: 0.6rem;
  }
  
  .ig-stat-number {
    font-size: 1rem;
  }
  
  .ig-posts-grid {
    gap: 4px;
  }
  
  .ig-post {
    font-size: 1.2rem;
  }
  
  .btn--large {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-slide__features {
    grid-template-columns: repeat(3, 1fr);
    padding: 0.6rem;
    gap: 0.3rem;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .feature-number {
    font-size: 0.8rem;
  }
  
  .feature-label {
    font-size: 0.5rem;
  }
  
  .instagram-card {
    max-width: 280px;
    padding: 12px;
  }
  
  .ig-avatar {
    width: 40px;
    height: 40px;
  }
  
  .ig-username {
    font-size: 0.8rem;
  }
  
  .ig-name {
    font-size: 0.7rem;
  }
  
  .ig-badge {
    font-size: 0.5rem;
    padding: 1px 8px;
  }
  
  .ig-stats-grid {
    padding: 0.4rem;
  }
  
  .ig-stat-number {
    font-size: 0.85rem;
  }
  
  .ig-stat-label {
    font-size: 0.5rem;
  }
  
  .ig-post {
    font-size: 1rem;
  }
  
  .ig-growth-label {
    font-size: 0.55rem;
  }
}
