/* ═══════════════════════════════════════════════════════
   STYLES.CSS — FlowrA Technology Africa Limited
═══════════════════════════════════════════════════════ */

/* ── Design tokens — LIGHT mode ────────────────────── */
:root, [data-theme="light"] {
  color-scheme: light;

  --bg:          #FFFFFF;
  --bg-2:        #F8FAFC;
  --bg-3:        #F4F7FD;
  --bg-4:        #EEF3FC;

  --navy:        #1A3A6E;
  --navy-dark:   #0F2347;
  --navy-mid:    #1E4480;
  --navy-light:  #2A5499;
  --navy-pale:   #E8F0FB;
  --navy-tint:   #F4F7FD;

  --gold:        #D4A017;
  --gold-light:  #E8B830;
  --gold-dark:   #B8880F;
  --gold-pale:   #FDF6E3;

  --text-dark:   #0D1F3C;
  --text-body:   #2D3F5E;
  --text-mid:    #4A6080;
  --text-muted:  #8099BB;

  --border:      rgba(26,58,110,0.10);
  --border-mid:  rgba(26,58,110,0.18);
  --gold-border: rgba(212,160,23,0.28);

  --sh-sm:  0 2px 16px rgba(15,35,71,0.08);
  --sh-md:  0 8px 40px rgba(15,35,71,0.13);
  --sh-lg:  0 20px 70px rgba(15,35,71,0.18);

  --r:      10px;
  --r-sm:   6px;
  --r-lg:   16px;
}

/* ── Design tokens — DARK mode ──────────────────────── */
[data-theme="dark"] {
  color-scheme: dark;

  --bg:          #080E1C;
  --bg-2:        #0C1422;
  --bg-3:        #101828;
  --bg-4:        #141F30;

  --navy-pale:   #1A2640;
  --navy-tint:   #101828;
  --gold-pale:   #160F02;

  --text-dark:   #E8EEFF;
  --text-body:   #B0BED8;
  --text-mid:    #7B91B0;
  --text-muted:  #4D6080;

  --border:      rgba(148,179,255,0.10);
  --border-mid:  rgba(148,179,255,0.16);

  --sh-sm:  0 2px 16px rgba(0,0,0,0.35);
  --sh-md:  0 8px 40px rgba(0,0,0,0.45);
  --sh-lg:  0 20px 80px rgba(0,0,0,0.55);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: color 0.2s; }

/* Theme transition */
body, #nav, .product-card, .founder-card, .contact-form, .name-card,
.ci, .ent-feat, .how-step, .team-strength, .about-img-frame, .mob-menu,
.pricing-table td, .feat-table tbody td, .custom-table td,
.fg input, .fg select, .fg textarea { transition: background-color 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease; }

/* ── Layout ─────────────────────────────────────────── */
.wrap    { max-width: 1140px; margin: 0 auto; padding: 0 5vw; }
.sec     { padding: 6rem 0; background: var(--bg); }
.sec-sm  { padding: 4rem 0; background: var(--bg); }
.sec-off { background: var(--bg-2) !important; }
.sec-tint{ background: var(--bg-3) !important; }
.sec-dark{ background: var(--navy-dark); }
.sec-navy{ background: var(--navy); }

/* ── Typography ─────────────────────────────────────── */
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.875rem; }
.eyebrow::before { content: ''; width: 1.5rem; height: 2px; background: var(--gold); flex-shrink: 0; }
.eyebrow-white { color: #fff; }
.eyebrow-white::before { background: rgba(255,255,255,0.5); }
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }

.display { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5vw,4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--navy-dark); }
.display-white { color: #fff; }
.display em, .display-white em { font-style: normal; color: var(--gold-light); }

.title { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem,3.5vw,2.625rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--text-dark); }
.title-white { color: #fff; }
.subtitle { font-size: 1.0625rem; color: var(--text-mid); line-height: 1.8; max-width: 580px; }
.subtitle-white { color: rgba(255,255,255,0.6); }

/* Dark mode typography */
[data-theme="dark"] .title { color: var(--text-dark); }

/* ── Buttons ─────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.875rem 1.875rem; border-radius: var(--r-sm); border: none; cursor: pointer; transition: all 0.25s; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.09); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ══════════════════════════════════════════════════════
   PROGRESS BAR
══════════════════════════════════════════════════════ */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 9998;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  animation: progressGlow 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #060C1A;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; animation: logoPulse 1.6s ease-in-out infinite; }
.loader-logo span { color: var(--gold); }
.loader-tagline { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.loader-bar { width: 140px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); animation: loaderFill 1.5s ease forwards; }

/* ══════════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════════ */
#cursor-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none;
  transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
}
#cursor-ring {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(212,160,23,0.55);
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  transform: translate(-50%, -50%);
}
#cursor-dot.hover  { width: 12px; height: 12px; background: var(--gold-light); }
#cursor-ring.hover { width: 56px; height: 56px; border-color: var(--gold); background: rgba(212,160,23,0.07); border-width: 1.5px; }
#cursor-ring.click { border-color: var(--gold-light); animation: ringClick 0.35s ease; }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); box-shadow: var(--sh-sm); transition: all 0.3s;
}
#nav.scrolled { box-shadow: var(--sh-md); }
[data-theme="dark"] #nav { background: rgba(8,14,28,0.97); border-color: rgba(148,179,255,0.08); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 5vw; max-width: 1200px; margin: 0 auto; }

.nav-logo { display: flex; align-items: center; gap: 0.625rem; }
.nav-logo-img { height: 36px; width: 36px; object-fit: contain; border-radius: 6px; }
.nav-logo-mark { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
[data-theme="dark"] .nav-logo-mark { color: #E8EEFF; }
.nav-logo-mark span { color: var(--gold); }
.nav-logo-sub { font-size: 0.58rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.05em; text-transform: uppercase; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s; transform-origin: left; }
.nav-links a:hover { color: var(--navy); }
[data-theme="dark"] .nav-links a:hover { color: #E8EEFF; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { background: var(--navy) !important; color: #fff !important; padding: 0.5rem 1.25rem !important; border-radius: var(--r-sm); font-weight: 700 !important; font-size: 0.78rem !important; }
.nav-cta:hover { background: var(--navy-mid) !important; }
.nav-cta::after { display: none !important; }

/* Theme toggle */
.theme-btn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border-mid); background: var(--bg-3); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--text-mid); flex-shrink: 0; }
.theme-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--bg); }
.theme-icon { width: 18px; height: 18px; }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger */
.ham { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.ham span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
[data-theme="dark"] .ham span { background: #E8EEFF; }

/* Mobile menu */
.mob-menu { display: none; position: fixed; inset: 72px 0 0; background: var(--bg); z-index: 999; padding: 2rem 5vw; flex-direction: column; overflow-y: auto; }
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.05em; text-transform: uppercase; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.mob-menu .mob-cta { margin-top: 1.5rem; background: var(--navy); color: #fff; padding: 1rem; border-radius: var(--r-sm); text-align: center; font-weight: 700; border-bottom: none; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#home { position: relative; }
#hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; z-index: 3;
  background:
    linear-gradient(135deg, rgba(6,12,26,0.95) 0%, rgba(15,35,71,0.82) 50%, rgba(6,12,26,0.93) 100%),
    url('../images/hero-bg.png') center / cover no-repeat,
    linear-gradient(135deg, #060C1A 0%, #1A3A6E 60%, #0F2347 100%);
}
.hero-mesh { position: absolute; inset: 0; background: radial-gradient(ellipse 72% 70% at 80% 50%, rgba(212,160,23,0.08) 0%, transparent 65%), radial-gradient(ellipse 52% 62% at 15% 30%, rgba(26,84,153,0.42) 0%, transparent 55%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(255,255,255,0.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.7) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }

/* Floating words */
.floating-words { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.fw {
  position: absolute;
  left: var(--x); top: var(--y);
  font-family: 'Playfair Display', serif;
  font-size: var(--sz, 10rem);
  font-weight: 900;
  color: rgba(255,255,255,0.028);
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.02em;
  animation: floatDrift var(--dur, 22s) var(--dly, 0s) ease-in-out infinite alternate;
  will-change: transform;
}
[data-theme="dark"] .fw { color: rgba(255,255,255,0.04); }

/* Hero inner */
.hero-inner { position: relative; z-index: 1; padding: 5rem 5vw; max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.32); color: var(--gold-light); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 3px; margin-bottom: 1.75rem; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2.2s infinite; flex-shrink: 0; }

.hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 700; color: #fff; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.hero-h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,0.58); max-width: 480px; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-pills { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.hero-pill { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.375rem 0.875rem; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); border-radius: 3px; }
.hero-pill-link { border-color: rgba(212,160,23,0.45); color: var(--gold-light); transition: all 0.2s; }
.hero-pill-link:hover { background: rgba(212,160,23,0.15); border-color: var(--gold); color: var(--gold-light); }
.pc-head-link { font-family: 'Playfair Display', serif; font-size: 1.625rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; display: block; transition: color 0.2s; }
.pc-head-link:hover { color: var(--gold-light); }

/* ── Phone mockup ───────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-outer { position: relative; }
.phone-frame {
  width: 268px; background: #1C1C28; border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.12); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative; z-index: 2;
}
.phone-notch { width: 90px; height: 24px; background: #0D0D18; border-radius: 0 0 16px 16px; margin: 0 auto; }
.phone-screen { background: #ECE5DD; height: 490px; display: flex; flex-direction: column; }

/* WhatsApp UI */
.wa-header { background: #075E54; padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.wa-av { width: 36px; height: 36px; border-radius: 50%; background: #128C7E; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.wa-name  { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.2; }
.wa-online { color: rgba(255,255,255,0.72); font-size: 10.5px; }

.wa-body { flex: 1; padding: 10px 10px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(0,0,0,0.05)'/%3E%3C/svg%3E") #ECE5DD; }
.wa-msg { max-width: 86%; padding: 7px 10px; border-radius: 8px; font-size: 11.5px; line-height: 1.45; font-family: 'Montserrat', sans-serif; }
.wa-recv { background: #fff; color: #333; border-radius: 0 8px 8px 8px; align-self: flex-start; box-shadow: 0 1px 2px rgba(0,0,0,0.12); }
.wa-sent { background: #DCF8C6; color: #333; border-radius: 8px 0 8px 8px; align-self: flex-end; box-shadow: 0 1px 2px rgba(0,0,0,0.12); }

.wa-input-bar { background: #F0F0F0; padding: 9px 10px; display: flex; align-items: center; gap: 7px; margin-top: auto; }
.wa-input-box { flex: 1; background: #fff; border-radius: 22px; padding: 6px 12px; font-size: 11px; color: #999; font-family: 'Montserrat', sans-serif; }
.wa-send-btn { width: 34px; height: 34px; background: #128C7E; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; flex-shrink: 0; }

.phone-glow { position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); width: 220px; height: 80px; background: radial-gradient(ellipse, rgba(212,160,23,0.45), transparent 70%); filter: blur(18px); animation: glowPulse 3.5s ease-in-out infinite; }

/* Hero floating badges */
.hv-badge { position: absolute; background: rgba(255,255,255,0.96); border-radius: var(--r-sm); padding: 10px 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.22); backdrop-filter: blur(10px); min-width: 100px; }
[data-theme="dark"] .hv-badge { background: rgba(20,30,50,0.95); border: 1px solid var(--border-mid); }
.hv-b1 { top: 14%; right: -14%; }
.hv-b2 { top: 52%; left: -16%; }
.hv-b3 { bottom: 14%; right: -10%; }
.hv-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--navy-dark); line-height: 1; margin-bottom: 2px; }
[data-theme="dark"] .hv-num { color: var(--text-dark); }
.hv-lbl { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════ */
.stats-bar { background: var(--navy); padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1140px; margin: 0 auto; padding: 0 5vw; gap: 1px; }
.stat-item { text-align: center; padding: 1rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; margin-bottom: 0.375rem; }
.stat-lbl { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); }

/* ══════════════════════════════════════════════════════
   PROMISE / WHY
══════════════════════════════════════════════════════ */
.promise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3.5rem; }
.promise-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r); padding: 2rem; transition: all 0.25s; }
.promise-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(212,160,23,0.28); transform: translateY(-3px); }
.pc-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(212,160,23,0.14); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; color: var(--gold); }
.pc-title { font-size: 0.9375rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.pc-desc { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.72; }

/* ══════════════════════════════════════════════════════
   WAVE DIVIDERS
══════════════════════════════════════════════════════ */
.wave { line-height: 0; overflow: hidden; position: relative; z-index: 2; }
.wave svg { display: block; width: 100%; }
.wave-to-bg   svg path { fill: var(--bg); }
.wave-to-bg2  svg path { fill: var(--bg-2); }
.wave-to-bg3  svg path { fill: var(--bg-3); }
.wave-to-navy svg path { fill: #0F2347; }
.wave-to-navy2 svg path { fill: #060C1A; }
.wave.flip { transform: scaleY(-1); }

/* ══════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

/* About image */
.about-img-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); margin-bottom: 1.5rem; }
.about-img-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(10,20,50,0.7) 100%); z-index: 1; pointer-events: none; }
.about-img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.about-img-frame:hover .about-img { transform: scale(1.03); }
.about-img-badge { position: absolute; bottom: 1.25rem; left: 1.25rem; z-index: 2; background: rgba(212,160,23,0.95); border-radius: var(--r-sm); padding: 0.625rem 1rem; display: flex; gap: 0.75rem; align-items: center; }
.aib-loc { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-dark); line-height: 1.2; }
.aib-year { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 800; color: var(--navy-dark); }

/* Name cards */
.name-cards { display: flex; flex-direction: column; gap: 1rem; }
.name-card { background: var(--bg); border: 1px solid var(--border-mid); border-radius: var(--r); padding: 1.75rem 2rem; border-left: 4px solid var(--navy); box-shadow: var(--sh-sm); transition: all 0.25s; }
.name-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.name-card.gold { border-left-color: var(--gold); }
.nc-word { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.nc-word.gold { color: var(--gold); }
.nc-heading { font-size: 0.84rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.nc-body { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }
[data-theme="dark"] .name-card { background: var(--bg-2); }

/* ══════════════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════════════ */
.products-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.products-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.product-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column; transform-style: preserve-3d; }
.product-card:hover { box-shadow: var(--sh-lg); border-color: var(--navy-pale); }
[data-theme="dark"] .product-card { background: var(--bg-2); }

.pc-head { background: var(--navy-dark); padding: 2rem 2rem 1.75rem; position: relative; overflow: hidden; }
.pc-head::after { content: ''; position: absolute; bottom: -30px; right: -20px; width: 110px; height: 110px; border-radius: 50%; background: rgba(212,160,23,0.07); }
.pc-head-num  { font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 700; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 0.5rem; }
.pc-head-nick { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.375rem; }
.pc-head-name { font-family: 'Playfair Display', serif; font-size: 1.625rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.pc-head-tag  { font-size: 0.8rem; color: rgba(255,255,255,0.45); font-style: italic; }

.pc-body { padding: 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; }
.pc-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.pc-feats { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; margin-bottom: 1.75rem; }
.pc-feats li { font-size: 0.84rem; color: var(--text-dark); display: flex; align-items: flex-start; gap: 0.625rem; line-height: 1.5; }
.pc-feats li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 0.45rem; flex-shrink: 0; }

.pricing-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.pricing-table th { background: var(--navy-dark); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.75rem 1rem; text-align: left; }
.pricing-table td { padding: 0.7rem 1rem; font-size: 0.84rem; color: var(--text-body); border-bottom: 1px solid var(--border); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--navy-tint); }
.pricing-table th:first-child { border-radius: 6px 0 0 0; }
.pricing-table th:last-child  { border-radius: 0 6px 0 0; }
[data-theme="dark"] .pricing-table tr:nth-child(even) td { background: var(--bg-3); }

.pc-cta { display: block; margin-top: 1.25rem; text-align: center; background: var(--navy); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.75rem 1rem; border-radius: var(--r-sm); transition: background 0.2s; }
.pc-cta:hover { background: var(--navy-mid); }

/* Custom strip */
.custom-strip { background: var(--navy-dark); border-radius: var(--r); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; border-left: 4px solid var(--gold); }
.cs-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; font-weight: 700; margin-bottom: 0.5rem; }
.cs-desc { font-size: 0.875rem; color: rgba(255,255,255,0.52); max-width: 600px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   FEATURE TABLE
══════════════════════════════════════════════════════ */
.feat-table { width: 100%; border-collapse: collapse; margin-top: 2.5rem; }
.feat-table thead th { background: var(--navy); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.875rem 1.25rem; text-align: left; }
.feat-table tbody td { padding: 0.875rem 1.25rem; font-size: 0.9rem; color: var(--text-body); border-bottom: 1px solid var(--border); vertical-align: top; }
.feat-table tbody tr:last-child td { border-bottom: none; }
.feat-table tbody tr:nth-child(even) td { background: var(--navy-tint); }
.feat-table tbody td:first-child { font-weight: 700; color: var(--text-dark); width: 28%; }
.feat-table thead th:first-child { border-radius: 6px 0 0 0; }
.feat-table thead th:last-child  { border-radius: 0 6px 0 0; }
[data-theme="dark"] .feat-table tbody tr:nth-child(even) td { background: var(--bg-3); }

/* ══════════════════════════════════════════════════════
   ENTERPRISE
══════════════════════════════════════════════════════ */
.ent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.ent-clients { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.ent-pill { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0.75rem 1rem; font-size: 0.84rem; font-weight: 600; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; box-shadow: var(--sh-sm); }
.ent-pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
[data-theme="dark"] .ent-pill { background: var(--bg-2); }

.ent-features { display: flex; flex-direction: column; gap: 1rem; }
.ent-feat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--sh-sm); display: flex; gap: 1rem; align-items: flex-start; transition: all 0.22s; }
.ent-feat:hover { border-color: var(--navy); transform: translateX(4px); }
[data-theme="dark"] .ent-feat { background: var(--bg-2); }
.ef-ico { width: 40px; height: 40px; border-radius: 8px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.ef-title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.ef-desc { font-size: 0.825rem; color: var(--text-mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   CUSTOM SOLUTIONS
══════════════════════════════════════════════════════ */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; }
.how-step { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem; text-align: center; box-shadow: var(--sh-sm); position: relative; transition: all 0.22s; }
.how-step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--navy); }
[data-theme="dark"] .how-step { background: var(--bg-2); }
.how-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--navy-pale); line-height: 1; margin-bottom: 0.75rem; }
.how-title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.how-desc { font-size: 0.825rem; color: var(--text-mid); line-height: 1.65; }
.how-step:not(:last-child)::after { content: '→'; position: absolute; right: -1rem; top: 50%; transform: translateY(-50%); font-size: 1.25rem; color: var(--gold); z-index: 1; }

.custom-table-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.custom-table { width: 100%; border-collapse: collapse; }
.custom-table th { background: var(--navy); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.75rem 1rem; text-align: left; }
.custom-table th:first-child { border-radius: 6px 0 0 0; }
.custom-table th:last-child  { border-radius: 0 6px 0 0; }
.custom-table td { padding: 0.75rem 1rem; font-size: 0.84rem; color: var(--text-body); border-bottom: 1px solid var(--border); }
.custom-table tr:nth-child(even) td { background: var(--navy-tint); }
.custom-table tr:last-child td { border-bottom: none; }
.custom-table td:first-child { font-weight: 700; color: var(--text-dark); }
[data-theme="dark"] .custom-table tr:nth-child(even) td { background: var(--bg-3); }

/* ══════════════════════════════════════════════════════
   TEAM — FOUNDER CARDS WITH PHOTOS
══════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }

.founder-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.founder-card:hover { box-shadow: var(--sh-lg); border-color: var(--border-mid); }
[data-theme="dark"] .founder-card { background: var(--bg-2); }

.fc-photo-wrap { height: 280px; position: relative; overflow: hidden; flex-shrink: 0; }
.fc-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.6s ease; }
.founder-card:hover .fc-photo { transform: scale(1.04); }
.fc-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,42,0.96) 0%, rgba(8,16,42,0.25) 55%, transparent 100%); display: flex; align-items: flex-end; padding: 1.25rem; }
.fc-role-badge { display: inline-block; background: var(--gold); color: var(--navy-dark); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 3px; }

.fc-content { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.fc-name { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; line-height: 1.3; }
.fc-title-line { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.fc-bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; flex: 1; }
.fc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.fc-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.275rem 0.65rem; border-radius: 3px; background: var(--navy-pale); color: var(--navy); border: 1px solid rgba(26,58,110,0.14); }
.fc-tag.g { background: var(--gold-pale); color: #7A5800; border-color: rgba(212,160,23,0.25); }
[data-theme="dark"] .fc-tag { background: var(--bg-3); color: var(--text-body); border-color: var(--border); }
[data-theme="dark"] .fc-tag.g { background: rgba(212,160,23,0.12); color: var(--gold-light); border-color: rgba(212,160,23,0.2); }

.team-strength { margin-top: 2rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem 2.5rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.ts-item h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.ts-item p  { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   VISION
══════════════════════════════════════════════════════ */
.vision-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.375rem,2.75vw,2rem); color: #fff; max-width: 720px; margin: 0 auto 1.5rem; line-height: 1.45; font-style: italic; font-weight: 400; text-align: center; }
.vision-divider { width: 60px; height: 3px; background: var(--gold); margin: 2.5rem auto; border-radius: 2px; }
.vision-stats { display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap; margin: 3rem 0; }
.vs-num { display: block; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 0.375rem; }
.vs-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.vision-sub { font-size: 0.9375rem; color: rgba(255,255,255,0.42); max-width: 540px; margin: 0 auto; text-align: center; line-height: 1.8; }
.vision-phase-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 3.5rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r); overflow: hidden; }
.vp-card { background: rgba(15,35,71,0.6); padding: 1.75rem; transition: background 0.2s; }
.vp-card:hover { background: rgba(26,58,110,0.55); }
.vp-phase { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.375rem; }
.vp-period { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-bottom: 0.75rem; }
.vp-focus { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.vp-milestone { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.ci { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: center; box-shadow: var(--sh-sm); }
[data-theme="dark"] .ci { background: var(--bg-2); }
.ci-ico { width: 40px; height: 40px; border-radius: 8px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.ci-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.15rem; }
.ci-val   { font-size: 0.9375rem; font-weight: 600; color: var(--text-dark); }

/* Contact form */
.contact-form { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 2.5rem; box-shadow: var(--sh-sm); }
[data-theme="dark"] .contact-form { background: var(--bg-2); }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-dark); font-weight: 700; margin-bottom: 0.375rem; }
.form-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Floating label inputs */
.fg { position: relative; margin-bottom: 1rem; }
.fg label { position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); font-size: 0.875rem; color: var(--text-muted); pointer-events: none; transition: all 0.2s ease; background: transparent; padding: 0; font-weight: 500; }
.fg.textarea-fg label { top: 1rem; transform: none; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 1.125rem 1rem 0.5rem;
  border: 1.5px solid var(--border-mid); border-radius: var(--r-sm);
  font-family: 'Montserrat', sans-serif; font-size: 0.875rem;
  color: var(--text-dark); background: var(--bg); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.4s;
}
[data-theme="dark"] .fg input,
[data-theme="dark"] .fg select,
[data-theme="dark"] .fg textarea { background: var(--bg-3); color: var(--text-dark); }
.fg select { padding: 0.875rem 1rem; cursor: pointer; }
.fg textarea { padding: 1rem; resize: vertical; min-height: 110px; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,110,0.1); }
[data-theme="dark"] .fg input:focus,
[data-theme="dark"] .fg select:focus,
[data-theme="dark"] .fg textarea:focus { box-shadow: 0 0 0 3px rgba(148,179,255,0.12); }

/* Float the label on focus or when filled */
.fg input:focus + label, .fg input:not(:placeholder-shown) + label,
.fg select:focus + label, .fg select:not([value=""]) + label {
  top: 0.45rem; transform: none; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy);
}
[data-theme="dark"] .fg input:focus + label,
[data-theme="dark"] .fg input:not(:placeholder-shown) + label { color: var(--gold); }

.submit-btn { width: 100%; background: var(--navy); color: #fff; border: none; padding: 1rem; border-radius: var(--r-sm); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.2s; margin-top: 0.25rem; }
.submit-btn:hover:not(:disabled) { background: var(--navy-mid); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

/* ══════════════════════════════════════════════════════
   CALLOUT
══════════════════════════════════════════════════════ */
.callout { background: var(--navy-dark); border-left: 4px solid var(--gold); border-radius: var(--r); padding: 2rem 2.5rem; margin: 2rem 0; }
.callout-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.callout-body { font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.75; }
.callout-body strong { color: #fff; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer { background: var(--navy-dark); border-top: 3px solid var(--gold); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 4rem 5vw 3rem; max-width: 1200px; margin: 0 auto; }
.footer-brand-mark { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.footer-brand-mark span { color: var(--gold); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
.footer-ci { font-size: 0.8rem; color: rgba(255,255,255,0.38); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-ci span { color: var(--gold); font-size: 0.875rem; }
.footer-col h5 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.84rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 5vw; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.26); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 500;
  background: #25D366; color: #fff; border-radius: 50px;
  display: flex; align-items: center; gap: 0;
  width: 52px; height: 52px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  animation: waBounce 2.5s ease-in-out 3s 3;
}
.wa-float:hover { width: 164px; gap: 0.5rem; padding: 0 1.25rem; border-radius: 50px; box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { flex-shrink: 0; margin: auto; }
.wa-float:hover svg { margin: 0; }
.wa-float-label { font-size: 0.8rem; font-weight: 700; white-space: nowrap; opacity: 0; transition: opacity 0.2s 0.1s; }
.wa-float:hover .wa-float-label { opacity: 1; }

/* ══════════════════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════════════════ */
#scroll-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 500; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--navy-dark); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; cursor: pointer; box-shadow: var(--sh-md); border: none; opacity: 0; pointer-events: none; transition: all 0.3s; }
#scroll-top.vis { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════════════ */
#toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--navy-dark); border-left: 4px solid var(--gold); color: #fff; padding: 1rem 1.5rem; border-radius: var(--r); display: flex; align-items: center; gap: 0.875rem; z-index: 3000; box-shadow: var(--sh-lg); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); white-space: nowrap; }
#toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--navy-dark); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.875rem; flex-shrink: 0; }
.toast-msg { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════════════════════
   SITE WATERMARK — lion logo ghost
══════════════════════════════════════════════════════ */
.site-watermark {
  position: fixed;
  inset: 0;
  background: url('../images/Lion Roar Flowra.png') center / 72vmin no-repeat;
  opacity: 0.07;
  mix-blend-mode: multiply;   /* white bg of PNG becomes invisible; only lion shape shows */
  pointer-events: none;
  z-index: 2;
  will-change: auto;
}

/* Dark mode: switch to soft-light so lion reads against dark backgrounds */
[data-theme="dark"] .site-watermark {
  mix-blend-mode: soft-light;
  opacity: 0.06;
}

/* ══════════════════════════════════════════════════════
   TABLE SCROLL WRAPPER
══════════════════════════════════════════════════════ */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-sm); }
.table-scroll::-webkit-scrollbar { height: 4px; }
.table-scroll::-webkit-scrollbar-track { background: var(--bg-3); }
.table-scroll::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 2px; }

/* ══════════════════════════════════════════════════════
   SECTION DIVIDER
══════════════════════════════════════════════════════ */
.sec-divider { height: 3px; background: linear-gradient(90deg, var(--navy-dark) 0%, var(--gold) 50%, var(--navy-dark) 100%); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Full device coverage
   1200 · 1000 · 768 · 680 · 480 · 375
══════════════════════════════════════════════════════ */

/* ── 1200px+ : large desktop tweaks ────────────────── */
@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
}

/* ── max 1100px : laptop / small desktop ────────────── */
@media (max-width: 1100px) {
  .hero-h1 { font-size: clamp(2.25rem,4.5vw,3.5rem); }
  .products-grid { grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
}

/* ── max 1000px : tablet landscape ─────────────────── */
@media (max-width: 1000px) {
  .sec     { padding: 5rem 0; }
  .sec-sm  { padding: 3rem 0; }

  /* grids → single column */
  .hero-inner, .about-grid, .contact-grid, .ent-grid,
  .products-intro { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero-visual { display: none; }
  .hero-inner  { padding: 4rem 5vw; }
  .hero-sub    { max-width: 100%; }
  .hero-btns   { margin-bottom: 2rem; }

  /* 2-col grids */
  .products-grid         { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
  .team-grid             { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
  .promise-grid          { grid-template-columns: repeat(2,1fr); }
  .how-grid              { grid-template-columns: repeat(2,1fr); }
  .vision-phase-grid     { grid-template-columns: repeat(2,1fr); }
  .stats-inner           { grid-template-columns: repeat(2,1fr); }
  .footer-top            { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-strength         { grid-template-columns: repeat(2,1fr); }
  .ent-clients           { grid-template-columns: repeat(2,1fr); }
  .custom-table-wrap     { grid-template-columns: 1fr; }

  /* image heights */
  .about-img       { height: 240px; }
  .fc-photo-wrap   { height: 255px; }

  /* tables: smaller to avoid overflow */
  .feat-table th, .feat-table td { padding: 0.75rem 1rem; font-size: 0.875rem; }
  .feat-table tbody td:first-child { width: 32%; }

  .contact-grid { gap: 3rem; }
  .contact-form { padding: 2rem; }
}

/* ── max 768px : tablet portrait ────────────────────── */
@media (max-width: 768px) {
  .hero-h1  { font-size: clamp(2rem,6vw,3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-inner { padding: 3.5rem 5vw; }

  .products-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }

  .vision-stats { gap: 3rem; }
  .vs-num { font-size: 2.5rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .feat-table  { font-size: 0.82rem; }
  .feat-table th, .feat-table td { padding: 0.625rem 0.875rem; }

  .custom-strip { flex-direction: column; align-items: flex-start; padding: 2rem; }

  .about-img      { height: 220px; }
  .fc-photo-wrap  { height: 240px; }

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

  .callout { padding: 1.75rem 2rem; }
}

/* ── max 680px : mobile landscape / large phone ─────── */
@media (max-width: 680px) {
  .sec    { padding: 4rem 0; }
  .sec-sm { padding: 2.5rem 0; }

  /* nav */
  .nav-links { display: none; }
  .ham       { display: flex; }

  /* hero */
  .hero-inner  { padding: 3rem 5vw; }
  .hero-btns   { flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }

  /* grids → single col */
  .products-grid, .team-grid    { grid-template-columns: 1fr; }
  .promise-grid, .how-grid      { grid-template-columns: 1fr; }
  .vision-phase-grid            { grid-template-columns: repeat(2,1fr); }
  .ent-clients, .form-row       { grid-template-columns: 1fr; }
  .team-strength                { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
  .footer-top                   { grid-template-columns: 1fr; gap: 2rem; }

  /* vision */
  .vision-stats { gap: 2rem; flex-wrap: wrap; justify-content: flex-start; }
  .vs-num       { font-size: 2.25rem; }

  /* steps */
  .how-step::after { display: none; }
  .custom-strip    { flex-direction: column; align-items: flex-start; padding: 1.75rem; }

  /* hide waves (prevent height glitch on mobile) */
  .wave { display: none; }

  /* table: compact on mobile */
  .pricing-table th, .pricing-table td { padding: 0.5rem 0.75rem; font-size: 0.78rem; }
  .feat-table th, .feat-table td       { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
  .feat-table tbody td:first-child      { width: auto; min-width: 90px; }
  .custom-table th, .custom-table td   { padding: 0.5rem 0.75rem; font-size: 0.8rem; }

  /* misc */
  .callout      { padding: 1.5rem 1.25rem; }
  .callout-body { font-size: 0.875rem; }
  .contact-form { padding: 1.75rem 1.5rem; }
  .contact-grid { gap: 2rem; }
  .about-grid   { gap: 2rem; }
  .ent-grid     { gap: 2rem; }

  /* footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.625rem; }
  .footer-legal  { justify-content: center; }

  /* fixed elements */
  .wa-float  { bottom: 5rem; right: 1rem; }
  #scroll-top { bottom: 1.25rem; right: 1rem; }

  /* toast */
  #toast { white-space: normal; max-width: calc(100vw - 2rem); padding: 0.875rem 1.25rem; }

  /* cursor */
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}

/* ── max 480px : standard phone ─────────────────────── */
@media (max-width: 480px) {
  .sec    { padding: 3.5rem 0; }
  .wrap   { padding: 0 4.5vw; }

  /* hero */
  .hero-inner { padding: 2.5rem 4.5vw; min-height: auto; }
  .hero-h1    { font-size: clamp(1.875rem,8vw,2.5rem); margin-bottom: 1.125rem; }
  .hero-sub   { font-size: 0.9375rem; margin-bottom: 2rem; }
  .hero-btns  { flex-direction: column; align-items: stretch; }
  .btn        { font-size: 0.76rem; padding: 0.8rem 1.5rem; justify-content: center; }
  .hero-pills { gap: 0.35rem; }
  .hero-pill  { font-size: 0.62rem; padding: 0.3rem 0.7rem; }

  /* stats */
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-num    { font-size: 1.75rem; }
  .stat-item   { padding: 0.875rem 0.5rem; }

  /* promise */
  .promise-card { padding: 1.5rem; }
  .promise-grid { gap: 0.875rem; }

  /* typography */
  .title       { font-size: clamp(1.5rem,6vw,2rem); }
  .subtitle    { font-size: 0.9375rem; }

  /* products */
  .pc-head     { padding: 1.5rem 1.5rem 1.25rem; }
  .pc-body     { padding: 1.25rem 1.5rem; }
  .pc-feats li { font-size: 0.8rem; }

  /* about */
  .about-img       { height: 200px; }
  .about-img-badge { padding: 0.5rem 0.75rem; }
  .name-card       { padding: 1.5rem; }
  .nc-word         { font-size: 1.5rem; }

  /* team */
  .fc-photo-wrap { height: 220px; }
  .fc-content    { padding: 1.25rem 1.5rem; }
  .fc-name       { font-size: 1rem; }
  .fc-bio        { font-size: 0.82rem; }
  .team-strength { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.25rem; }

  /* vision */
  .vision-phase-grid { grid-template-columns: 1fr; }
  .vp-card           { padding: 1.25rem; }
  .vs-num            { font-size: 2rem; }
  .vision-stats      { gap: 1.5rem 3rem; }
  .vision-quote      { font-size: clamp(1.1rem,4vw,1.5rem); }

  /* custom */
  .how-step  { padding: 1.5rem; }
  .how-grid  { gap: 0.875rem; }
  .how-num   { font-size: 2rem; }
  .custom-strip { padding: 1.5rem; }

  /* enterprise */
  .ent-feat    { padding: 1.25rem; }
  .ent-clients { grid-template-columns: 1fr; }

  /* contact */
  .contact-form { padding: 1.5rem; }
  .form-title   { font-size: 1.25rem; }
  .ci           { padding: 0.875rem 1.125rem; }
  .ci-val       { font-size: 0.875rem; }

  /* footer */
  .footer-top   { padding: 3rem 4.5vw 2rem; }
  .footer-top   { grid-template-columns: 1fr; }
  .callout      { padding: 1.375rem 1.25rem; }

  /* floating elements */
  .wa-float   { bottom: 4.75rem; right: 0.75rem; }
  #scroll-top { bottom: 1rem; right: 0.75rem; width: 42px; height: 42px; font-size: 1rem; }

  /* hide hero stat badges (no room) */
  .hv-b1, .hv-b2, .hv-b3 { display: none; }
}

/* ── max 375px : small phone (iPhone SE, Galaxy A) ─── */
@media (max-width: 375px) {
  .sec  { padding: 3rem 0; }
  .wrap { padding: 0 4vw; }

  /* nav */
  .nav-inner    { padding: 0 4vw; }
  .nav-logo-img { height: 28px; width: 28px; }
  .nav-logo-mark { font-size: 1.2rem; }
  .nav-logo-sub  { display: none; }

  /* hero */
  .hero-inner { padding: 2rem 4vw; }
  .hero-h1    { font-size: 1.75rem; }
  .hero-badge { font-size: 0.6rem; padding: 0.3rem 0.7rem; }

  /* stats */
  .stat-num { font-size: 1.5rem; }
  .stat-lbl { font-size: 0.6rem; letter-spacing: 0.08em; }

  /* type */
  .title    { font-size: 1.5rem; }
  .subtitle { font-size: 0.9rem; }

  /* team */
  .fc-photo-wrap { height: 200px; }

  /* vision */
  .vs-num        { font-size: 1.75rem; }
  .vision-quote  { font-size: 1.1rem; }

  /* contact */
  .contact-form  { padding: 1.25rem; }
  .ci-val        { font-size: 0.82rem; }

  /* footer */
  .footer-top    { padding: 2.5rem 4vw 1.5rem; }
  .footer-bottom { padding: 1.125rem 4vw; }
  .footer-copy   { font-size: 0.68rem; }
  .footer-brand-mark { font-size: 1.25rem; }

  /* misc */
  .callout  { padding: 1.25rem; }
  .btn      { padding: 0.7rem 1.25rem; font-size: 0.72rem; }
  #toast    { padding: 0.75rem 1rem; font-size: 0.8rem; }
}

/* ── Landscape orientation — short phones ────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  #hero          { min-height: 100svh; padding-top: 64px; }
  .hero-inner    { padding: 1.75rem 5vw; gap: 2rem; }
  .hero-h1       { font-size: clamp(1.5rem,4vw,2rem); margin-bottom: 0.875rem; }
  .hero-sub      { margin-bottom: 1.25rem; font-size: 0.9rem; }
  .hero-btns     { margin-bottom: 1.25rem; }
  .hero-pills    { display: none; }
  .stats-inner   { grid-template-columns: repeat(4,1fr); }
}

/* ── Touch / pointer coarse — disable custom cursor ─── */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}

/* ── Very large screens (2K / 4K) ─────────────────────── */
@media (min-width: 1600px) {
  .wrap { max-width: 1300px; }
  .nav-inner { max-width: 1400px; }
  .footer-top, .footer-bottom { max-width: 1400px; }
  html { font-size: 17px; }
}
