/* ==========================================================================
   UTTAM SINGH — META ADS EXPERT
   File       : styles.css
   Version    : 2.0 — Production Ready
   Author     : Uttam Singh
   Website    : https://uttamsingh.in

   TABLE OF CONTENTS
   ──────────────────────────────────────────────────────────────────────────
    1.  Design Tokens  (CSS Custom Properties)
    2.  CSS Reset & Base Styles
    3.  Skip Link  (Accessibility)
    4.  Background Ambience  (Orbs + Grid)
    5.  Header & Navigation
    6.  Page Shell & Wrap
    7.  Shared Card Component
    8.  Section Labels & H2 Headings
    9.  Scroll Reveal Animation
   10.  Hero Section
         10a.  Trust Badge + Ticker
         10b.  H1 Heading
         10c.  Subheadline
         10d.  Primary CTA Button (Gold 3D)
         10e.  Risk Strip
         10f.  Social Proof Row
         10g.  Typewriter Capsule
         10h.  Urgency Strip
         10i.  Platform Chips
   11.  Stat Bar
   12.  Platforms Grid
   13.  Services Grid
   14.  About / Expert Bio
   15.  Industries Grid
   16.  Pricing Plans
   17.  Reviews Carousel
   18.  Guarantee & Process Steps
   19.  FAQ Accordion
   20.  Final CTA Block
   21.  Footer
   22.  Sticky Mobile CTA Bar
   23.  Floating WhatsApp Button
   24.  Desktop Enhancements  (≥680px)
   25.  Accessibility & Motion Preferences
   ──────────────────────────────────────────────────────────────────────────
*/


/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
  /* Background layers — darkest to lightest */
  --bg:    #060810;
  --c1:    #0A0C16;
  --c2:    #0F1120;
  --c3:    #151729;
  --c4:    #1B1D30;

  /* Gold — primary brand accent */
  --gold:  #F6A623;
  --goldd: #C8830F;
  --goldl: #FFD076;
  --golda: rgba(246, 166, 35, 0.12);
  --goldb: rgba(246, 166, 35, 0.25);

  /* Blue — trust & information */
  --blue:  #1C6FF4;
  --bluel: #6FA8FF;
  --bluea: rgba(28, 111, 244, 0.13);
  --blueb: rgba(28, 111, 244, 0.22);

  /* Green — success & confirmation */
  --grn:   #11CB7C;
  --grnl:  #60EEB8;
  --grna:  rgba(17, 203, 124, 0.11);
  --grnb:  rgba(17, 203, 124, 0.22);

  /* Text — all WCAG AA compliant on dark backgrounds */
  --t1:    #F0ECFF;   /* Headings    — 14.5:1 contrast */
  --t2:    #A9A4BC;   /* Body        — 7.2:1  contrast */
  --t3:    #8A88A0;   /* Secondary   — 5.4:1  contrast (WCAG AA) */
  --t4:    #6A6880;   /* Muted       — 3.7:1  (captions ≥18px or bold) */

  /* Borders & lines */
  --line:  rgba(255, 255, 255, 0.07);
  --line2: rgba(255, 255, 255, 0.04);

  /* Typography */
  --f: 'Inter', system-ui, -apple-system, Arial, sans-serif;

  /* Border radii */
  --r6:  6px;
  --r8:  8px;
  --r10: 10px;
  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --r24: 24px;
}


/* ==========================================================================
   2. CSS RESET & BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
  margin:     0;
  padding:    0;
  box-sizing: border-box;
}

html {
  scroll-behavior:       smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:               var(--f);
  background:                var(--bg);
  color:                     var(--t2);
  font-size:                 15px;
  line-height:               1.65;
  -webkit-font-smoothing:    antialiased;
  -moz-osx-font-smoothing:   grayscale;
  overflow-x:                hidden;
  padding-bottom:            68px; /* Reserve space for sticky mobile CTA */
}

@media (min-width: 640px) {
  body { padding-bottom: 0; }
}

a {
  text-decoration: none;
  color:           inherit;
}

img {
  display:   block;
  max-width: 100%;
}


/* ==========================================================================
   3. SKIP LINK  (Accessibility)
   ========================================================================== */

.skip {
  position:      absolute;
  top:           -100px;
  left:          12px;
  background:    var(--blue);
  color:         #fff;
  padding:       10px 18px;
  border-radius: var(--r8);
  font-size:     14px;
  font-weight:   600;
  z-index:       9999;
  transition:    top 0.2s;
}

.skip:focus {
  top: 12px;
}


/* ==========================================================================
   4. BACKGROUND AMBIENCE
   ========================================================================== */

.orb-a {
  position:   fixed;
  top:        -120px;
  left:       -120px;
  width:      520px;
  height:     520px;
  background: radial-gradient(circle, rgba(28, 111, 244, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index:    0;
  animation:  float-a 22s ease-in-out infinite alternate;
}

.orb-b {
  position:   fixed;
  bottom:     -120px;
  right:      -80px;
  width:      460px;
  height:     460px;
  background: radial-gradient(circle, rgba(246, 166, 35, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index:    0;
  animation:  float-b 26s ease-in-out infinite alternate;
}

.bg-dots {
  position:         fixed;
  inset:            0;
  background-image:
    linear-gradient(rgba(28, 111, 244, 0.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 111, 244, 0.020) 1px, transparent 1px);
  background-size:  50px 50px;
  pointer-events:   none;
  z-index:          0;
}

@keyframes float-a { to { transform: translate(28px, 18px); } }
@keyframes float-b { to { transform: translate(-24px, -16px); } }


/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */

.hdr {
  position:               sticky;
  top:                    0;
  z-index:                100;
  background:             rgba(6, 8, 16, 0.94);
  border-bottom:          1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter:        blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hdr-in {
  max-width:       660px;
  margin:          0 auto;
  padding:         0 16px;
  height:          54px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             10px;
}

/* ── Logo ── */
.logo {
  display:     flex;
  align-items: center;
  gap:         9px;
  flex-shrink: 0;
}

.logo-mk {
  width:           32px;
  height:          32px;
  border-radius:   var(--r8);
  flex-shrink:     0;
  background:      linear-gradient(135deg, var(--blue), #0A42C0);
  display:         flex;
  align-items:     center;
  justify-content: center;
  box-shadow:      0 0 0 1px var(--blueb);
}

.logo-nm {
  font-size:      14px;
  font-weight:    800;
  color:          var(--t1);
  letter-spacing: -0.3px;
}

.logo-nm em {
  color:       var(--goldl);
  font-style:  normal;
}

/* ── Live accepting badge ── */
.hdr-live {
  display:         flex;
  align-items:     center;
  gap:             6px;
  background:      var(--grna);
  border:          1px solid var(--grnb);
  border-radius:   100px;
  padding:         5px 12px;
  flex-shrink:     0;
}

.pulse {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  background:    var(--grn);
  flex-shrink:   0;
  animation:     pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,  100% { opacity: 1;   transform: scale(1);   }
  50%        { opacity: 0.3; transform: scale(1.6); }
}

.hdr-live-t {
  font-size:      12px;
  font-weight:    700;
  color:          var(--grnl);
  white-space:    nowrap;
  letter-spacing: 0.02em;
}

/* ── Header CTA button ── */
.hdr-cta {
  height:                   36px;
  padding:                  0 16px;
  background:               var(--gold);
  color:                    #1A0900;
  font-family:              var(--f);
  font-size:                13px;
  font-weight:              700;
  border-radius:            var(--r8);
  flex-shrink:              0;
  display:                  flex;
  align-items:              center;
  border-bottom:            2px solid var(--goldd);
  box-shadow:               0 4px 14px rgba(246, 166, 35, 0.30);
  transition:               transform 0.1s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.hdr-cta:hover {
  transform:  translateY(-1px);
  box-shadow: 0 6px 22px rgba(246, 166, 35, 0.42);
}

.hdr-cta:active {
  transform:         translateY(2px);
  border-bottom-width: 0;
  box-shadow:        none;
}

@media (max-width: 390px) {
  .hdr-live { display: none; }
}


/* ==========================================================================
   6. PAGE SHELL & WRAP
   ========================================================================== */

.page {
  display:         flex;
  justify-content: center;
  padding:         14px 12px 32px;
  position:        relative;
  min-height:      100vh;
}

.wrap {
  width:           100%;
  max-width:       640px;
  display:         flex;
  flex-direction:  column;
  gap:             12px;
  z-index:         2;
}

@media (min-width: 680px) {
  .page { padding: 20px 20px 44px; }
  .wrap { max-width: 680px; gap: 14px; }
}


/* ==========================================================================
   7. SHARED CARD COMPONENT
   ========================================================================== */

.card {
  background:    var(--c1);
  border:        1px solid var(--line);
  border-radius: var(--r24);
  overflow:      hidden;
  position:      relative;
}

/* Tri-colour gradient top accent line */
.card-bar {
  position:   absolute;
  top:        0;
  left:       0;
  right:      0;
  height:     2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 55%, var(--grn) 100%);
  z-index:    1;
}

/* Standard section padding */
.sec {
  padding: 22px 18px;
}

@media (min-width: 420px) { .sec { padding: 24px 22px; } }
@media (min-width: 680px) { .sec { padding: 28px 28px; } }

/* Horizontal divider within a card */
.divider {
  height:     1px;
  background: var(--line);
  margin:     0 18px;
}

@media (min-width: 420px) { .divider { margin: 0 22px; } }


/* ==========================================================================
   8. SECTION LABELS & H2 HEADINGS
   ========================================================================== */

/* Eyebrow label above headings */
.sec-lbl {
  display:     inline-flex;
  align-items: center;
  gap:         7px;
  margin-bottom: 12px;
}

.lbl-line {
  width:         18px;
  height:        2px;
  border-radius: 2px;
  background:    linear-gradient(90deg, var(--blue), var(--gold));
  flex-shrink:   0;
}

.lbl-text {
  font-size:      12px;
  font-weight:    700;
  color:          var(--bluel);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Section H2 heading */
.sec-h2 {
  font-size:      clamp(19px, 4.8vw, 26px);
  font-weight:    800;
  color:          var(--t1);
  line-height:    1.2;
  letter-spacing: -0.4px;
  margin-bottom:  6px;
}

/* Section sub-paragraph */
.sec-p {
  font-size:     14px;
  color:         var(--t3);
  line-height:   1.72;
  margin-bottom: 18px;
}


/* ==========================================================================
   9. SCROLL REVEAL ANIMATION
   ========================================================================== */

.rv {
  opacity:   1;
  transform: none;
}




/* ==========================================================================
   10. HERO SECTION
   ========================================================================== */

.hero {
  padding: 24px 18px 0;
}

@media (min-width: 420px) { .hero { padding: 26px 22px 0; } }
@media (min-width: 680px) { .hero { padding: 32px 28px 0; } }


/* ── 10a. Trust Badge + Ticker ── */

.h-badge {
  display:       inline-flex;
  align-items:   center;
  gap:           8px;
  margin-bottom: 18px;
}

.h-badge-pill {
  display:       inline-flex;
  align-items:   center;
  gap:           6px;
  background:    var(--grna);
  border:        1px solid var(--grnb);
  border-radius: 100px;
  padding:       6px 13px;
  font-size:     13px;
  font-weight:   600;
  color:         var(--grnl);
  overflow:      hidden;
  max-width:     100%;
}

.h-badge-dot {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  background:    var(--grn);
  flex-shrink:   0;
  animation:     pulse-dot 2s infinite;
}

#ticker-txt {
  white-space:   nowrap;
  overflow:      hidden;
  text-overflow: ellipsis;
  flex:          1;
  min-width:     0;
}

.h-badge-sep {
  width:      1px;
  height:     14px;
  background: var(--line);
  display:    none;
}

@media (min-width: 400px) {
  .h-badge-sep { display: block; }
}

.h-badge-cert {
  display:         none;
  align-items:     center;
  gap:             5px;
  font-size:       12px;
  font-weight:     700;
  color:           var(--bluel);
  background:      var(--bluea);
  border:          1px solid var(--blueb);
  border-radius:   100px;
  padding:         5px 11px;
}

@media (min-width: 400px) {
  .h-badge-cert { display: inline-flex; }
}


/* ── 10b. H1 Heading ── */

.h-h1 {
  font-size:      clamp(30px, 9vw, 52px);
  font-weight:    900;
  color:          var(--t1);
  line-height:    1.06;
  letter-spacing: -1.5px;
  margin-bottom:  14px;
}

.h-h1 .hl {
  background:              linear-gradient(95deg, var(--gold) 20%, var(--goldl) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
}


/* ── 10c. Subheadline ── */

.h-sub {
  font-size:     clamp(14px, 3.6vw, 16px);
  font-weight:   400;
  color:         var(--t2);
  line-height:   1.70;
  margin-bottom: 22px;
  max-width:     460px;
}

.h-sub strong {
  color:       var(--t1);
  font-weight: 700;
}


/* ── 10d. Primary CTA Button — Gold 3D ── */

.btn-gold {
  display:                  flex;
  align-items:              center;
  gap:                      14px;
  width:                    100%;
  background:               linear-gradient(180deg, #FFC356 0%, #F6A623 50%, #D48B10 100%);
  border-radius:            var(--r16);
  padding:                  16px 20px;
  border:                   none;
  border-bottom:            3px solid #9C6207;
  box-shadow:
    0 8px 28px rgba(246, 166, 35, 0.32),
    inset 0 1px 0 rgba(255, 215, 110, 0.25);
  cursor:                   pointer;
  text-decoration:          none;
  -webkit-tap-highlight-color: transparent;
  transform:                translateY(0);
  transition:               transform 0.12s, box-shadow 0.15s, border-bottom-width 0.1s;
  position:                 relative;
  overflow:                 hidden;
  margin-bottom:            12px;
}

/* Top sheen */
.btn-gold::before {
  content:       '';
  position:      absolute;
  top:           0;
  left:          0;
  right:         0;
  height:        48%;
  background:    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
  border-radius: var(--r16) var(--r16) 0 0;
  pointer-events: none;
}

.btn-gold:hover {
  transform:  translateY(-2px);
  box-shadow:
    0 12px 38px rgba(246, 166, 35, 0.46),
    inset 0 1px 0 rgba(255, 215, 110, 0.25);
}

.btn-gold:active {
  transform:          translateY(3px);
  border-bottom-width: 0;
  box-shadow:         0 2px 8px rgba(246, 166, 35, 0.2);
}

.btn-ico {
  width:           44px;
  height:          44px;
  border-radius:   var(--r12);
  background:      rgba(0, 0, 0, 0.18);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.btn-body {
  flex:      1;
  min-width: 0;
}

.btn-main {
  display:        block;
  font-size:      15px;
  font-weight:    800;
  color:          #1C0800;
  line-height:    1.2;
  letter-spacing: -0.1px;
}

.btn-hint {
  display:     block;
  font-size:   12px;
  color:       rgba(40, 12, 0, 0.55);
  margin-top:  2px;
  font-weight: 500;
}

.btn-tag {
  background:    rgba(0, 0, 0, 0.18);
  color:         #1C0800;
  font-size:     14px;
  font-weight:   800;
  border-radius: var(--r8);
  padding:       8px 14px;
  white-space:   nowrap;
  flex-shrink:   0;
}


/* ── 10e. Risk Strip ── */

.risk {
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-wrap:       wrap;
  gap:             4px 14px;
  margin-bottom:   18px;
}

.risk-i {
  display:     flex;
  align-items: center;
  gap:         5px;
  font-size:   13px;
  color:       var(--t3);
  font-weight: 500;
}

.risk-chk {
  width:           17px;
  height:          17px;
  border-radius:   50%;
  background:      var(--grna);
  border:          1px solid var(--grnb);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       11px;
  color:           var(--grn);
  flex-shrink:     0;
}


/* ── 10f. Social Proof Row ── */

.proof {
  display:       flex;
  align-items:   center;
  gap:           12px;
  background:    var(--c2);
  border:        1px solid var(--line);
  border-radius: var(--r12);
  padding:       12px 15px;
  margin-top:    4px;
}

.avs {
  display:     flex;
  flex-shrink: 0;
}

.av {
  width:           28px;
  height:          28px;
  border-radius:   50%;
  font-size:       12px;
  font-weight:     700;
  color:           #fff;
  display:         flex;
  align-items:     center;
  justify-content: center;
  border:          2px solid var(--c2);
  margin-right:    -7px;
}

.av1  { background: linear-gradient(135deg, #1877F2, #0B4FC0); }
.av2  { background: linear-gradient(135deg, #C13584, #7B2D8B); }
.av3  { background: linear-gradient(135deg, #22C55E, #128C7E); }
.av4  { background: linear-gradient(135deg, #F59E0B, #D97706); }
.av-x {
  background: var(--c4);
  color:      var(--t3);
  font-size:  12px;
  font-weight: 700;
}

.proof-info {
  flex:      1;
  min-width: 0;
}

.proof-stars {
  font-size:      14px;
  color:          var(--gold);
  line-height:    1;
  margin-bottom:  3px;
  letter-spacing: 0.5px;
}

.proof-copy {
  font-size:   13px;
  color:       var(--t3);
  font-weight: 500;
}

.proof-copy b { color: var(--t2); }


/* ── 10g. Typewriter Capsule ── */

.h-tw-row {
  display:       flex;
  align-items:   center;
  gap:           8px;
  flex-wrap:     wrap;
  margin-top:    16px;
  padding-top:   16px;
  border-top:    1px solid var(--line2);
}

.h-tw-label {
  font-size:   13px;
  color:       var(--t3);
  font-weight: 500;
}

.tw-pill {
  display:       inline-flex;
  align-items:   center;
  gap:           2px;
  background:    var(--bluea);
  border:        1px solid var(--blueb);
  border-radius: var(--r8);
  padding:       5px 12px 6px;
  min-width:     120px;
}

.tw-t {
  font-size:   14px;
  font-weight: 700;
  color:       var(--bluel);
}

.tw-c {
  width:         1.5px;
  height:        15px;
  background:    var(--bluel);
  border-radius: 1px;
  margin-left:   2px;
  flex-shrink:   0;
  animation:     blink 0.85s step-end infinite;
}

@keyframes blink {
  0%,  100% { opacity: 1; }
  50%        { opacity: 0; }
}


/* ── 10h. Urgency Strip ── */

.h-spots {
  display:       flex;
  align-items:   center;
  gap:           9px;
  background:    var(--golda);
  border:        1px solid var(--goldb);
  border-radius: var(--r12);
  padding:       11px 14px;
  margin-top:    12px;
}

.spots-dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    var(--gold);
  flex-shrink:   0;
  animation:     pulse-dot 2.2s infinite;
}

.spots-txt {
  font-size:   13px;
  color:       var(--t2);
  font-weight: 500;
  line-height: 1.4;
}

.spots-txt b {
  color:       var(--goldl);
  font-weight: 700;
}


/* ── 10i. Platform Chips (inside hero) ── */

.h-plat {
  display:        flex;
  flex-wrap:      wrap;
  gap:            7px;
  margin-top:     12px;
  padding-bottom: 12px;
}

.chip {
  display:       inline-flex;
  align-items:   center;
  gap:           5px;
  font-size:     13px;
  font-weight:   600;
  color:         var(--t2);
  background:    var(--c3);
  border:        1px solid var(--line);
  border-radius: 100px;
  padding:       7px 14px;
}

.cdot {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  flex-shrink:   0;
}

.c-fb .cdot { background: #1877F2; }
.c-ig .cdot { background: linear-gradient(135deg, #F58529, #DD2A7B); }
.c-wa .cdot { background: #25D366; }
.c-go .cdot { background: #4285F4; }


/* ==========================================================================
   11. STAT BAR
   ========================================================================== */

.stat-bar {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  border-top:            1px solid var(--line);
}

.sb {
  padding:      18px 12px;
  text-align:   center;
  border-right: 1px solid var(--line);
}

.sb:last-child { border-right: none; }

.sb-n {
  font-size:     clamp(22px, 6vw, 30px);
  font-weight:   800;
  line-height:   1;
  margin-bottom: 5px;
}

.n-gold {
  background:              linear-gradient(135deg, var(--gold), var(--goldl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
}

.n-wh { color: var(--t1); }

.sb-l {
  font-size:      12px;
  color:          var(--t4);
  font-weight:    600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ==========================================================================
   12. PLATFORMS GRID
   ========================================================================== */

.plat-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   8px;
}

@media (min-width: 460px) {
  .plat-grid { grid-template-columns: repeat(6, 1fr); }
}

.plat {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             7px;
  background:      var(--c2);
  border:          1px solid var(--line);
  border-radius:   var(--r12);
  padding:         13px 8px;
  transition:      border-color 0.2s, transform 0.2s;
  cursor:          default;
}

.plat:hover {
  border-color: var(--blueb);
  transform:    translateY(-2px);
}

.plat-ico {
  width:           36px;
  height:          36px;
  border-radius:   var(--r10);
  display:         flex;
  align-items:     center;
  justify-content: center;
}

.plat-nm {
  font-size:   13px;
  font-weight: 600;
  color:       var(--t3);
  text-align:  center;
  line-height: 1.3;
}


/* ==========================================================================
   13. SERVICES GRID
   ========================================================================== */

.svc-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   10px;
}

@media (min-width: 460px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

.svc-card {
  background:    var(--c2);
  border:        1px solid var(--line);
  border-radius: var(--r16);
  padding:       16px;
  transition:    border-color 0.2s, transform 0.2s;
}

.svc-card:hover {
  border-color: var(--blueb);
  transform:    translateY(-2px);
}

.svc-hd {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-bottom:   10px;
}

.svc-ico {
  width:           36px;
  height:          36px;
  border-radius:   var(--r10);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.svc-tag {
  font-size:      12px;
  font-weight:    700;
  color:          var(--goldl);
  background:     var(--golda);
  border:         1px solid var(--goldb);
  border-radius:  100px;
  padding:        3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.svc-ttl {
  font-size:      14px;
  font-weight:    700;
  color:          var(--t1);
  margin-bottom:  4px;
  letter-spacing: -0.1px;
}

.svc-dsc {
  font-size:   13px;
  color:       var(--t3);
  line-height: 1.65;
}


/* ==========================================================================
   14. ABOUT / EXPERT BIO
   ========================================================================== */

.about-row {
  display:     flex;
  gap:         16px;
  align-items: flex-start;
}

.about-av {
  width:           60px;
  height:          60px;
  border-radius:   var(--r16);
  flex-shrink:     0;
  background:      linear-gradient(135deg, var(--blue), #0A42C0);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       19px;
  font-weight:     800;
  color:           #fff;
  box-shadow:      0 0 0 3px var(--bluea);
  position:        relative;
}

.av-star {
  position:        absolute;
  bottom:          -5px;
  right:           -5px;
  width:           20px;
  height:          20px;
  border-radius:   50%;
  background:      var(--gold);
  border:          2px solid var(--c1);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       11px;
}

.about-nm {
  font-size:      17px;
  font-weight:    800;
  color:          var(--t1);
  letter-spacing: -0.2px;
  margin-bottom:  2px;
}

.about-role {
  font-size:     12px;
  color:         var(--bluel);
  font-weight:   600;
  margin-bottom: 9px;
}

.about-bio {
  font-size:     14px;
  color:         var(--t2);
  line-height:   1.72;
  margin-bottom: 14px;
}

.certs {
  display:   flex;
  flex-wrap: wrap;
  gap:       7px;
}

.cert {
  display:       inline-flex;
  align-items:   center;
  gap:           5px;
  background:    var(--c2);
  border:        1px solid var(--line);
  border-radius: 100px;
  padding:       5px 11px;
  font-size:     12px;
  font-weight:   600;
  color:         var(--t3);
}

.cert-dot {
  width:         5px;
  height:        5px;
  border-radius: 50%;
  background:    var(--grn);
  flex-shrink:   0;
}

.about-stats {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   8px;
  margin-top:            16px;
}

.ast {
  background:    var(--c2);
  border:        1px solid var(--line);
  border-radius: var(--r12);
  padding:       11px 8px;
  text-align:    center;
}

.ast-n {
  font-size:     18px;
  font-weight:   800;
  color:         var(--gold);
  margin-bottom: 3px;
}

.ast-l {
  font-size:      12px;
  color:          var(--t4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight:    600;
  line-height:    1.3;
}


/* ==========================================================================
   15. INDUSTRIES GRID
   ========================================================================== */

.ind-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   7px;
}

@media (min-width: 460px) {
  .ind-grid { grid-template-columns: repeat(4, 1fr); }
}

.ind {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             6px;
  background:      var(--c2);
  border:          1px solid var(--line);
  border-radius:   var(--r12);
  padding:         12px 8px;
  text-align:      center;
  transition:      border-color 0.2s, transform 0.2s;
  cursor:          default;
}

.ind:hover {
  border-color: var(--blueb);
  transform:    translateY(-2px);
}

.ind-ico {
  width:           32px;
  height:          32px;
  border-radius:   var(--r8);
  background:      var(--bluea);
  border:          1px solid var(--blueb);
  display:         flex;
  align-items:     center;
  justify-content: center;
}

.ind-nm {
  font-size:   13px;
  font-weight: 600;
  color:       var(--t3);
  line-height: 1.3;
}


/* ==========================================================================
   16. PRICING PLANS
   ========================================================================== */

/* Info note above plans */
.price-note {
  display:       flex;
  align-items:   center;
  gap:           8px;
  background:    var(--grna);
  border:        1px solid var(--grnb);
  border-radius: var(--r10);
  padding:       10px 14px;
  font-size:     13px;
  color:         var(--grnl);
  font-weight:   500;
  margin-bottom: 16px;
}

.plans {
  display:        flex;
  flex-direction: column;
  gap:            12px;
}

@media (min-width: 680px) {
  .plans { flex-direction: row; align-items: flex-start; }
}

/* Individual plan card */
.plan {
  background:    var(--c2);
  border:        1px solid var(--line);
  border-radius: var(--r20);
  overflow:      hidden;
  flex:          1;
  transition:    transform 0.2s, box-shadow 0.2s;
}

.plan:hover {
  transform:  translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Coloured top accent line per plan */
.plan-top {
  height:     2px;
  background: var(--c3);
}

.plan-grow  .plan-top { background: linear-gradient(90deg, var(--blue), var(--gold)); }
.plan-scale .plan-top { background: linear-gradient(90deg, #E040A0, var(--blue)); }

/* Popular plan highlight */
.plan.hot {
  border-color: var(--blueb);
  box-shadow:   0 6px 22px rgba(28, 111, 244, 0.15);
}

@media (min-width: 680px) {
  .plan.hot { flex: 1.1; }
}

/* "Most Popular" badge strip */
.plan-badge {
  background:      linear-gradient(90deg, var(--blue), #0A42C0);
  padding:         7px 16px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             8px;
}

.pb-star { color: var(--goldl); font-size: 12px; }

.pb-txt {
  font-size:      12px;
  font-weight:    700;
  color:          #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Plan body padding */
.plan-body { padding: 16px; }

/* Plan header: name + price */
.plan-hd {
  display:         flex;
  align-items:     flex-start;
  justify-content: space-between;
  gap:             8px;
  margin-bottom:   12px;
}

.plan-nm {
  font-size:      15px;
  font-weight:    800;
  color:          var(--t1);
  letter-spacing: -0.2px;
  margin-bottom:  2px;
}

.plan-sm {
  font-size:   13px;
  color:       var(--t3);
  line-height: 1.4;
}

.plan-sm b { color: var(--t2); }

.plan-pr {
  text-align:  right;
  flex-shrink: 0;
}

.plan-cur {
  font-size:   14px;
  font-weight: 700;
  color:       var(--t3);
  line-height: 1;
}

.plan-amt {
  font-size:      28px;
  font-weight:    800;
  color:          var(--t1);
  line-height:    1;
  letter-spacing: -0.5px;
}

.plan-grow .plan-amt { color: var(--bluel); }

.plan-per {
  font-size:  12px;
  color:      var(--t4);
  text-align: right;
  margin-top: 3px;
}

/* Divider within plan */
.plan-div {
  height:        1px;
  background:    var(--line);
  margin-bottom: 12px;
}

/* Feature list */
.pfeats {
  display:        flex;
  flex-direction: column;
  gap:            9px;
  margin-bottom:  14px;
}

.pf {
  display:     flex;
  align-items: flex-start;
  gap:         9px;
  font-size:   13px;
  color:       var(--t2);
  line-height: 1.4;
}

.pf-c {
  width:           17px;
  height:          17px;
  border-radius:   50%;
  flex-shrink:     0;
  background:      var(--grna);
  border:          1px solid var(--grnb);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-top:      1px;
}

/* Plan CTA buttons */
.plan-btn {
  display:                  flex;
  align-items:              center;
  justify-content:          center;
  gap:                      8px;
  width:                    100%;
  padding:                  13px 16px;
  border-radius:            var(--r12);
  font-family:              var(--f);
  font-size:                14px;
  font-weight:              700;
  cursor:                   pointer;
  text-decoration:          none;
  border:                   none;
  transition:               transform 0.12s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.plan-btn:active { transform: translateY(2px); }

/* Outline variant (Starter / Scale) */
.pb-ol {
  background: var(--c3);
  border:     1px solid var(--blueb) !important;
  color:      var(--bluel);
}

.pb-ol:hover { background: var(--bluea); }

/* Blue 3D variant (Growth — recommended) */
.pb-blue {
  background:    linear-gradient(180deg, #3D8FFF, var(--blue) 55%, #1050CC 100%);
  color:         #fff;
  border-bottom: 2px solid #0A38A0 !important;
  box-shadow:    0 5px 18px rgba(28, 111, 244, 0.38);
}

.pb-blue:hover {
  box-shadow: 0 8px 26px rgba(28, 111, 244, 0.54);
  transform:  translateY(-1px);
}

/* Gold 3D variant (Scale) */
.pb-gold {
  background:    linear-gradient(180deg, #FFC356, var(--gold) 55%, #C8820F 100%);
  color:         #1C0800;
  border-bottom: 2px solid #9C6207 !important;
  box-shadow:    0 5px 18px rgba(246, 166, 35, 0.32);
}

.pb-gold:hover {
  box-shadow: 0 8px 26px rgba(246, 166, 35, 0.50);
  transform:  translateY(-1px);
}


/* ==========================================================================
   17. REVIEWS CAROUSEL
   ========================================================================== */

/* Scroll-dot progress indicators */
.rdots {
  display:     flex;
  align-items: center;
  gap:         5px;
  margin-bottom: 10px;
}

.rdot {
  width:         6px;
  height:        6px;
  border-radius: 50%;
  background:    var(--c3);
  transition:    all 0.3s;
}

.rdot.on {
  background:    var(--bluel);
  width:         16px;
  border-radius: 3px;
}

/* Horizontal scroll container */
.revs {
  display:                 flex;
  gap:                     10px;
  overflow-x:              auto;
  padding:                 4px 18px 18px;
  scrollbar-width:         none;
  -ms-overflow-style:      none;
  scroll-snap-type:        x mandatory;
  -webkit-overflow-scrolling: touch;
}

.revs::-webkit-scrollbar { display: none; }

@media (min-width: 420px) {
  .revs { padding: 4px 22px 18px; }
}

/* Individual review card */
.rev {
  min-width:     238px;
  max-width:     238px;
  background:    var(--c2);
  border:        1px solid var(--line);
  border-radius: var(--r16);
  padding:       14px;
  flex-shrink:   0;
  scroll-snap-align: start;
  transition:    border-color 0.2s;
}

.rev:hover { border-color: var(--blueb); }

.rev-top {
  display:       flex;
  align-items:   center;
  gap:           9px;
  margin-bottom: 9px;
}

/* Reviewer avatar */
.rev-av {
  width:           34px;
  height:          34px;
  border-radius:   var(--r8);
  font-size:       12px;
  font-weight:     700;
  color:           #fff;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.ra1 { background: linear-gradient(135deg, #1877F2, #0B4FC0); }
.ra2 { background: linear-gradient(135deg, #C13584, #7B2D8B); }
.ra3 { background: linear-gradient(135deg, #22C55E, #128C7E); }
.ra4 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.ra5 { background: linear-gradient(135deg, #EF4444, #B91C1C); }
.ra6 { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.ra7 { background: linear-gradient(135deg, #06B6D4, #0E7490); }
.ra8 { background: linear-gradient(135deg, #F97316, #C2410C); }

.rev-nm {
  font-size:     13px;
  font-weight:   700;
  color:         var(--t1);
  margin-bottom: 1px;
}

.rev-biz {
  font-size:   12px;
  color:       var(--t4);
  font-weight: 500;
}

.rev-str {
  color:          var(--gold);
  font-size:      13px;
  letter-spacing: 0.4px;
  margin-bottom:  6px;
  line-height:    1;
}

.rev-txt {
  font-size:     13px;
  color:         var(--t3);
  line-height:   1.65;
  font-style:    italic;
  margin-bottom: 9px;
}

.rev-tag {
  display:       inline-flex;
  align-items:   center;
  gap:           5px;
  background:    var(--grna);
  border:        1px solid var(--grnb);
  border-radius: 100px;
  padding:       3px 10px;
  font-size:     12px;
  font-weight:   700;
  color:         var(--grnl);
}

/* Trust pills row below carousel */
.trust-row {
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-wrap:       wrap;
  gap:             6px 16px;
  padding:         14px 18px 18px;
  border-top:      1px solid var(--line);
}

.tp {
  display:        flex;
  align-items:    center;
  gap:            5px;
  font-size:      12px;
  font-weight:    600;
  color:          var(--t4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}


/* ==========================================================================
   18. GUARANTEE & PROCESS STEPS
   ========================================================================== */

/* Guarantee block */
.guar {
  display:       flex;
  align-items:   flex-start;
  gap:           13px;
  background:    var(--grna);
  border:        1px solid var(--grnb);
  border-radius: var(--r16);
  padding:       15px 16px;
}

.guar-ico {
  width:           38px;
  height:          38px;
  border-radius:   var(--r10);
  flex-shrink:     0;
  background:      rgba(17, 203, 124, 0.10);
  display:         flex;
  align-items:     center;
  justify-content: center;
}

.guar-title {
  font-size:     15px;
  font-weight:   700;
  color:         var(--grnl);
  margin-bottom: 4px;
}

.guar-body {
  font-size:   13px;
  color:       var(--t3);
  line-height: 1.7;
}

.guar-body strong {
  color:       #9AFFD4;
  font-weight: 700;
}

/* Process steps */
.steps {
  display:        flex;
  flex-direction: column;
}

.step {
  display:  flex;
  gap:      13px;
  padding:  12px 0;
  position: relative;
}

.step:not(:last-child)::after {
  content:    '';
  position:   absolute;
  left:       15px;
  top:        38px;
  bottom:     0;
  width:      1px;
  background: var(--blueb);
  opacity:    0.35;
}

.step-n {
  width:           30px;
  height:          30px;
  border-radius:   50%;
  flex-shrink:     0;
  background:      var(--bluea);
  border:          1px solid var(--blueb);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       13px;
  font-weight:     700;
  color:           var(--bluel);
}

.step-t {
  font-size:     14px;
  font-weight:   600;
  color:         var(--t2);
  margin-bottom: 3px;
}

.step-d {
  font-size:   13px;
  color:       var(--t3);
  line-height: 1.65;
}


/* ==========================================================================
   19. FAQ ACCORDION
   ========================================================================== */

.faq-wrap {
  background:    var(--c1);
  border:        1px solid var(--line);
  border-radius: var(--r24);
  overflow:      hidden;
}

.faq-hd {
  padding: 22px 18px 0;
}

@media (min-width: 420px) {
  .faq-hd { padding: 24px 22px 0; }
}

details {
  border-bottom: 1px solid var(--line2);
}

details:last-child {
  border-bottom: none;
}

summary {
  padding:                  15px 18px;
  font-family:              var(--f);
  font-size:                15px;
  font-weight:              600;
  color:                    var(--t2);
  cursor:                   pointer;
  list-style:               none;
  display:                  flex;
  align-items:              center;
  justify-content:          space-between;
  gap:                      12px;
  user-select:              none;
  -webkit-tap-highlight-color: transparent;
  transition:               color 0.2s;
  min-height:               54px;
}

@media (min-width: 420px) {
  summary { padding: 15px 22px; }
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content:     '+';
  color:       var(--bluel);
  font-size:   22px;
  font-weight: 300;
  flex-shrink: 0;
  transition:  transform 0.25s;
  line-height: 1;
}

details[open] summary::after { transform: rotate(45deg); }
details[open] summary        { color: var(--bluel); }

.faq-a {
  padding:     0 18px 16px;
  font-size:   14px;
  color:       var(--t3);
  line-height: 1.8;
}

@media (min-width: 420px) {
  .faq-a { padding: 0 22px 16px; }
}


/* ==========================================================================
   20. FINAL CTA BLOCK
   ========================================================================== */

.final-cta {
  background:    var(--c1);
  border:        1px solid rgba(246, 166, 35, 0.20);
  border-radius: var(--r24);
  padding:       28px 20px;
  text-align:    center;
  position:      relative;
  overflow:      hidden;
}

/* Gold radial glow behind the block */
.final-cta::before {
  content:        '';
  position:       absolute;
  inset:          0;
  background:     radial-gradient(ellipse at 50% 0%, rgba(246, 166, 35, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.final-h {
  font-size:      clamp(21px, 5vw, 28px);
  font-weight:    800;
  color:          var(--t1);
  letter-spacing: -0.4px;
  margin-bottom:  8px;
}

.final-p {
  font-size:     14px;
  color:         var(--t3);
  line-height:   1.72;
  margin-bottom: 22px;
  max-width:     380px;
  margin-left:   auto;
  margin-right:  auto;
}

.urgency-strip {
  display:       flex;
  align-items:   center;
  gap:           9px;
  background:    var(--golda);
  border:        1px solid var(--goldb);
  border-radius: var(--r12);
  padding:       11px 14px;
  max-width:     380px;
  margin:        0 auto 20px;
  text-align:    left;
}

.urgency-strip p {
  font-size:   13px;
  font-weight: 600;
  color:       var(--goldl);
  line-height: 1.4;
}

.urgency-strip span {
  color:       #FDE68A;
  font-weight: 700;
}

.final-cta .btn-gold {
  max-width:    380px;
  margin-left:  auto;
  margin-right: auto;
  margin-bottom: 12px;
}


/* ==========================================================================
   21. FOOTER
   ========================================================================== */

.ft {
  background:    var(--c1);
  border:        1px solid var(--line);
  border-radius: var(--r24);
  padding:       22px 18px;
}

@media (min-width: 420px) {
  .ft { padding: 24px 22px; }
}

.ft-brand {
  display:       flex;
  align-items:   center;
  gap:           8px;
  margin-bottom: 10px;
}

.ft-ico {
  width:           26px;
  height:          26px;
  border-radius:   var(--r8);
  background:      linear-gradient(135deg, var(--blue), #0A42C0);
  display:         flex;
  align-items:     center;
  justify-content: center;
}

.ft-nm {
  font-size:   14px;
  font-weight: 800;
  color:       var(--t1);
}

.ft-nm em {
  color:      var(--goldl);
  font-style: normal;
}

.ft-tag {
  font-size:     13px;
  color:         var(--t3);
  line-height:   1.65;
  margin-bottom: 16px;
}

.ft-nav {
  display:       flex;
  flex-wrap:     wrap;
  gap:           5px 16px;
  margin-bottom: 14px;
}

.ft-lk {
  font-size:   13px;
  color:       var(--t3);
  font-weight: 500;
  transition:  color 0.2s;
}

.ft-lk:hover { color: var(--bluel); }

.socials {
  display:       flex;
  gap:           8px;
  margin-bottom: 14px;
}

.soc {
  width:                    40px;
  height:                   40px;
  border-radius:            var(--r10);
  background:               var(--c2);
  border:                   1px solid var(--line);
  display:                  flex;
  align-items:              center;
  justify-content:          center;
  transition:               background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.soc:hover {
  background:   var(--bluea);
  border-color: var(--blueb);
}

.ft-bot {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  flex-wrap:       wrap;
  gap:             6px;
  padding-top:     12px;
  border-top:      1px solid var(--line);
}

.ft-copy {
  font-size: 13px;
  color:     var(--t4);
}

.ft-copy a {
  color:      var(--t4);
  transition: color 0.2s;
}

.ft-copy a:hover { color: var(--bluel); }

.ft-cert {
  display:     flex;
  align-items: center;
  gap:         4px;
  font-size:   12px;
  color:       var(--t4);
  font-weight: 600;
}


/* ==========================================================================
   22. STICKY MOBILE CTA BAR
   ========================================================================== */

.sticky {
  display:                 none;
  position:                fixed;
  bottom:                  0;
  left:                    0;
  right:                   0;
  z-index:                 90;
  background:              rgba(6, 8, 16, 0.96);
  border-top:              1px solid rgba(246, 166, 35, 0.14);
  backdrop-filter:         blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding:                 9px 14px;
}

.sticky.on { display: block; }

@media (min-width: 640px) {
  .sticky { display: none !important; }
}

.sticky-inner {
  display:                  flex;
  align-items:              center;
  gap:                      10px;
  background:               linear-gradient(180deg, #FFC356 0%, #F6A623 55%, #D48B10 100%);
  border-radius:            var(--r12);
  padding:                  12px 16px;
  box-shadow:               0 3px 0 #9C6207;
  text-decoration:          none;
  -webkit-tap-highlight-color: transparent;
  transform:                translateY(0);
  transition:               transform 0.1s, box-shadow 0.1s;
}

.sticky-inner:active {
  transform:  translateY(3px);
  box-shadow: 0 1px 0 #9C6207;
}

.si-txt { flex: 1; }

.si-main {
  display:     block;
  font-size:   14px;
  font-weight: 800;
  color:       #1C0800;
}

.si-sub {
  display:     block;
  font-size:   12px;
  color:       rgba(40, 12, 0, 0.55);
  margin-top:  1px;
}

.si-tag {
  font-size:   13px;
  font-weight: 700;
  color:       #1C0800;
  opacity:     0.70;
  white-space: nowrap;
}


/* ==========================================================================
   23. FLOATING WHATSAPP BUTTON
   ========================================================================== */

.wa-float {
  position:                 fixed;
  bottom:                   86px;
  right:                    16px;
  z-index:                  89;
  width:                    52px;
  height:                   52px;
  border-radius:            50%;
  background:               #22C55E;
  display:                  flex;
  align-items:              center;
  justify-content:          center;
  box-shadow:               0 4px 18px rgba(34, 197, 94, 0.48);
  text-decoration:          none;
  transform:                scale(1);
  transition:               transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.wa-float:hover  { transform: scale(1.08); }
.wa-float:active { transform: scale(0.93); }

@media (min-width: 640px) {
  .wa-float {
    bottom: 24px;
    right:  24px;
    width:  54px;
    height: 54px;
  }
}

/* Animated pulse ring */
.wa-ring {
  position:      absolute;
  inset:         -4px;
  border-radius: 50%;
  background:    rgba(34, 197, 94, 0.22);
  animation:     wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(0.95); opacity: 0.8; }
  70%  { transform: scale(1.30); opacity: 0;   }
  100% {                         opacity: 0;   }
}


/* ==========================================================================
   24. DESKTOP ENHANCEMENTS  (≥680px)
   ========================================================================== */

@media (min-width: 680px) {
  body           { font-size: 16px; }
  .hdr-in        { max-width: 740px; }
  .plat-grid     { grid-template-columns: repeat(6, 1fr); }
  .rev           { min-width: 255px; max-width: 255px; }
  .plans         { flex-direction: row; }
}


/* ==========================================================================
   25. ACCESSIBILITY & MOTION PREFERENCES
   ========================================================================== */

:focus-visible {
  outline:        2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation:  none !important;
  }
}