/* =========================================================================
   Traduka — Colors & Type Foundations
   Used across all UI kits, slides, and prototypes in this design system.
   ========================================================================= */

/* ----------- Web fonts (Google Fonts substitutes — see README) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* =====================================================================
     BRAND COLOR — derived directly from the Traduka logo
     Navy is the trust anchor. Orange is the accent. Coral is the warm bridge.
     ===================================================================== */
  --traduka-navy:        #0B1F5C;   /* refined logo navy (#002070 deepened) */
  --traduka-navy-deep:   #060F35;   /* near-black navy for dense surfaces  */
  --traduka-navy-ink:    #02061A;   /* type on light when navy is too soft */
  --traduka-orange:      #FF6A1F;   /* primary accent (refined #FF7000)    */
  --traduka-orange-soft: #FF8A4D;   /* hover / lighter accent              */
  --traduka-coral:       #FF8E6B;   /* coral bridge (refined #FF7040)      */
  --traduka-peach:       #FFE6D8;   /* tint surface, badges                */
  --traduka-mist:        #EEF2FF;   /* navy tint surface, glass plates     */

  /* =====================================================================
     NEUTRAL SCALE — cool, slightly navy-leaning slate.
     Mirrors Linear / Stripe density. Never pure grey.
     ===================================================================== */
  --n-0:   #FFFFFF;
  --n-25:  #FBFCFE;
  --n-50:  #F6F8FC;
  --n-75:  #F0F3F9;
  --n-100: #E7ECF4;
  --n-150: #D9DFEC;
  --n-200: #C6CEDE;
  --n-300: #A8B1C5;
  --n-400: #7E8AA2;
  --n-500: #5C6680;
  --n-600: #424B65;
  --n-700: #2C3450;
  --n-800: #1A2140;
  --n-900: #0E1430;
  --n-950: #060B22;

  /* =====================================================================
     SEMANTIC — feedback states. Muted, premium, never neon.
     ===================================================================== */
  --success:        #1E9E6A;
  --success-soft:   #E4F5EC;
  --warning:        #E59313;
  --warning-soft:   #FBEFD4;
  --danger:         #DC3A4B;
  --danger-soft:    #FBE6E8;
  --info:           #2C6BE5;
  --info-soft:      #E5EEFD;

  /* =====================================================================
     SEMANTIC TOKENS (light mode) — what UI code should reference.
     ===================================================================== */
  --bg:              var(--n-0);
  --bg-subtle:       var(--n-50);
  --bg-muted:        var(--n-75);
  --bg-elevated:     var(--n-0);
  --bg-inverse:      var(--traduka-navy-deep);

  --surface:         var(--n-0);
  --surface-hover:   var(--n-50);
  --surface-active:  var(--n-75);
  --surface-glass:   color-mix(in oklch, white 72%, transparent);

  --border:          var(--n-100);
  --border-strong:   var(--n-200);
  --border-focus:    var(--traduka-orange);

  --fg:              var(--traduka-navy-ink);   /* primary text */
  --fg-strong:       var(--n-950);
  --fg-muted:        var(--n-500);
  --fg-subtle:       var(--n-400);
  --fg-on-brand:     #FFFFFF;
  --fg-on-accent:    #FFFFFF;
  --fg-link:         var(--traduka-navy);

  --accent:          var(--traduka-orange);
  --accent-hover:    #E85A14;
  --accent-active:   #C94A0E;
  --accent-soft:     var(--traduka-peach);

  --brand:           var(--traduka-navy);
  --brand-hover:     #142C75;
  --brand-active:    #08184A;

  /* =====================================================================
     GRADIENTS — used sparingly for hero, glass plates, accents.
     ===================================================================== */
  --grad-hero:    radial-gradient(120% 80% at 20% 0%, #FFE6D8 0%, transparent 50%),
                  radial-gradient(100% 70% at 100% 10%, #DCE3FB 0%, transparent 55%),
                  linear-gradient(180deg, #FBFCFE 0%, #F6F8FC 100%);
  --grad-accent:  linear-gradient(135deg, #FF6A1F 0%, #FF8E6B 100%);
  --grad-brand:   linear-gradient(135deg, #0B1F5C 0%, #1B3FA8 100%);
  --grad-glow:    radial-gradient(60% 60% at 50% 0%, rgba(255,106,31,0.18), transparent 70%);
  --grad-mesh:    conic-gradient(from 210deg at 50% 50%, #FFE6D8, #DCE3FB, #FFE6D8);

  /* =====================================================================
     TYPOGRAPHY — Geist sans (UI/display), Instrument Serif (editorial accent),
     Geist Mono (code/numerals/language tags).
     ===================================================================== */
  --font-sans:    'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif:   'Instrument Serif', 'Iowan Old Style', 'Apple Garamond', Georgia, serif;
  --font-mono:    'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Type scale — modular, 1.200 ratio, generous on display */
  --t-xs:   12px;
  --t-sm:   14px;
  --t-base: 16px;
  --t-md:   18px;
  --t-lg:   20px;
  --t-xl:   24px;
  --t-2xl:  30px;
  --t-3xl:  36px;
  --t-4xl:  48px;
  --t-5xl:  64px;
  --t-6xl:  80px;
  --t-7xl:  104px;

  /* Line heights */
  --lh-tight:   1.05;
  --lh-snug:    1.2;
  --lh-normal:  1.45;
  --lh-relaxed: 1.6;

  /* Letter spacing — tighten as type grows; widen for ALL-CAPS micro labels */
  --tr-tightest: -0.04em;
  --tr-tight:    -0.02em;
  --tr-normal:    0;
  --tr-wide:      0.04em;
  --tr-wider:     0.12em;

  /* =====================================================================
     SPACING — 4px base. Use semantic spacing for component padding.
     ===================================================================== */
  --s-0:   0;
  --s-1:   4px;
  --s-2:   8px;
  --s-3:   12px;
  --s-4:   16px;
  --s-5:   20px;
  --s-6:   24px;
  --s-8:   32px;
  --s-10:  40px;
  --s-12:  48px;
  --s-16:  64px;
  --s-20:  80px;
  --s-24:  96px;
  --s-32:  128px;
  --s-40:  160px;

  /* =====================================================================
     RADII — generous rounding on cards (16–24), pills for tags & buttons.
     ===================================================================== */
  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-3xl:  40px;
  --r-pill: 999px;

  /* =====================================================================
     SHADOWS — soft, navy-tinted; layered. Never grey-black.
     ===================================================================== */
  --shadow-xs:  0 1px 2px rgba(11,31,92,0.06);
  --shadow-sm:  0 2px 6px rgba(11,31,92,0.06), 0 1px 2px rgba(11,31,92,0.04);
  --shadow-md:  0 8px 20px -6px rgba(11,31,92,0.10), 0 2px 6px rgba(11,31,92,0.05);
  --shadow-lg:  0 18px 40px -12px rgba(11,31,92,0.16), 0 4px 12px rgba(11,31,92,0.06);
  --shadow-xl:  0 32px 70px -20px rgba(11,31,92,0.22), 0 8px 20px rgba(11,31,92,0.08);
  --shadow-pop: 0 24px 48px -16px rgba(255,106,31,0.30), 0 6px 16px rgba(255,106,31,0.12);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.6);

  --ring-focus: 0 0 0 4px rgba(255,106,31,0.22);

  /* =====================================================================
     MOTION — gentle, confident, never bouncy.
     ===================================================================== */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    140ms;
  --dur-base:    220ms;
  --dur-slow:    420ms;

  /* Layout */
  --container:       1200px;
  --container-wide:  1320px;
  --container-prose: 720px;
}

/* =========================================================================
   SEMANTIC HTML — base styling for plain tags so prose looks right out of box
   ========================================================================= */
html { font-family: var(--font-sans); color: var(--fg); background: var(--bg); }
body { font-size: var(--t-base); line-height: var(--lh-normal); letter-spacing: var(--tr-normal); -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); color: var(--fg-strong); margin: 0; }
h1 { font-size: var(--t-6xl); line-height: var(--lh-tight);  letter-spacing: var(--tr-tightest); font-weight: 600; }
h2 { font-size: var(--t-4xl); line-height: var(--lh-snug);   letter-spacing: var(--tr-tight);    font-weight: 600; }
h3 { font-size: var(--t-2xl); line-height: var(--lh-snug);   letter-spacing: var(--tr-tight);    font-weight: 600; }
h4 { font-size: var(--t-xl);  line-height: var(--lh-snug);   letter-spacing: var(--tr-tight);    font-weight: 600; }
h5 { font-size: var(--t-lg);  line-height: var(--lh-snug);   font-weight: 600; }
h6 { font-size: var(--t-base);line-height: var(--lh-snug);   font-weight: 600; }

p  { margin: 0; line-height: var(--lh-relaxed); color: var(--fg); }
small { font-size: var(--t-sm); color: var(--fg-muted); }
code, kbd, pre, samp { font-family: var(--font-mono); font-size: 0.92em; }

/* Editorial serif accent — wrap a single word/phrase for premium feel */
.serif       { font-family: var(--font-serif); font-weight: 400; letter-spacing: 0; font-style: italic; }
.eyebrow     { font-family: var(--font-mono); font-size: var(--t-xs); text-transform: uppercase; letter-spacing: var(--tr-wider); color: var(--accent); font-weight: 500; }
.lang-tag    { font-family: var(--font-mono); font-size: var(--t-xs); text-transform: uppercase; letter-spacing: var(--tr-wide); color: var(--fg-muted); }

a { color: var(--fg-link); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--accent); }

/* Selection */
::selection { background: var(--traduka-peach); color: var(--traduka-navy-ink); }


/* Traduka marketing website — kit-specific styles. Sits on top of colors_and_type.css. */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
body { font-family: var(--font-sans); line-height: var(--lh-normal); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ------- Container ------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

/* ------- Buttons ------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; padding: 12px 20px; border-radius: 12px; border: 1px solid transparent; transition: all var(--dur-base) var(--ease-out); cursor: pointer; white-space: nowrap; }
.btn:focus-visible { outline: none; box-shadow: var(--ring-focus); }
.btn-primary { background: var(--accent); color: white; box-shadow: var(--shadow-pop); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); background: var(--accent-active); }
.btn-secondary { background: var(--traduka-navy); color: white; }
.btn-secondary:hover { background: var(--brand-hover); }
.btn-tertiary { background: white; color: var(--traduka-navy); border-color: var(--border-strong); }
.btn-tertiary:hover { background: var(--n-50); border-color: var(--n-300); }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { background: var(--n-75); }
.btn-link { background: transparent; color: var(--fg); padding: 6px 0; font-size: 15px; }
.btn-link:hover { color: var(--accent); }
.btn-sm { font-size: 13px; padding: 8px 14px; border-radius: 10px; }
.btn-lg { font-size: 16px; padding: 14px 24px; border-radius: 14px; }

/* ------- Eyebrow ------- */
.section-eyebrow { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-weight: 500; }
.section-title { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 600; color: var(--fg-strong); margin: 12px 0 14px; max-width: 720px; }
.section-sub { font-size: 18px; line-height: 1.55; color: var(--fg-muted); max-width: 640px; }
.section { padding: 96px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* ------- Nav ------- */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); background: color-mix(in oklch, white 78%, transparent); border-bottom: 1px solid transparent; transition: all var(--dur-base) var(--ease-out); }
.nav.scrolled { border-bottom-color: var(--border); background: color-mix(in oklch, white 85%, transparent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 22px; color: var(--traduka-navy); letter-spacing: -0.02em; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; color: var(--fg); transition: all var(--dur-fast) var(--ease-out); display: inline-flex; align-items: center; gap: 4px; }
.nav-link:hover { color: var(--accent); background: var(--n-75); }
.nav-link.active { color: var(--traduka-navy); background: var(--traduka-mist); font-weight: 600; }
.nav-link.active:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ------- Hero ------- */
.hero { position: relative; padding: 120px 0 96px; background: var(--grad-hero); overflow: hidden; }
.hero::before { content:''; position: absolute; inset: 0; background: var(--grad-glow); pointer-events:none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 1080px) { .hero-grid { grid-template-columns: 1fr; gap: 64px; } .hero-stage { margin: 0 auto; max-width: 640px; width: 100%; } }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; border-radius: 999px; background: color-mix(in oklch, white 75%, transparent); border: 1px solid color-mix(in oklch, white 60%, transparent); backdrop-filter: blur(12px); font-size: 13px; color: var(--fg); box-shadow: var(--shadow-sm); }
.hero-pill .badge { background: var(--traduka-navy); color: white; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.hero h1 { font-size: clamp(58px, 6.5vw, 44px); line-height: 1.02; letter-spacing: -0.04em; font-weight: 600; color: var(--fg-strong); margin: 22px 0 22px; }
.hero h1 .serif { color: var(--accent); }
.hero p.lede { font-size: 20px; line-height: 1.5; color: var(--fg); max-width: 540px; margin: 0 0 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 32px; display: flex; align-items: center; gap: 18px; font-size: 13px; color: var(--fg-muted); }
.hero-meta .dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; }
.hero-langs { font-family: var(--font-mono); font-size: 13px; color: var(--fg); letter-spacing: 0.04em; margin-top: 12px; opacity: 0.65; }

/* ------- Hero dashboard mockup ------- */
.hero-stage { position: relative; min-height: 540px; }
.dash {
  position: relative;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transform: perspective(2000px) rotateY(-4deg) rotateX(2deg);
  transform-origin: center center;
}
.dash-bar { display: flex; align-items: center; gap: 8px; padding: 14px 16px; background: var(--n-50); border-bottom: 1px solid var(--border); }
.dash-bar .dots { display: flex; gap: 6px; }
.dash-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--n-200); }
.dash-bar .url { margin-left: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); background: white; padding: 5px 10px; border-radius: 6px; border: 1px solid var(--border); }
.dash-body { padding: 20px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dash-col { display:flex; flex-direction: column; gap: 14px; }
.dash-panel { background: var(--n-50); border: 1px solid var(--border); border-radius: 16px; padding: 16px; }
.dash-panel.dark { background: var(--traduka-navy-deep); color: white; border-color: rgba(255,255,255,0.08); }
.dash-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.dash-panel.dark .dash-label { color: rgba(255,255,255,0.5); }
.dash-text { font-size: 16px; line-height: 1.5; color: var(--fg); }
.dash-panel.dark .dash-text { color: white; }
.dash-progress { height: 4px; background: var(--n-100); border-radius: 999px; margin-top: 12px; overflow: hidden; }
.dash-progress .fill { display: block; height: 100%; background: var(--grad-accent); width: 78%; border-radius: 999px; }
.dash-tags { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.dash-tag { font-family: var(--font-mono); font-size: 10px; padding: 3px 8px; border-radius: 999px; background: white; border: 1px solid var(--border); color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.dash-tag.active { background: var(--traduka-peach); color: var(--accent); border-color: transparent; }

/* Floating language cards (hero glassmorphism accents) */
.float-card { position: absolute; padding: 14px 16px; border-radius: 18px;
  background: color-mix(in oklch, white 75%, transparent);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid color-mix(in oklch, white 60%, transparent);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--fg-strong);
  animation: float 7s var(--ease-in-out) infinite;
}
.float-card .flag { width: 32px; height: 32px; border-radius: 10px; background: var(--traduka-peach); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-mono); font-size: 12px; }
.float-card .word { font-weight: 500; }
.float-card .sub { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.04em; }
.float-card:nth-child(2) { animation-delay: -2.3s; }
.float-card:nth-child(3) { animation-delay: -4.7s; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }

/* ------- Trust ------- */
.trust { padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--n-25); }
.trust-label { text-align: center; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-muted); margin-bottom: 28px; }
.trust-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; align-items: center; }
@media (max-width: 900px) { .trust-row { grid-template-columns: repeat(3, 1fr); gap: 24px 20px; } }
.trust-logo { font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.02em; font-size: 22px; color: var(--n-500); text-align: center; opacity: 0.85; transition: all var(--dur-base) var(--ease-out); }
.trust-logo:hover { color: var(--traduka-navy); opacity: 1; }

/* ------- Services ------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { padding: 28px; background: white; border: 1px solid var(--border); border-radius: 20px; transition: all var(--dur-base) var(--ease-out); cursor: pointer; position: relative; overflow: hidden; }
.service-card::after { content:''; position:absolute; inset:0; border-radius: 20px; box-shadow: var(--shadow-md); opacity: 0; transition: opacity var(--dur-base) var(--ease-out); pointer-events:none; }
.service-card:hover { transform: translateY(-4px); border-color: var(--n-150); }
.service-card:hover::after { opacity: 1; }
.service-card:hover .icon-plate { background: var(--accent); color: white; }
.icon-plate { width: 56px; height: 56px; border-radius: 16px; background: var(--traduka-peach); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all var(--dur-base) var(--ease-out); }
.icon-plate svg { width: 28px; height: 28px; stroke-width: 1.75; }
.service-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--fg-strong); margin: 0 0 8px; }
.service-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; }
.service-card .more { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; opacity: 0; transition: opacity var(--dur-base) var(--ease-out); }
.service-card:hover .more { opacity: 1; }

/* ------- Why ------- */
.why-section { background: var(--traduka-navy-deep); color: white; position: relative; overflow: hidden; }
.why-section::before { content:''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 80% 0%, rgba(255,106,31,0.18), transparent 70%), radial-gradient(50% 50% at 0% 100%, rgba(43,82,217,0.20), transparent 70%); pointer-events:none; }
.why-section .section-title { color: white; }
.why-section .section-sub { color: rgba(255,255,255,0.65); }
.why-section .section-eyebrow { color: var(--traduka-coral); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; position: relative; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 24px; border-radius: 20px;
  background: color-mix(in oklch, white 4%, transparent);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.why-card .icon { color: var(--traduka-orange); }
.why-card .icon svg { width: 26px; height: 26px; stroke-width: 1.75; }
.why-card h3 { font-size: 17px; font-weight: 600; margin: 14px 0 6px; color: white; letter-spacing: -0.01em; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* ------- Workflow ------- */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 60px; position: relative; }
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }
.work-step { padding: 24px; background: white; border: 1px solid var(--border); border-radius: 20px; position: relative; transition: all var(--dur-base) var(--ease-out); }
.work-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.work-step .num { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-weight: 500; }
.work-step .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--traduka-navy); color: white; display: flex; align-items: center; justify-content: center; margin: 16px 0 16px; }
.work-step .icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.work-step h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--fg-strong); margin: 0 0 8px; }
.work-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.work-grid::before { content:''; position: absolute; top: 90px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--n-200) 20%, var(--n-200) 80%, transparent); z-index: -1; }
@media (max-width: 900px) { .work-grid::before { display: none; } }

/* ------- Languages ------- */
.lang-section { background: var(--n-25); }
.lang-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 48px; }
@media (max-width: 900px) { .lang-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .lang-grid { grid-template-columns: repeat(3, 1fr); } }
.lang-card { padding: 18px 14px; background: white; border: 1px solid var(--border); border-radius: 14px; text-align: left; transition: all var(--dur-base) var(--ease-out); cursor: pointer; }
.lang-card:hover { transform: translateY(-2px); border-color: var(--traduka-orange); box-shadow: var(--shadow-md); }
.lang-card .code { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.lang-card .name { font-weight: 600; font-size: 15px; color: var(--fg-strong); margin-top: 4px; }
.lang-card .native { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.lang-more { grid-column: span 2; display: flex; align-items: center; justify-content: center; padding: 18px; border-radius: 14px; background: var(--traduka-navy); color: white; font-weight: 500; gap: 8px; cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
.lang-more:hover { background: var(--brand-hover); }
@media (max-width: 900px) { .lang-more { grid-column: span 4; } }
@media (max-width: 600px) { .lang-more { grid-column: span 3; } }

/* Featured language (Kreyòl) — orange-tinted plate */
.lang-card.featured { background: var(--grad-accent); border-color: transparent; box-shadow: var(--shadow-pop); position: relative; }
.lang-card.featured .code { color: rgba(255,255,255,0.9); }
.lang-card.featured .name { color: white; }
.lang-card.featured .native { color: rgba(255,255,255,0.85); }
.lang-card.featured::after { content: ""; position: absolute; inset: 0; border-radius: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); pointer-events: none; }
.lang-card.featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Language pairs — pill row below grid */
.lang-pairs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 32px; }
.lang-pair { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); padding: 8px 14px; background: white; border: 1px solid var(--border); border-radius: var(--r-pill); transition: all var(--dur-fast) var(--ease-out); }
.lang-pair:hover { color: var(--accent); border-color: var(--traduka-orange); }

/* ------- Testimonials ------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { padding: 28px; background: white; border: 1px solid var(--border); border-radius: 20px; display: flex; flex-direction: column; gap: 20px; transition: all var(--dur-base) var(--ease-out); }
.testi:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testi .quote-icon { color: var(--accent); }
.testi blockquote { margin: 0; font-size: 18px; line-height: 1.5; color: var(--fg-strong); letter-spacing: -0.005em; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border); padding-top: 18px; }
.testi .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-accent); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.testi .name { font-weight: 600; font-size: 14px; color: var(--fg-strong); }
.testi .title { font-size: 13px; color: var(--fg-muted); }
.testi.dark { background: var(--traduka-navy); color: white; border: none; }
.testi.dark blockquote { color: white; }
.testi.dark .who { border-color: rgba(255,255,255,0.1); }
.testi.dark .name { color: white; }
.testi.dark .title { color: rgba(255,255,255,0.6); }

/* ------- Pricing ------- */
.price-toggle { display: inline-flex; padding: 4px; background: var(--n-75); border-radius: 999px; margin: 24px 0 56px; }
.price-toggle button { background: transparent; border: 0; padding: 8px 18px; font-size: 14px; font-weight: 500; color: var(--fg-muted); border-radius: 999px; transition: all var(--dur-base) var(--ease-out); display: inline-flex; align-items: center; gap: 8px; }
.price-toggle button.active { background: white; color: var(--fg-strong); box-shadow: var(--shadow-sm); }
.price-toggle .save { font-family: var(--font-mono); font-size: 10px; padding: 2px 7px; border-radius: 999px; background: var(--traduka-peach); color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { padding: 32px; background: white; border: 1px solid var(--border); border-radius: 24px; display: flex; flex-direction: column; gap: 14px; transition: all var(--dur-base) var(--ease-out); }
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card .name { font-weight: 600; font-size: 15px; color: var(--fg-strong); }
.price-card .desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 4px; }
.price-card .price { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.price-card .price .amount { font-size: 52px; font-weight: 600; letter-spacing: -0.04em; color: var(--fg-strong); line-height: 1; }
.price-card .price .per { font-size: 14px; color: var(--fg-muted); }
.price-card ul { list-style: none; padding: 0; margin: 12px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--fg); }
.price-card li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; stroke-width: 2; }
.price-card.featured { background: var(--traduka-navy); color: white; border: none; position: relative; box-shadow: var(--shadow-xl); transform: translateY(-8px); }
.price-card.featured .name { color: white; }
.price-card.featured .desc { color: rgba(255,255,255,0.65); }
.price-card.featured .price .amount { color: white; }
.price-card.featured .price .per { color: rgba(255,255,255,0.65); }
.price-card.featured li { color: rgba(255,255,255,0.85); }
.price-card.featured li svg { color: var(--traduka-orange); }
.price-card.featured .ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-pop); }

/* ------- FAQ ------- */
.faq-list { max-width: 820px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 17px; font-weight: 500; color: var(--fg-strong); letter-spacing: -0.005em; }
.faq-q .toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--n-75); display: flex; align-items: center; justify-content: center; color: var(--fg-muted); transition: all var(--dur-base) var(--ease-out); flex-shrink: 0; }
.faq-item.open .toggle { background: var(--accent); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-in-out), padding var(--dur-slow) var(--ease-in-out); }
.faq-item.open .faq-a { max-height: 240px; padding-top: 14px; }
.faq-a p { font-size: 15px; line-height: 1.6; color: var(--fg-muted); max-width: 640px; }

/* ------- Footer ------- */
.footer { background: var(--traduka-navy-deep); color: white; padding: 80px 0 32px; position: relative; overflow: hidden; }
.footer::before { content:''; position: absolute; inset: 0; background: radial-gradient(40% 60% at 100% 0%, rgba(255,106,31,0.12), transparent 60%); pointer-events:none; }
.footer .ribbon-words { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); text-transform: uppercase; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 64px; text-align: center; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px; position: relative; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; } }
.footer h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); margin: 0 0 18px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color var(--dur-fast) var(--ease-out); }
.footer a:hover { color: var(--traduka-orange); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 280px; }
.footer-brand .logo { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: white; }
.footer-brand p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.6); margin: 0; }
.newsletter { display: flex; gap: 8px; padding: 4px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.newsletter input { flex: 1; background: transparent; border: 0; outline: 0; color: white; padding: 8px 12px; font-size: 14px; font-family: inherit; }
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter button { background: var(--accent); color: white; border: 0; padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 13px; }
.newsletter button:hover { background: var(--accent-hover); }
.social { display: flex; gap: 8px; margin-top: 8px; }
.social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.08); transition: all var(--dur-fast) var(--ease-out); }
.social a:hover { background: var(--accent); border-color: var(--accent); }
.social svg { width: 16px; height: 16px; color: white; fill: currentColor; }
.footer-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 72px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 14px; }
.footer-foot .links { display: flex; gap: 22px; }


/* ============================================================
   SUB-PAGE SHELL (Services / Languages / Pricing / About / Contact)
   ============================================================ */

/* Page hero — short, calm, no dashboard */
.page-hero { padding: 88px 0 56px; background: var(--grad-hero); position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(60% 80% at 90% 0%, rgba(255,142,107,0.18), transparent 60%); pointer-events:none; }
.page-hero .container { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.page-hero .section-eyebrow { justify-content: center; display: inline-flex; }
.page-hero h1 { font-size: clamp(40px, 5.6vw, 72px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; color: var(--fg-strong); margin: 18px 0 18px; }
.page-hero h1 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.page-hero p.lede { font-size: 19px; line-height: 1.5; color: var(--fg-muted); margin: 0 auto; max-width: 640px; }
.page-hero .hero-ctas { justify-content: center; margin-top: 32px; }

/* Page section — generous vertical rhythm matched to homepage */
.page-section { padding: 96px 0; }
.page-section.tinted { background: var(--n-25); }
.page-section.inverse { background: var(--bg-inverse); color: rgba(255,255,255,0.9); }
.page-section.inverse .section-title { color: white; }
.page-section.inverse .section-sub { color: rgba(255,255,255,0.6); }

/* CTA banner — bottom of every sub-page */
.cta-banner { padding: 96px 0; }
.cta-banner .inner { background: var(--traduka-navy); color: white; border-radius: var(--r-3xl); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-banner .inner::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 100% 100%, rgba(255,106,31,0.25), transparent 60%); pointer-events:none; }
.cta-banner h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; margin: 0 0 16px; color: white; position: relative; }
.cta-banner h2 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.7); margin: 0 auto 32px; max-width: 560px; position: relative; }
.cta-banner .hero-ctas { justify-content: center; position: relative; }
.cta-banner .btn-tertiary { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: white; }
.cta-banner .btn-tertiary:hover { background: rgba(255,255,255,0.14); }
@media (max-width: 700px) { .cta-banner .inner { padding: 48px 28px; } }

/* ============================================================
   SERVICES PAGE — deep-dive rows
   ============================================================ */
.service-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; padding: 64px 0; border-top: 1px solid var(--border); }
.service-detail:first-of-type { border-top: 0; padding-top: 0; }
.service-detail.flip { direction: rtl; }
.service-detail.flip > * { direction: ltr; }
@media (max-width: 900px) { .service-detail { grid-template-columns: 1fr; gap: 32px; } .service-detail.flip { direction: ltr; } }
.service-detail .meta { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 14px; }
.service-detail h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 600; color: var(--fg-strong); margin: 0 0 18px; }
.service-detail p.lede { font-size: 17px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 22px; }
.service-detail ul.feature-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.service-detail ul.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--fg); }
.service-detail ul.feature-list li i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.service-detail .visual { background: white; border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 32px; box-shadow: var(--shadow-md); position: relative; }
.service-detail .visual.tinted { background: linear-gradient(180deg, var(--traduka-mist), white); }
.service-detail .doc-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.service-detail .doc-row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: white; border: 1px solid var(--border); border-radius: 12px; transition: all var(--dur-fast) var(--ease-out); }
.service-detail .doc-row:hover { border-color: var(--traduka-orange); transform: translateX(2px); }
.service-detail .doc-row .icon { width: 36px; height: 36px; border-radius: 8px; background: var(--traduka-peach); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-detail .doc-row .name { font-weight: 500; font-size: 14px; color: var(--fg-strong); }
.service-detail .doc-row .sub  { font-size: 12px; color: var(--fg-muted); }
.service-detail .stat-strip { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.service-detail .stat-pill { padding: 8px 14px; background: var(--traduka-peach); color: var(--traduka-navy); border-radius: var(--r-pill); font-size: 13px; font-weight: 500; }

/* ============================================================
   LANGUAGES PAGE — pairs grid
   ============================================================ */
.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 900px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-grid { grid-template-columns: 1fr; } }
.lp-card { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: all var(--dur-base) var(--ease-out); }
.lp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--traduka-orange); }
.lp-card .pair { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.lp-card .pair .code { width: 38px; height: 38px; border-radius: 10px; background: var(--traduka-navy); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 12px; font-weight: 600; }
.lp-card .pair .code.accent { background: var(--grad-accent); }
.lp-card .pair .arrow { color: var(--fg-muted); }
.lp-card h3 { font-size: 16px; font-weight: 600; color: var(--fg-strong); margin: 0 0 6px; letter-spacing: -0.01em; }
.lp-card p  { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.5; }
.lp-card .tag-row { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.lp-card .tag-row span { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); background: var(--traduka-peach); padding: 4px 10px; border-radius: var(--r-pill); }

.lp-feature { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 700px) { .lp-feature { grid-template-columns: 1fr; } }
.lp-feature .item { padding: 28px; background: white; border-radius: var(--r-xl); border: 1px solid var(--border); }
.lp-feature .item .num { font-family: var(--font-mono); font-size: 32px; font-weight: 600; color: var(--accent); letter-spacing: -0.03em; }
.lp-feature .item .label { margin-top: 8px; font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* ============================================================
   PRICING PAGE — comparison table
   ============================================================ */
.compare-wrap { margin-top: 56px; overflow-x: auto; }
.compare { width: 100%; min-width: 720px; border-collapse: collapse; background: white; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.compare th, .compare td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare th { background: var(--n-25); font-weight: 600; color: var(--fg-strong); font-size: 13px; letter-spacing: -0.005em; }
.compare th.col-feature { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); font-weight: 500; }
.compare th.featured { background: var(--traduka-peach); color: var(--traduka-navy); }
.compare tr:last-child td { border-bottom: 0; }
.compare td.center, .compare th.center { text-align: center; }
.compare td i[data-lucide=check] { color: var(--accent); }
.compare td i[data-lucide=minus] { color: var(--n-300); }
.compare .group-row td { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); background: var(--n-25); padding: 12px 22px; border-bottom: 1px solid var(--border); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .about-mission { grid-template-columns: 1fr; gap: 32px; } }
.about-mission .copy h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; color: var(--fg-strong); margin: 0 0 20px; }
.about-mission .copy h2 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.about-mission .copy p { font-size: 17px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 14px; }
.about-mission .visual { background: var(--traduka-navy); color: white; border-radius: var(--r-3xl); padding: 56px 48px; position: relative; overflow: hidden; }
.about-mission .visual::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 60% at 0% 100%, rgba(255,106,31,0.22), transparent 60%); }
.about-mission .visual .quote { position:relative; font-family: var(--font-serif); font-style: italic; font-size: 26px; line-height: 1.35; letter-spacing: -0.015em; margin: 0 0 28px; }
.about-mission .visual .who { position:relative; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.7); }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item .big { font-size: clamp(40px, 4.5vw, 56px); font-weight: 600; letter-spacing: -0.03em; color: var(--traduka-navy); line-height: 1; }
.stat-item .big .accent { color: var(--accent); }
.stat-item .label { margin-top: 10px; font-size: 14px; color: var(--fg-muted); line-height: 1.4; }

.office-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 1000px) { .office-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .office-grid { grid-template-columns: 1fr; } }
.office-card { padding: 28px; background: white; border: 1px solid var(--border); border-radius: var(--r-xl); transition: all var(--dur-base) var(--ease-out); }
.office-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--traduka-orange); }
.office-card .flag { width: 44px; height: 44px; border-radius: 12px; background: var(--traduka-peach); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.office-card h3 { font-size: 17px; font-weight: 600; color: var(--fg-strong); margin: 0 0 6px; letter-spacing: -0.01em; }
.office-card .addr { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.office-card .meta { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 36px; background: white; border-radius: var(--r-xl); border: 1px solid var(--border); position: relative; }
.value-card .num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.value-card h3 { font-size: 22px; font-weight: 600; color: var(--fg-strong); letter-spacing: -0.02em; margin: 18px 0 12px; }
.value-card h3 .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.value-card p  { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--n-25); border-radius: var(--r-xl); padding: 24px; text-align: center; border: 1px solid var(--border); }
.team-card .face { width: 88px; height: 88px; border-radius: 50%; background: var(--grad-accent); color: white; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 600; margin: 0 auto 16px; }
.team-card .name { font-size: 16px; font-weight: 600; color: var(--fg-strong); }
.team-card .role { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.team-card .langs { margin-top: 12px; display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.team-card .langs span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--accent); background: var(--traduka-peach); padding: 3px 8px; border-radius: var(--r-pill); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 48px; align-items: flex-start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.quote-form { background: white; border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 40px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 20px; }
.quote-form h2 { font-size: 24px; font-weight: 600; color: var(--fg-strong); letter-spacing: -0.015em; margin: 0 0 4px; }
.quote-form .form-sub { font-size: 14px; color: var(--fg-muted); margin: 0 0 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); font-weight: 500; }
.field input, .field select, .field textarea { font-family: inherit; font-size: 15px; color: var(--fg-strong); padding: 12px 14px; background: var(--n-25); border: 1px solid var(--border); border-radius: var(--r-md); transition: all var(--dur-fast) var(--ease-out); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--traduka-orange); background: white; box-shadow: var(--ring-focus); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.upload-zone { padding: 28px; text-align: center; border: 1.5px dashed var(--border-strong); border-radius: var(--r-md); background: var(--n-25); cursor: pointer; transition: all var(--dur-fast) var(--ease-out); }
.upload-zone:hover { border-color: var(--traduka-orange); background: var(--traduka-peach); }
.upload-zone i { color: var(--accent); margin-bottom: 10px; }
.upload-zone .head { font-size: 14px; font-weight: 500; color: var(--fg-strong); }
.upload-zone .sub  { font-size: 12px; color: var(--fg-muted); margin-top: 4px; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; background: var(--n-25); border: 1px solid var(--border); border-radius: var(--r-md); }
.toggle-row .label-wrap { display: flex; flex-direction: column; gap: 2px; }
.toggle-row .label-wrap .ttl { font-size: 14px; font-weight: 500; color: var(--fg-strong); }
.toggle-row .label-wrap .sub { font-size: 12px; color: var(--fg-muted); }
.switch { position: relative; width: 42px; height: 24px; background: var(--n-300); border-radius: 999px; cursor: pointer; transition: background var(--dur-fast) var(--ease-out); }
.switch::after { content:""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: white; border-radius: 50%; transition: transform var(--dur-fast) var(--ease-out); box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.switch.on { background: var(--accent); }
.switch.on::after { transform: translateX(18px); }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-side .panel { background: var(--traduka-navy); color: white; border-radius: var(--r-xl); padding: 32px; }
.contact-side .panel h3 { font-size: 17px; font-weight: 600; color: white; margin: 0 0 14px; letter-spacing: -0.01em; }
.contact-side .panel .steps { display: flex; flex-direction: column; gap: 14px; }
.contact-side .panel .step { display: flex; gap: 14px; align-items: flex-start; }
.contact-side .panel .step .n { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: white; display:flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-size: 12px; font-weight: 600; flex-shrink: 0; }
.contact-side .panel .step .txt { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.5; }
.contact-side .panel .step .txt b { color: white; font-weight: 600; }
.contact-side .info-card { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; }
.contact-side .info-card h3 { font-size: 16px; font-weight: 600; color: var(--fg-strong); margin: 0 0 14px; }
.contact-side .info-card .row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; font-size: 14px; color: var(--fg); }
.contact-side .info-card .row i { color: var(--accent); margin-top: 2px; }
.contact-side .info-card .row b { display: block; color: var(--fg-strong); font-weight: 600; margin-bottom: 2px; }
.contact-side .info-card .row span.sub { color: var(--fg-muted); font-size: 13px; }

/* spacing helpers */
.section-head-center { text-align: center; max-width: 760px; margin: 0 auto 12px; }
.section-head-center .section-eyebrow { justify-content: center; }
