/* =====================================================
   CeT-Trans — Main Stylesheet
   Cameroon-inspired: green #007a5e · yellow #fcd116 · red #ce1126
   Premium design system with depth, motion & delight
   ===================================================== */

/* ── Google Fonts ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Cameroon palette */
  --cm-green:   #007a5e;
  --cm-green-lt:#00a67d;
  --cm-yellow:  #fcd116;
  --cm-yellow-lt:#ffe066;
  --cm-red:     #ce1126;
  --cm-red-lt:  #ef4444;

  /* Brand */
  --primary:    #1e3a5f;
  --primary-lt: #2a5290;
  --primary-xlt:#3b6eb5;
  --accent:     #e8a020;
  --dark:       #0d1f35;
  --darker:     #060e1a;
  --text:       #1a202c;
  --text-soft:  #4a5568;
  --muted:      #718096;
  --border:     #e2e8f0;
  --bg-light:   #f7f9fc;
  --bg-subtle:  #edf2f7;

  /* Surfaces */
  --card-bg:    #ffffff;
  --glass:      rgba(255,255,255,.72);
  --glass-border: rgba(255,255,255,.18);

  /* Shape & depth */
  --radius:     0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.5rem;
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 50px rgba(0,0,0,.14);
  --shadow-glow:0 4px 30px rgba(30,58,95,.18);

  /* Motion */
  --ease:       cubic-bezier(.4, 0, .2, 1);
  --ease-bounce:cubic-bezier(.34, 1.56, .64, 1);

  /* Type */
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head:  'Space Grotesk', 'Inter', sans-serif;
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  margin: 0;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::selection {
  background: rgba(252,209,22,.3);
  color: var(--dark);
}
html { scroll-padding-top: 80px; }

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.cet-navbar {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 40%, var(--primary) 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  padding: .65rem 0;
  position: relative;
  z-index: 1000;
}
.cet-navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cm-green) 0%, var(--cm-green) 33%, var(--cm-yellow) 33%, var(--cm-yellow) 66%, var(--cm-red) 66%);
}
.cet-navbar .brand-logo {
  height: 36px;
  width: auto;
  border-radius: 8px;
  transition: transform .2s var(--ease-bounce);
}
.cet-navbar .brand-logo:hover { transform: rotate(-8deg) scale(1.05); }
.cet-navbar .navbar-brand {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #fff !important;
}
.cet-navbar .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
  padding: .45rem .85rem !important;
  border-radius: .55rem;
  transition: all .2s var(--ease);
  font-size: .92rem;
  position: relative;
}
.cet-navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}
.cet-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.14);
}
.cet-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px;
  background: var(--cm-yellow);
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.cet-footer {
  background: var(--darker);
  position: relative;
  overflow: hidden;
}
.cet-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cm-green), var(--cm-yellow), var(--cm-red));
}
.cet-footer .text-muted { color: rgba(255,255,255,.4) !important; }
.cet-footer .fw-bold { color: var(--cm-yellow); }

/* ════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(160deg, var(--darker) 0%, var(--dark) 30%, var(--primary) 70%, var(--primary-lt) 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(252,209,22,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  animation: heroOrb1 8s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,122,94,.1) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
  animation: heroOrb2 10s ease-in-out infinite;
}
@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, 20px) scale(1.1); }
}
@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -20px) scale(1.05); }
}

.flag-strip {
  height: 4px; width: 70px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cm-green), var(--cm-yellow), var(--cm-red));
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.hero-title .text-warning {
  background: linear-gradient(135deg, var(--cm-yellow), #f0a830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  line-height: 1.7;
}

/* Floating language cards */
.hero-graphic { position: relative; width: 340px; height: 280px; }
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  color: #fff;
  animation: heroFloat 5s ease-in-out infinite;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hero-card:hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  border-color: rgba(252,209,22,.3);
}
.hero-card.card1 { top: 0; left: 0; animation-delay: 0s; }
.hero-card.card2 { top: 15px; right: 0; animation-delay: 1.2s; }
.hero-card.card3 { bottom: 40px; left: 10px; animation-delay: 2.4s; }
.hero-card.card4 { bottom: 0; right: 10px; animation-delay: .6s; }
.hero-card-lang {
  font-size: .62rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--cm-yellow); font-weight: 700; margin-bottom: .15rem;
}
.hero-card-text { font-size: .88rem; line-height: 1.4; }
.hero-card-text small { opacity: .5; font-size: .72rem; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ════════════════════════════════════════════════════
   LANGUAGE BADGES
════════════════════════════════════════════════════ */
.lang-badge {
  background: linear-gradient(135deg, #fff, var(--bg-light));
  color: var(--primary);
  border: 1.5px solid var(--border);
  font-weight: 600;
  font-size: .78rem;
  padding: .35em .85em;
  border-radius: 2rem;
  transition: all .2s var(--ease);
}
.lang-badge:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════════════ */
.section-title {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: var(--primary); letter-spacing: -.02em;
}

/* ════════════════════════════════════════════════════
   FEATURE CARDS
════════════════════════════════════════════════════ */
.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cm-green), var(--cm-yellow));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* ════════════════════════════════════════════════════
   STEP CIRCLES
════════════════════════════════════════════════════ */
.step-circle {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(30,58,95,.3);
  transition: transform .3s var(--ease-bounce);
}
.step-circle:hover { transform: scale(1.1) rotate(-5deg); }

/* ════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--cm-green) 0%, #004d39 60%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(252,209,22,.12) 0%, transparent 70%);
  top: -80px; right: 10%;
  border-radius: 50%;
}

/* ════════════════════════════════════════════════════
   HOME MINIMAL — CLEAN CANVAS
════════════════════════════════════════════════════ */

/* Canvas Base */
.minimal-canvas {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  min-height: 100vh;
  padding: 6rem 0 4rem;
  position: relative;
}
.minimal-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(0,122,94,.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(252,209,22,.03) 0%, transparent 50%);
  pointer-events: none;
}
.minimal-canvas .container {
  max-width: 1300px;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════
   HERO V2 — CINEMATIC DARK
   Full-viewport dark hero  ·  Cameroon ambient glows
   Cycling headline  ·  Glassmorphic language cards
════════════════════════════════════════════════════ */
.hero-v2 {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #060e1a 0%, #091525 55%, #0c1d3a 100%);
  overflow: hidden;
  padding: 8rem 0 7rem;
}
/* Dot-grid texture */
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient glow orbs ──────────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,122,94,.28) 0%, transparent 65%);
  top: -220px; left: -160px;
  animation: heroOrb1 20s ease-in-out infinite;
}
.hero-orb--2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(252,209,22,.16) 0%, transparent 65%);
  top: 15%; right: 0%;
  animation: heroOrb2 25s ease-in-out infinite;
}
.hero-orb--3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(206,17,38,.16) 0%, transparent 65%);
  bottom: 5%; right: 15%;
  animation: heroOrb3 30s ease-in-out infinite;
}
@keyframes heroOrb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(70px,-50px) scale(1.12); }
  66%      { transform: translate(-40px,60px) scale(.92); }
}
@keyframes heroOrb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-90px,70px) scale(1.18); }
}
@keyframes heroOrb3 {
  0%,100% { transform: translate(0,0); }
  40%      { transform: translate(55px,-80px) scale(1.08); }
  70%      { transform: translate(-35px,35px) scale(.93); }
}

/* ── Main content grid ──────────────────────────── */
.hero-v2-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* ── Eyebrow badge ──────────────────────────────── */
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 2rem;
  padding: .45rem 1.15rem;
  margin-bottom: 2.2rem;
}
.hero-flag-badge  { font-size: 1.05rem; line-height: 1; }
.hero-eyebrow-sep { color: rgba(255,255,255,.2); }
.hero-eyebrow-text { color: rgba(255,255,255,.55); }

/* ── Headline with cycling word ─────────────────── */
.hero-v2-heading {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.0;
  margin: 0 0 2rem;
}
.hero-hl-top {
  display: block;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  color: rgba(255,255,255,.88);
}
.hero-hl-cycle-wrap {
  display: block;
  font-size: clamp(4.2rem, 9.5vw, 8.5rem);
  height: 1.06em;
  overflow: hidden;
  position: relative;
}
.hero-hl-cycle {
  display: block;
  position: absolute;
  left: 0; top: 0;
  background: linear-gradient(90deg, var(--cm-yellow) 0%, #ffe97a 55%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hlCycle 12s infinite;
  opacity: 0;
  transform: translateY(80%);
}
.hero-hl-cycle:nth-child(1) { animation-delay:  0s; }
.hero-hl-cycle:nth-child(2) { animation-delay:  3s; }
.hero-hl-cycle:nth-child(3) { animation-delay:  6s; }
.hero-hl-cycle:nth-child(4) { animation-delay:  9s; }
@keyframes hlCycle {
  0%    { opacity: 0; transform: translateY(80%);  }
  5%    { opacity: 1; transform: translateY(0);    }
  20%   { opacity: 1; transform: translateY(0);    }
  28%   { opacity: 0; transform: translateY(-80%); }
  100%  { opacity: 0; transform: translateY(-80%); }
}
.hero-hl-bot {
  display: block;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  background: linear-gradient(90deg, var(--cm-green-lt), var(--cm-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ───────────────────────────────────── */
.hero-v2-sub {
  font-size: 1.12rem;
  line-height: 1.88;
  color: rgba(255,255,255,.55);
  max-width: 540px;
  margin: 0 0 2.5rem;
}

/* ── CTA buttons ────────────────────────────────── */
.hero-v2-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-cta-main {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #060e1a;
  background: linear-gradient(135deg, var(--cm-yellow), #ffe87a);
  padding: .95rem 2.2rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 8px 30px rgba(252,209,22,.3);
  text-decoration: none;
}
.hero-cta-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: translateX(-100%);
  transition: transform .55s var(--ease);
  pointer-events: none;
}
.hero-cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(252,209,22,.5);
  color: #060e1a;
}
.hero-cta-main:hover::before { transform: translateX(100%); }
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  background: transparent;
  padding: .95rem 2.2rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.22);
  transition: all .25s var(--ease);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-decoration: none;
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.45);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Trust chips (dark variant on hero) ─────────── */
.hero-v2-trust {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
}
.trust-chip-v2 {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2rem;
  padding: .3rem .85rem;
}
.trust-chip-v2 i { color: var(--cm-green-lt); font-size: .7rem; }

/* ── Language cards — right column ──────────────── */
.hero-v2-cards {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  z-index: 2;
}
.hero-card-v2 {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1rem;
  padding: 1.1rem 1.35rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  animation: cardSlideIn .6s var(--ease-bounce) both;
}
.hero-card-v2--1 { animation-delay: .1s;  }
.hero-card-v2--2 { animation-delay: .22s; }
.hero-card-v2--3 { animation-delay: .34s; }
.hero-card-v2--4 { animation-delay: .46s; }
.hero-card-v2--5 { animation-delay: .58s; }
.hero-card-v2--6 { animation-delay: .70s; }
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
}
.hero-card-v2--1::before { background: var(--cm-green); }
.hero-card-v2--2::before { background: var(--cm-yellow); }
.hero-card-v2--3::before { background: var(--cm-red); }
.hero-card-v2--4::before { background: linear-gradient(90deg, var(--cm-green), var(--cm-yellow)); }
.hero-card-v2--5::before { background: linear-gradient(90deg, var(--cm-yellow), var(--cm-red)); }
.hero-card-v2--6::before { background: var(--cm-green-lt); }
.hero-card-v2:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  transform: translateX(-6px);
}
.hero-card-lang {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-bottom: .25rem;
}
.hero-card-phrase {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: .15rem;
}
.hero-card-meaning {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
}

/* ── Footer: scroll cue + Cameroon tricolor ──────── */
.hero-v2-foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.28);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .5rem;
  text-decoration: none;
  transition: color .25s;
  animation: scrollBounce 2.8s ease-in-out infinite;
}
.hero-scroll-cue:hover { color: rgba(255,255,255,.65); }
.hero-scroll-cue i { font-size: .85rem; }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
.hero-cm-tricolor {
  width: 100%;
  height: 4px;
  display: flex;
}
.hero-cm-tricolor span { flex: 1; }

/* ── Bottom wave: dark → light canvas ───────────── */
.hero-wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 4;
  line-height: 0;
  pointer-events: none;
}
.hero-wave-bottom svg {
  width: 100%;
  height: 72px;
  display: block;
}



/* Feature Row (3 Columns) */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}
.feature-box {
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(248,250,252,.8));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 8px 24px rgba(13, 31, 53, 0.08);
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--cm-green), var(--cm-yellow), var(--cm-red));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.feature-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0), rgba(0,122,94,.05));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.feature-box:hover {
  background: linear-gradient(135deg, rgba(255,255,255,1), rgba(248,250,252,1));
  box-shadow: 0 16px 40px rgba(13, 31, 53, 0.15);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0,122,94,.2);
}
.feature-box:hover::before {
  opacity: 1;
}
.feature-box:hover::after {
  opacity: 1;
}
.feature-box .icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(30,58,95,.3);
  transition: transform 0.4s var(--ease);
}
.feature-box:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}
.feature-box h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  transition: color 0.4s var(--ease);
}
.feature-box:hover h3 {
  color: var(--primary);
}
.feature-box p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
  transition: color 0.4s var(--ease);
}
.feature-box:hover p {
  color: var(--text);
}

/* Shop Section (Minimal) */
.shop-section {
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  background: linear-gradient(180deg, rgba(248,250,252,.5), rgba(255,255,255,0));
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
  background: linear-gradient(135deg, var(--dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.link-arrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.8);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.link-arrow:hover {
  gap: 0.75rem;
  color: var(--primary-lt);
  background: rgba(255,255,255,1);
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  transform: translateY(-2px);
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.shop-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--ease);
  position: relative;
}
.shop-item:hover {
  transform: translateY(-6px);
}
.shop-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-subtle), rgba(240,248,255,.8));
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(13, 31, 53, 0.1);
  border: 1px solid rgba(255,255,255,.5);
}
.shop-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,122,94,.1), rgba(252,209,22,.1));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.shop-item:hover .shop-img::before {
  opacity: 1;
}
.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.shop-item:hover .shop-img img {
  transform: scale(1.08);
}
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(240,248,255,.6));
}
.shop-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.5rem;
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}
.shop-item:hover .shop-info h4 {
  color: var(--primary);
}
.shop-info .price {
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 600;
}
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(248,250,252,.8));
  border-radius: var(--radius-xl);
  color: var(--text-soft);
  box-shadow: 0 12px 32px rgba(13, 31, 53, 0.1);
  border: 1px solid rgba(255,255,255,.5);
}
.empty-state p { margin-bottom: 1.5rem; }

/* ─────────────────────────────────────────────────────
   TRUST CHIP — light variant (reusable)
───────────────────────────────────────────────────── */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 2rem;
  padding: .28rem .75rem;
}
.trust-chip i {
  color: var(--cm-green);
  font-size: .7rem;
}

/* ─────────────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────────────── */
.home-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 2.5rem 0 3.5rem;
  padding: 1.6rem 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,252,255,.95));
  border: 1px solid rgba(30,58,95,.1);
  border-radius: var(--radius-xl);
  box-shadow:
    0 12px 40px rgba(13,31,53,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
}
.home-stats-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cm-green) 0%, var(--cm-green) 33%,
              var(--cm-yellow) 33%, var(--cm-yellow) 66%,
              var(--cm-red) 66%);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 2.5rem;
  position: relative;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--darker), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: .3rem;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(30,58,95,.15), transparent);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────
   LANGUAGE MARQUEE
───────────────────────────────────────────────────── */
.lang-marquee-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--darker) 0%, var(--primary) 50%, #004a32 100%);
  position: relative;
  margin-bottom: 5rem;
}
.lang-marquee-section::before,
.lang-marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.lang-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--darker), transparent);
}
.lang-marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, #004a32, transparent);
}
.lang-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.lang-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lang-marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1.4rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  text-transform: uppercase;
}
.lang-marquee-pill::before {
  content: '✦';
  font-size: .55rem;
  color: var(--cm-yellow);
  opacity: .7;
}

/* ─────────────────────────────────────────────────────
   SECTION META (shared heading system)
───────────────────────────────────────────────────── */
.home-section {
  margin-bottom: 5.5rem;
}
.home-section-meta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.home-section-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--cm-green);
  background: rgba(0,122,94,.08);
  border: 1px solid rgba(0,122,94,.18);
  padding: .3rem .85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.home-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--darker);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: .9rem;
  background: linear-gradient(135deg, var(--darker) 0%, var(--primary) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin: 0;
}

/* ─────────────────────────────────────────────────────
   FEATURES — upgraded
───────────────────────────────────────────────────── */
.feature-box-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(30,58,95,.04);
  line-height: 1;
  letter-spacing: -.05em;
  -webkit-user-select: none;
  user-select: none;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1.2rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.feature-box:hover .feature-link {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────── */
.hiw-section .home-section-kicker {
  color: var(--primary);
  background: rgba(30,58,95,.07);
  border-color: rgba(30,58,95,.15);
}
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.hiw-step {
  background: linear-gradient(160deg, #fff 0%, #f8f9ff 100%);
  border: 1px solid rgba(30,58,95,.09);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  box-shadow: 0 8px 28px rgba(13,31,53,.07);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hiw-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,31,53,.13);
}
.hiw-step-num {
  position: absolute;
  top: -1.1rem;
  left: 2rem;
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--primary), #2a5290);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 4px 14px rgba(30,58,95,.3);
}
.hiw-step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(30,58,95,.25);
}
.hiw-step h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--darker);
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.hiw-step p {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}
.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  padding-top: 5rem; /* vertically center with card body */
}

/* ─────────────────────────────────────────────────────
   FINAL CTA SECTION
───────────────────────────────────────────────────── */
.home-final-cta-section {
  padding: 5rem 0 5rem;
}
.home-final-cta-section .final-cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 5rem 3rem;
  text-align: center;
  background:
    radial-gradient(800px 600px at 10% 120%, rgba(0,122,94,.22), transparent 55%),
    radial-gradient(700px 500px at 90% -20%, rgba(30,58,95,.4), transparent 60%),
    linear-gradient(145deg, #060e1a 0%, #0d1f35 40%, #0a2616 100%);
  box-shadow:
    0 40px 100px rgba(13,31,53,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.final-cta-orb1 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,209,22,.14), transparent 65%);
  top: -140px; right: -80px;
  pointer-events: none;
  animation: orbFloat1 14s ease-in-out infinite;
}
.final-cta-orb2 {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,94,.16), transparent 65%);
  bottom: -90px; left: -60px;
  pointer-events: none;
  animation: orbFloat2 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-40px, 40px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, -30px) scale(1.06); }
}
.final-cta-flag {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}
.final-cta-flag span {
  display: inline-block;
  width: 28px;
  height: 6px;
  border-radius: 1px;
}
.final-cta-flag span:first-child { border-radius: 3px 0 0 3px; }
.final-cta-flag span:last-child  { border-radius: 0 3px 3px 0; }
.final-cta-kicker {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cm-yellow);
  opacity: .9;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.final-cta-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}
.final-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.68);
  max-width: 58ch;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.final-cta-btn-primary {
  background: linear-gradient(135deg, var(--cm-green), #009d71) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(0,122,94,.45) !important;
  transition: all .3s var(--ease) !important;
  padding: .9rem 2.2rem !important;
}
.final-cta-btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 44px rgba(0,122,94,.55) !important;
}
.final-cta-btn-ghost {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.3) !important;
  font-weight: 700;
  transition: all .3s var(--ease) !important;
  padding: .9rem 2.2rem !important;
}
.final-cta-btn-ghost:hover {
  background: rgba(255,255,255,.2) !important;
  transform: translateY(-3px) !important;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .minimal-canvas {
    padding: 4rem 0 2rem;
  }
  /* Hero V2 mobile */
  .hero-v2 {
    padding: 6rem 0 5rem;
  }
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.25rem;
  }
  .hero-v2-copy {
    text-align: center;
  }
  .hero-v2-eyebrow {
    display: inline-flex;
  }
  .hero-hl-cycle-wrap {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }
  .hero-hl-top,
  .hero-hl-bot {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-v2-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-v2-ctas {
    justify-content: center;
  }
  .hero-v2-trust {
    justify-content: center;
  }
  .hero-v2-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .hero-card-v2:hover {
    transform: translateY(-4px);
  }
  .hero-orb--1 { width: 350px; height: 350px; }
  .hero-orb--2 { width: 280px; height: 280px; }
  .hero-orb--3 { width: 220px; height: 220px; }
  .features-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .section-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  /* Stats strip */
  .home-stats-strip {
    padding: 1.25rem 1rem;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .stat-item { padding: .5rem 1rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-sep { display: none; }
  /* marquee */
  .lang-marquee-section { margin-bottom: 3rem; }
  /* features section heading */
  .home-section-meta { padding: 0 1rem; }
  /* how it works */
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hiw-connector {
    padding-top: 0;
    transform: rotate(90deg);
    margin: -0.5rem auto;
  }
  /* trust chips */
  .hero-trust-row { justify-content: center; }
  /* final cta */
  .home-final-cta-section .final-cta-inner {
    padding: 3.5rem 1.5rem;
    border-radius: 1.25rem;
  }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-btn-primary,
  .final-cta-btn-ghost { width: 100%; max-width: 320px; justify-content: center; }
}
.shop-feed-empty h5 {
  font-family: var(--font-head);
  margin: 0 0 .6rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
}
.shop-feed-empty p {
  color: #5a6b7f;
  margin: 0 auto 1.3rem;
  max-width: 62ch;
  line-height: 1.8;
  font-size: .95rem;
}
.shop-feed-empty .btn {
  transition: all .32s var(--ease);
}
.shop-feed-empty .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,58,95,.18);
}

.home-shop-spotlight {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem;
  background: linear-gradient(135deg, #fff7de 0%, #fff 48%, #eef8ff 100%);
  border-radius: 1.4rem;
  border: 1.5px solid #f0d9a8;
  box-shadow: 0 12px 36px rgba(13,31,53,.08);
  overflow: hidden;
  position: relative;
  animation: spotlightSlide 1.9s var(--ease) both;
  animation-delay: 1s;
}
@keyframes spotlightSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-shop-spotlight::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -150px;
  top: -130px;
  background: radial-gradient(circle, rgba(252,209,22,.26), transparent 70%);
  pointer-events: none;
}
.shop-copy {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.shop-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: .7rem 0 .8rem;
  color: var(--dark);
  font-weight: 900;
  letter-spacing: -.02em;
}
.shop-copy p {
  margin: 0;
  color: #5a6b7f;
  line-height: 1.85;
  font-size: 1rem;
}
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.shop-actions .btn {
  transition: all .32s var(--ease);
}
.shop-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,58,95,.18);
}

.home-final-cta {
  margin-top: 1.6rem;
}
.home-final-cta .final-cta-inner {
  padding: 2.5rem 1.8rem;
  text-align: center;
  background: linear-gradient(135deg, #0a1628 0%, var(--darker) 25%, #1a3a52 65%, #004a32 100%);
  border-radius: 1.6rem;
  border-color: transparent;
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 20px 60px rgba(13,31,53,.24),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.home-final-cta .final-cta-inner::before {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,209,22,.2), transparent 70%);
  animation: orb3 18s ease-in-out infinite;
}
@keyframes orb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 50px) scale(1.1); }
}
.home-final-cta .final-cta-inner::after {
  content: '';
  position: absolute;
  inset: auto auto -80px -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,94,.15), transparent 70%);
  pointer-events: none;
}
.home-final-cta .home-section-kicker {
  background: rgba(255,255,255,.12);
  border-color: rgba(252,209,22,.4);
  color: var(--cm-yellow);
  font-weight: 900;
}
.home-final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  max-width: 20ch;
  margin: 1rem auto;
  letter-spacing: -.02em;
  line-height: 1.1;
  font-weight: 900;
  position: relative;
  z-index: 2;
}
.home-final-cta p {
  color: rgba(255,255,255,.78);
  max-width: 62ch;
  margin: 1rem auto 1.5rem;
  line-height: 1.85;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}
.home-final-cta .home-actions {
  justify-content: center;
  margin-top: 1.8rem;
  position: relative;
  z-index: 2;
  animation: none;
}
.home-final-cta .home-actions .btn {
  transition: all .32s var(--ease);
}
.home-final-cta .home-actions .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

@keyframes homeRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════
   PAGE TITLE
════════════════════════════════════════════════════ */
.page-title {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700;
  color: var(--primary); letter-spacing: -.01em;
}

/* ════════════════════════════════════════════════════
   CARDS
════════════════════════════════════════════════════ */
.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s var(--ease);
}
.card:hover { box-shadow: var(--shadow-sm); }

/* ════════════════════════════════════════════════════
   TRANSLATOR PAGE
════════════════════════════════════════════════════ */
.translator-wrapper {
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
  min-height: calc(100vh - 70px);
}
.textarea-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s var(--ease);
}
.textarea-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,58,95,.08), var(--shadow);
}
.textarea-label {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem .85rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
}
.translator-area {
  border: none !important;
  border-radius: 0 !important;
  resize: none;
  font-size: 1.02rem;
  line-height: 1.7;
  box-shadow: none !important;
  padding: 1rem;
  font-family: var(--font-body);
}
.translator-area:focus { outline: none; }
.result-box .translator-result {
  min-height: 190px;
  padding: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
  white-space: pre-wrap;
}
.textarea-footer {
  padding: .35rem .85rem;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  font-size: .78rem;
}
.placeholder-text { font-style: italic; opacity: .45; }

/* History */
.badge-lang {
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  color: #fff; font-weight: 600; font-size: .68rem;
  padding: .3em .7em; border-radius: 1rem;
}
.history-item {
  cursor: pointer;
  transition: all .2s var(--ease);
  border-left: 3px solid transparent;
}
.history-item:hover {
  background: var(--bg-light);
  border-left-color: var(--primary);
}
.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.btn {
  font-weight: 600;
  border-radius: var(--radius);
  transition: all .2s var(--ease);
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border: none;
  box-shadow: 0 2px 8px rgba(30,58,95,.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-lt), var(--primary-xlt));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,58,95,.25);
}
.btn-warning {
  background: linear-gradient(135deg, var(--cm-yellow), #e8a020);
  border: none; color: var(--dark);
  box-shadow: 0 2px 8px rgba(252,209,22,.25);
}
.btn-warning:hover {
  background: linear-gradient(135deg, #ffe066, var(--cm-yellow));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(252,209,22,.35);
  color: var(--dark);
}
.btn-success {
  background: linear-gradient(135deg, var(--cm-green), var(--cm-green-lt));
  border: none;
  box-shadow: 0 2px 8px rgba(0,122,94,.2);
}
.btn-success:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,122,94,.25);
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-lg {
  padding: .75rem 1.8rem;
  font-size: 1rem;
  border-radius: .65rem;
}

/* ════════════════════════════════════════════════════
   ADMIN-SPECIFIC
════════════════════════════════════════════════════ */
.admin-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.admin-hero::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(252,209,22,.1), transparent 70%);
  top: -60px; right: -40px;
  border-radius: 50%;
}
.admin-kicker {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--cm-yellow); font-weight: 700;
}
.admin-hero-title {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800; margin: .2rem 0 .4rem;
}
.admin-hero-text {
  color: rgba(255,255,255,.65);
  font-size: .88rem; margin: 0; max-width: 500px;
}

.admin-mini-stat {
  display: flex; flex-direction: column; align-items: center;
  gap: .25rem; padding: .85rem 1rem;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all .2s var(--ease);
  color: var(--text);
}
.admin-mini-stat:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--primary);
}
.admin-mini-stat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.admin-mini-stat.active .admin-mini-label { color: rgba(255,255,255,.75); }
.admin-mini-label {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 600;
}
.admin-mini-stat strong { font-size: 1.4rem; font-weight: 800; }

.admin-surface-card {
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
}

.admin-orders-table { font-size: .88rem; }
.admin-orders-table thead { background: var(--bg-light); }
.admin-orders-table th {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .07em;
  font-weight: 700; color: var(--muted);
  border-bottom: 2px solid var(--border); padding: .75rem; white-space: nowrap;
}
.admin-orders-table td { vertical-align: middle; padding: .75rem; }
.admin-orders-table tbody tr { transition: background .15s; }
.admin-orders-table tbody tr:hover { background: var(--bg-light); }

.admin-order-design { display: flex; align-items: center; gap: .75rem; }
.admin-order-thumb {
  width: 48px; height: 48px;
  border-radius: .55rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem; flex-shrink: 0;
}
.admin-order-thumb img { width: 100%; height: 100%; object-fit: cover; }

.admin-wa-link {
  color: #128c7e; font-weight: 600; font-size: .82rem;
  transition: color .15s; white-space: nowrap;
}
.admin-wa-link:hover { color: #075e54; }

.admin-status {
  display: inline-block;
  padding: .3em .7em; border-radius: 2rem;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
}
.admin-status-pending      { background: #fef3c7; color: #92400e; }
.admin-status-contacted    { background: #dbeafe; color: #1e40af; }
.admin-status-in_production { background: #e0e7ff; color: #3730a3; }
.admin-status-completed    { background: #d1fae5; color: #065f46; }
.admin-status-cancelled    { background: #fee2e2; color: #991b1b; }

.admin-order-form {
  display: flex; align-items: center; gap: .4rem;
}
.admin-order-form .form-select { width: auto; min-width: 110px; font-size: .8rem; }
.admin-order-form .form-control { font-size: .8rem; min-width: 100px; }

/* ════════════════════════════════════════════════════
   UTIL
════════════════════════════════════════════════════ */
.letter-spacing-wide { letter-spacing: .1em; }
.font-monospace { font-family: 'JetBrains Mono', 'Courier New', monospace; }

/* ════════════════════════════════════════════════════
   USER NAV AVATAR
════════════════════════════════════════════════════ */
.user-nav-avatar {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--cm-green), var(--cm-green-lt));
  color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .75rem;
  box-shadow: 0 2px 8px rgba(0,122,94,.3);
}

/* ════════════════════════════════════════════════════
   AUTH PAGES (Login / Register)
════════════════════════════════════════════════════ */
.auth-section {
  padding: 0;
  min-height: calc(100vh - 64px);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 600px at -10% 110%, rgba(0,122,94,.18), transparent 55%),
    radial-gradient(700px 500px at 110% -10%, rgba(30,58,95,.22), transparent 60%),
    radial-gradient(500px 400px at 50% 50%, rgba(252,209,22,.05), transparent 70%),
    linear-gradient(145deg, #060e1a 0%, #0d1f35 40%, #0a2818 100%);
}

.auth-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.06), transparent),
    radial-gradient(1px 1px at 70% 65%, rgba(255,255,255,.04), transparent),
    radial-gradient(1px 1px at 45% 80%, rgba(252,209,22,.08), transparent);
  pointer-events: none;
}

.auth-card {
  background: rgba(255,255,255,.97);
  border-radius: 1.5rem;
  padding: 2.75rem;
  box-shadow:
    0 40px 80px rgba(0,0,0,.4),
    0 8px 24px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.6);
  position: relative;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--cm-green), var(--cm-yellow), var(--cm-red));
}

.auth-card-header {
  text-align: center; margin-bottom: 1.75rem;
}
.auth-icon {
  width: 68px; height: 68px;
  margin: 0 auto 1.1rem;
  background: linear-gradient(135deg, var(--primary), var(--cm-green));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow:
    0 8px 28px rgba(30,58,95,.35),
    0 0 0 6px rgba(30,58,95,.06);
}
.auth-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 1.75rem;
  color: var(--text); margin: 0 0 .4rem;
  letter-spacing: -.02em;
}
.auth-subtitle {
  color: var(--muted); font-size: .92rem; margin: 0;
}
.auth-form .input-group-text {
  background: #f8fafc; border-color: rgba(30,58,95,.12);
  color: var(--muted); font-size: .85rem;
}
.auth-form .form-control {
  border-color: rgba(30,58,95,.15); font-size: .9rem;
  border-radius: .65rem;
  padding: .65rem .9rem;
}
.auth-form .input-group .form-control {
  border-radius: 0 .65rem .65rem 0;
}
.auth-form .input-group .input-group-text {
  border-radius: .65rem 0 0 .65rem;
}
.auth-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,.1);
}
.auth-btn {
  padding: .8rem 1.5rem; font-weight: 800; font-size: .97rem;
  border-radius: .85rem;
  background: linear-gradient(135deg, var(--primary) 0%, #005c47 100%);
  border: none; color: #fff;
  box-shadow: 0 8px 24px rgba(30,58,95,.35), 0 2px 6px rgba(0,0,0,.15);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  letter-spacing: .01em;
}
.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(30,58,95,.42), 0 4px 10px rgba(0,0,0,.18);
  background: linear-gradient(135deg, #264d82 0%, #007a5e 100%);
  color: #fff;
}
.auth-footer {
  text-align: center; margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(30,58,95,.08);
  font-size: .88rem;
}
.auth-footer a {
  color: var(--cm-green); font-weight: 700;
  text-decoration: none;
}
.auth-footer a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════
   ACCOUNT PAGE
════════════════════════════════════════════════════ */
.account-section {
  background: linear-gradient(180deg, #f0f5fd 0%, #f8fafb 60%, var(--bg-light) 100%);
  min-height: calc(100vh - 180px);
  padding-bottom: 3rem;
}

.account-hero {
  background:
    linear-gradient(135deg, var(--darker) 0%, var(--primary) 45%, #00684f 80%, #004d3a 100%);
  background-size: 300% 300%;
  animation: account-bg-shift 10s ease infinite;
  border-radius: 1.4rem;
  padding: 2.25rem 2.5rem;
  color: #fff;
  display: flex; align-items: center; gap: 1.75rem;
  box-shadow:
    0 20px 50px rgba(13,31,53,.3),
    0 4px 14px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.06);
  position: relative; overflow: hidden;
  flex-wrap: wrap;
}

@keyframes account-bg-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.account-hero::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(252,209,22,.1), transparent 65%);
  top: -130px; right: -60px;
  border-radius: 50%;
  pointer-events: none;
}

.account-hero::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0,166,118,.12), transparent 65%);
  bottom: -80px; left: 5%;
  border-radius: 50%;
  pointer-events: none;
}

.account-hero-avatar {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--cm-green), #009d71);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.9rem;
  box-shadow:
    0 6px 20px rgba(0,122,94,.4),
    0 0 0 4px rgba(255,255,255,.12);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.account-hero-info { flex: 1; min-width: 200px; position: relative; z-index: 1; }
.account-hero-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 1.65rem; margin: 0 0 .2rem;
  letter-spacing: -.02em;
}
.account-hero-email { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }
.account-hero-since { color: rgba(255,255,255,.4); font-size: .75rem; margin: .2rem 0 0; }
.account-hero-stats {
  display: flex; gap: 1.25rem;
  position: relative; z-index: 1;
}
.account-stat {
  text-align: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  padding: .8rem 1.3rem;
  border-radius: .9rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.account-stat:hover {
  background: rgba(255,255,255,.16);
}
.account-stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 1.6rem; line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.account-stat-label {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.5);
}

.account-tabs .nav-link {
  font-weight: 600; font-size: .88rem; color: var(--muted);
  border: none; border-radius: 999px;
  padding: .5rem 1.1rem;
  transition: all .2s var(--ease);
}
.account-tabs .nav-link:hover {
  color: var(--primary);
  background: rgba(30,58,95,.06);
}
.account-tabs .nav-link.active {
  color: var(--primary);
  background: rgba(30,58,95,.1);
  font-weight: 700;
}

.account-design-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(30,58,95,.08);
  overflow: hidden;
  transition: all .22s var(--ease);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.account-design-card:hover {
  box-shadow: 0 12px 32px rgba(30,58,95,.14);
  transform: translateY(-3px);
  border-color: rgba(30,58,95,.15);
}
.account-design-thumb {
  height: 140px; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.account-design-thumb img { width: 100%; height: 100%; object-fit: contain; }
.account-design-body { padding: .75rem; }

/* Orders table */
.account-orders-table thead th {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); font-weight: 700; border-bottom: 2px solid var(--border);
}
.account-order-thumb {
  width: 36px; height: 36px; border-radius: .4rem;
  background: var(--bg-light); border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--muted); font-size: .7rem;
}
.account-order-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Status badges - public */
.account-status {
  display: inline-flex; align-items: center;
  padding: .25em .6em; border-radius: 1rem;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.account-status-pending      { background: #fef3c7; color: #92400e; }
.account-status-contacted    { background: #dbeafe; color: #1e40af; }
.account-status-in_production { background: #e0e7ff; color: #3730a3; }
.account-status-completed    { background: #d1fae5; color: #065f46; }
.account-status-cancelled    { background: #fee2e2; color: #991b1b; }

/* Settings cards */
.account-settings-card {
  border-radius: .85rem !important;
  border: 1px solid var(--border) !important;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-section { padding: 3.5rem 0 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-graphic { display: none; }
  .home-hero,
  .home-showcase,
  .home-value-grid,
  .home-ribbon,
  .translator-grid { grid-template-columns: 1fr; }
  .home-hero { padding: 1rem; }
  .home-title { max-width: 100%; }
  .home-hero-stage { min-height: 380px; }
  .stage-primary,
  .stage-secondary { width: 100%; position: relative; right: auto; bottom: auto; }
  .stage-secondary { margin-top: .9rem; }
  .chip-three { left: auto; right: 1rem; top: auto; bottom: 6.1rem; transform: none; }
  .home-shop-spotlight,
  .shop-actions { flex-direction: column; align-items: stretch; }
  .shop-actions .btn,
  .home-actions .btn { width: 100%; }
  .hero-right { width: 100%; }
  .admin-hero { flex-direction: column; text-align: center; }
  .auth-card { padding: 1.5rem; }
  .account-hero { flex-direction: column; text-align: center; padding: 1.5rem; }
  .account-hero-stats { justify-content: center; }
}

@media (max-width: 1100px) {
  .home-hero,
  .home-showcase,
  .translator-grid { grid-template-columns: 1fr; }
  .home-value-grid,
  .product-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .home-ribbon { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .product-preview-grid { grid-template-columns: 1fr; }
  .product-preview-actions { flex-direction: column; }
}
