/* ============================================================
   PLETINUS GROUP — Premium Corporate Design System
   Primary: #040D43 (Deep Navy)  ·  Secondary: #FFFFFF
   Accent:  Premium Gold
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors */
  --navy: #040D43;
  --navy-800: #0A164F;
  --navy-700: #142063;
  --navy-600: #24306f;
  --gold: #C6A15B;
  --gold-soft: #E4CE9C;
  --gold-deep: #A9843F;
  --white: #FFFFFF;
  --paper: #FAFAF7;
  --paper-2: #F2F1EC;
  --ink: #14172B;
  --muted: #5B6072;
  --line: #E5E4DE;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.2rem;
  --text-xl: 1.55rem;
  --text-2xl: 2.1rem;
  --text-3xl: 2.9rem;
  --text-4xl: 3.9rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Effects */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(4, 13, 67, 0.06);
  --shadow: 0 14px 40px rgba(4, 13, 67, 0.10);
  --shadow-lg: 0 30px 70px rgba(4, 13, 67, 0.18);
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1240px;
  --header-h: 84px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: var(--text-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.12; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
p { color: var(--muted); }
.serif { font-family: var(--font-heading); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--gold-soft); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-lg) 0; }
.section-head { max-width: 720px; margin-bottom: var(--space-lg); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: var(--text-lg); }
.bg-paper { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.72); }
.text-center { text-align: center; }

.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 26px rgba(198, 161, 91, 0.4); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(198, 161, 91, 0.5); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1eb857; transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: var(--text-base); }
.btn-block { width: 100%; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(4, 13, 67, 0.0);
  transition: var(--transition);
}
.site-header.solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  height: 72px;
}
.nav { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.brand-text { line-height: 1; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.28rem; color: var(--navy); letter-spacing: 0.02em; }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.site-header:not(.solid) .brand-name { color: var(--white); }
.site-header:not(.solid) .brand-tag { color: var(--gold-soft); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a {
  display: block; padding: 10px 16px; font-weight: 600; font-size: var(--text-sm);
  color: var(--ink); border-radius: 8px; transition: var(--transition);
}
.site-header:not(.solid) .nav-menu > li > a { color: rgba(255,255,255,0.9); }
.nav-menu > li > a:hover { color: var(--gold-deep); }
.site-header:not(.solid) .nav-menu > li > a:hover { color: var(--gold-soft); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.has-mega { position: static; }
.nav-caret { display: inline-block; margin-left: 5px; transition: var(--transition); }
.has-mega:hover .nav-caret { transform: rotate(180deg); }

/* Mega menu */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
  padding: 36px 0;
}
.has-mega:hover .mega, .mega:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 40px; }
.mega-feature { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.mega-feature h4 { color: #fff; font-size: var(--text-lg); margin-bottom: 8px; }
.mega-feature p { color: rgba(255,255,255,0.7); font-size: var(--text-sm); margin-bottom: 18px; }
.mega-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.mega-cat { display: flex; gap: 14px; padding: 14px; border-radius: 12px; transition: var(--transition); }
.mega-cat:hover { background: var(--paper); }
.mega-cat .ic { width: 44px; height: 44px; border-radius: 10px; background: var(--paper-2); display: grid; place-items: center; flex-shrink: 0; color: var(--gold-deep); }
.mega-cat:hover .ic { background: var(--navy); color: var(--gold-soft); }
.mega-cat .ic svg { width: 22px; height: 22px; }
.mega-cat b { display: block; color: var(--navy); font-size: var(--text-sm); }
.mega-cat span { font-size: var(--text-xs); color: var(--muted); }

/* Mobile toggle */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px auto; transition: var(--transition); }
.site-header:not(.solid) .nav-toggle span { background: #fff; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(198,161,91,0.18), transparent 60%),
    linear-gradient(160deg, #050f4d 0%, var(--navy) 55%, #030a33 100%);
  color: #fff; overflow: hidden; padding-top: var(--header-h);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(900px 500px at 70% 30%, #000, transparent 75%); opacity: 0.6;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; padding: 60px 0; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 1.4rem; }
.hero h1 .gold { color: var(--gold-soft); font-style: italic; }
.hero p { color: rgba(255,255,255,0.8); font-size: var(--text-lg); max-width: 600px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-heading); font-size: var(--text-2xl); color: var(--gold-soft); font-weight: 700; }
.hero-stats .lbl { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-pill);
  font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.6rem;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.85);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(198,161,91,0.25); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(1000px 500px at 85% -20%, rgba(198,161,91,0.16), transparent 60%),
    linear-gradient(160deg, #050f4d, var(--navy));
  color: #fff; padding: calc(var(--header-h) + 70px) 0 80px;
  position: relative;
}
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 620px; margin-top: 1rem; font-size: var(--text-lg); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: var(--text-sm); color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold-soft); }

/* ---------- CARDS ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--navy); color: var(--gold-soft); display: grid; place-items: center; margin-bottom: 20px; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; font-size: var(--text-lg); }
.card p { font-size: var(--text-sm); }

/* Brand / category card */
.brand-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; color: #fff; transition: var(--transition);
  background: linear-gradient(160deg, var(--navy-700), var(--navy));
  border: 1px solid var(--line-dark);
}
.brand-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,13,67,0.92) 10%, rgba(4,13,67,0.35) 60%, rgba(4,13,67,0.2)); z-index: 1; }
.brand-card .bc-visual { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }
.brand-card > * { position: relative; z-index: 2; }
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.brand-card .kicker { font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px; }
.brand-card h3 { color: #fff; font-size: var(--text-xl); margin-bottom: 8px; }
.brand-card p { color: rgba(255,255,255,0.78); font-size: var(--text-sm); margin-bottom: 16px; }
.brand-card .link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: var(--text-sm); color: var(--gold-soft); }
.brand-card:hover .link { gap: 14px; }

/* Visual placeholder blocks (swap for real photos) */
.ph {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--navy));
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.ph-gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); }
.ph-label { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-align: center; }

/* Product card */
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .pc-img { aspect-ratio: 4/3; position: relative; }
.product-card .pc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card .pc-cat { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.product-card h3 { font-size: var(--text-lg); margin: 6px 0 8px; }
.product-card p { font-size: var(--text-sm); flex: 1; }
.product-card .pc-actions { display: flex; gap: 10px; margin-top: 16px; }
.product-card .pc-actions .btn { flex: 1; padding: 11px 14px; font-size: var(--text-xs); }
.tag { display: inline-block; padding: 5px 12px; background: var(--paper-2); color: var(--navy); border-radius: var(--radius-pill); font-size: var(--text-xs); font-weight: 600; }

/* stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-strip .num { font-family: var(--font-heading); font-size: var(--text-3xl); color: var(--gold-deep); font-weight: 700; }
.bg-navy .stat-strip .num { color: var(--gold-soft); }
.stat-strip .lbl { font-size: var(--text-sm); color: var(--muted); margin-top: 4px; }
.bg-navy .stat-strip .lbl { color: rgba(255,255,255,0.7); }

/* feature list */
.feature-list { display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi { width: 30px; height: 30px; border-radius: 8px; background: var(--gold); color: var(--navy); display: grid; place-items: center; flex-shrink: 0; }
.feature-list .fi svg { width: 16px; height: 16px; }
.feature-list b { color: var(--navy); }
.bg-navy .feature-list b { color: #fff; }
.feature-list p { font-size: var(--text-sm); margin: 0; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step .n { font-family: var(--font-heading); font-size: 2.4rem; color: var(--gold); font-weight: 700; line-height: 1; }
.step h3 { font-size: var(--text-lg); margin: 12px 0 8px; }
.step p { font-size: var(--text-sm); }

/* logos / certs */
.logo-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; align-items: center; }
.logo-chip { height: 92px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; text-align: center; padding: 12px; transition: var(--transition); }
.logo-chip:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.logo-chip b { display: block; color: var(--navy); font-size: var(--text-sm); }
.logo-chip span { font-size: var(--text-xs); color: var(--muted); }

/* testimonials */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; height: 100%; }
.tcard .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.tcard .quote { font-family: var(--font-heading); font-size: var(--text-lg); color: var(--navy); line-height: 1.5; margin-bottom: 20px; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 14px; }
.tcard .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); display: grid; place-items: center; color: var(--navy); font-weight: 700; }
.tcard .who b { display: block; color: var(--navy); font-size: var(--text-sm); }
.tcard .who span { font-size: var(--text-xs); color: var(--muted); }

/* map / markets */
.markets { display: flex; flex-wrap: wrap; gap: 10px; }
.market-pill { padding: 9px 18px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); font-size: var(--text-sm); color: rgba(255,255,255,0.85); }

/* ---------- FORMS ---------- */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: var(--text-sm); background: #fff; color: var(--ink); transition: var(--transition);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,161,91,0.15); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-note { font-size: var(--text-xs); color: var(--muted); }
.form-success { display: none; padding: 16px; border-radius: 10px; background: #E9F9EF; color: #1B7A43; font-size: var(--text-sm); font-weight: 600; }
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq-q { width: 100%; text-align: left; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-weight: 700; color: var(--navy); font-size: var(--text-base); }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; transition: var(--transition); color: var(--gold-deep); font-size: 1.2rem; }
.faq-item.open .faq-q .pm { background: var(--navy); color: var(--gold-soft); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 26px 24px; font-size: var(--text-sm); color: var(--muted); }

/* ---------- CTA BAND ---------- */
.cta-band {
  border-radius: var(--radius-lg); padding: 64px; text-align: center; color: #fff; position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 50% -30%, rgba(198,161,91,0.3), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy));
}
.cta-band h2 { color: #fff; font-size: var(--text-3xl); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 28px; font-size: var(--text-lg); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.site-footer { background: #030A2E; color: rgba(255,255,255,0.72); padding-top: var(--space-lg); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name { color: #fff; }
.footer-about { font-size: var(--text-sm); margin: 18px 0; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: var(--text-base); margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: var(--text-sm); transition: var(--transition); }
.footer-col a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: var(--text-sm); align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); display: grid; place-items: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: var(--text-xs); flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- FLOATING ELEMENTS ---------- */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  animation: pulse 2.4s infinite; transition: var(--transition);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.sticky-quote {
  position: fixed; right: 22px; bottom: 92px; z-index: 899;
  background: var(--gold); color: var(--navy); padding: 13px 20px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: var(--text-sm); box-shadow: var(--shadow); display: inline-flex; gap: 8px; align-items: center;
  transition: var(--transition);
}
.sticky-quote:hover { background: var(--gold-soft); transform: translateY(-2px); }
.sticky-quote svg { width: 16px; height: 16px; }

.to-top { position: fixed; left: 22px; bottom: 22px; z-index: 899; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: var(--transition); }
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--navy-700); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- UTIL ---------- */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.prose p { margin-bottom: 1.2rem; color: var(--muted); }
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.6rem 0 0.8rem; }
.prose ul.bullets { margin: 1rem 0 1.5rem 1.2rem; list-style: disc; }
.prose ul.bullets li { margin-bottom: 0.5rem; color: var(--muted); }
.hr { height: 1px; background: var(--line); border: 0; margin: var(--space-md) 0; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}
@media (max-width: 860px) {
  :root { --text-3xl: 2.3rem; --text-4xl: 2.9rem; }
  .nav-menu, .nav-actions .btn-desktop { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .split, .mega-inner { grid-template-columns: 1fr; }
  .section { padding: var(--space-lg) 0; }
  .cta-band { padding: 40px 24px; }
  .form .row { grid-template-columns: 1fr; }

  /* mobile drawer */
  .nav-menu.mobile-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 20px; gap: 4px; z-index: 1001; overflow-y: auto;
  }
  .nav-menu.mobile-open > li > a { color: #fff; padding: 16px; border-bottom: 1px solid var(--line-dark); border-radius: 0; }
  .nav-menu.mobile-open .mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 8px 0; border: 0; display: none; }
  .nav-menu.mobile-open .has-mega.expanded .mega { display: block; }
  .nav-menu.mobile-open .mega-inner { padding: 0; gap: 12px; }
  .nav-menu.mobile-open .mega-feature { display: none; }
  .nav-menu.mobile-open .mega-cat b, .nav-menu.mobile-open .mega-cat span { color: #fff; }
  .nav-menu.mobile-open .mega-cat span { color: rgba(255,255,255,0.6); }
  .nav-menu.mobile-open .mega-cat:hover { background: rgba(255,255,255,0.06); }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps, .logo-row, .footer-top, .stat-strip { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .hero-stats { gap: 28px; }
  .float-wa { width: 54px; height: 54px; }
  .sticky-quote { bottom: 84px; padding: 11px 16px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
