/* ============================================================
   First Link Careers (FLC) — Design System
   Clean, professional, compliance-focused corporate site
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0a1e3a;
  --navy-800: #0c2340;
  --navy-700: #13315c;
  --navy-600: #1c4270;
  --gold-500: #c9a253;
  --gold-400: #d8b66c;
  --gold-600: #b08a3a;
  --ink: #17233a;
  --slate: #52627a;
  --slate-light: #8794a7;
  --line: #e6ebf2;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-navy-soft: #f2f5fb;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(12, 35, 64, 0.06);
  --shadow: 0 14px 40px rgba(12, 35, 64, 0.10);
  --shadow-lg: 0 30px 70px rgba(12, 35, 64, 0.16);

  --container: 1180px;
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Continuous flowing page canvas — sections blend instead of boxing */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1200px 780px at 108% -6%, rgba(201,162,83,0.07), transparent 55%),
    radial-gradient(1000px 900px at -12% 38%, rgba(19,49,92,0.05), transparent 55%),
    radial-gradient(1100px 760px at 92% 104%, rgba(19,49,92,0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 60%, #f3f6fc 100%);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--navy-800); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--slate); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.lead { font-size: 1.12rem; color: var(--slate); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 14px 0 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 10px 26px rgba(201, 162, 83, 0.34); }
.btn-primary:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201, 162, 83, 0.42); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-dark:hover svg { transform: translateX(4px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline { border: 1.5px solid var(--line); color: var(--navy-800); background: #fff; }
.btn-outline:hover { border-color: var(--navy-800); transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--navy-700); font-size: 0.95rem; }
.text-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.text-link:hover { color: var(--gold-600); }
.text-link:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: all 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; width: auto; display: block; }
.footer-logo { height: 50px; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--navy-800); letter-spacing: -0.01em; }
.brand-text span { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li > a, .nav-menu > li > .nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 15px; border-radius: 10px; font-weight: 500; font-size: 0.96rem;
  color: var(--navy-700); transition: all 0.2s var(--ease);
}
.nav-menu > li > a:hover, .nav-menu > li > .nav-trigger:hover { background: var(--bg-soft); color: var(--navy-900); }
.nav-menu a.active { color: var(--gold-600); }
.nav-trigger svg { width: 15px; height: 15px; transition: transform 0.25s; }
.has-dropdown { position: relative; }
.has-dropdown:hover .nav-trigger svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all 0.25s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 9px; font-size: 0.92rem; color: var(--slate); font-weight: 500; transition: all 0.18s; }
.dropdown a:hover { background: var(--bg-soft); color: var(--navy-800); padding-left: 18px; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; padding: 96px 0 128px; border-bottom-left-radius: 52% 88px; border-bottom-right-radius: 52% 88px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201,162,83,0.20), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(28,66,112,0.55), transparent 55%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

/* Cursor-following glow (dark sections only) */
.glow-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero::before, .stats-band::before, .cta-inner::before { z-index: 0; }
.stats-band .container, .cta-inner > div { position: relative; z-index: 2; }
.hero h1 { color: #fff; margin: 20px 0 20px; }
.hero h1 .accent { color: var(--gold-400); }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.14rem; max-width: 520px; }
.hero .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before { background: var(--gold-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; gap: 34px; margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.14); }
.hero-trust .num { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: #fff; }
.hero-trust .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }
.hero-visual { position: relative; }

/* Trust strip */
.trust-strip { background: transparent; padding: 30px 0 6px; margin-top: -18px; }
.trust-strip .container { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 1300px; }
.trust-strip span { font-size: 0.8rem; font-weight: 600; color: var(--slate-light); letter-spacing: 0.03em; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-strip svg { width: 17px; height: 17px; color: var(--gold-500); flex: none; }

/* ============================================================
   ABOUT (home)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-body p + p { margin-top: 16px; }
.about-highlights { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.tag { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--navy-700); font-weight: 600; font-size: 0.85rem; padding: 8px 15px; border-radius: 999px; }
.tag svg { width: 15px; height: 15px; color: var(--gold-600); }

/* ============================================================
   AUDIENCE / WHO WE SERVE
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card {
  background: rgba(255,255,255,0.72); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.7);
  border-radius: 26px; padding: 36px 32px; transition: all 0.35s var(--ease); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.audience-card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--gold-500); transition: width 0.4s var(--ease); }
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.audience-card:hover::after { width: 100%; }
.audience-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--bg-navy-soft); display: grid; place-items: center; margin-bottom: 22px; }
.audience-icon svg { width: 28px; height: 28px; color: var(--navy-700); }
.audience-card h3 { margin-bottom: 10px; }
.audience-card p { font-size: 0.98rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-wrap { background: transparent; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); border: none; border-radius: 24px;
  padding: 32px; display: flex; gap: 22px; transition: all 0.4s var(--ease); position: relative;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transition: width 0.45s var(--ease);
}
.service-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-lg); }
.service-card:hover::before { width: 100%; }
.service-card .service-ic { transition: transform 0.4s var(--ease); }
.service-card:hover .service-ic { transform: translateY(-3px) rotate(-4deg); }
.service-card:hover .service-ic svg { transform: scale(1.06); }
.service-ic { width: 58px; height: 58px; flex: none; border-radius: 15px; background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); display: grid; place-items: center; }
.service-ic svg { width: 28px; height: 28px; color: var(--gold-400); }
.service-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.service-card p { font-size: 0.95rem; margin-bottom: 14px; }
.sc-turn { display: flex; align-items: center; gap: 7px; font-size: 0.82rem !important; color: var(--slate-light) !important; margin: -8px 0 14px !important; }
.sc-turn svg { width: 14px; height: 14px; color: var(--gold-600); flex: none; }
.service-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price-pill { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); font-size: 1.02rem; }
.price-pill small { font-weight: 500; color: var(--slate-light); font-size: 0.72rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.why-card { padding: 18px 16px; border-radius: 20px; border: none; background: transparent; transition: all 0.3s var(--ease); position: relative; }
.why-card::before { content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 0; height: 2px; background: var(--gold-500); border-radius: 2px; transition: width 0.4s var(--ease); }
.why-card:hover { background: rgba(255,255,255,0.7); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.why-card:hover::before { width: 46px; }
.why-num { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--gold-600); width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(135deg, rgba(201,162,83,0.16), rgba(201,162,83,0.05)); }
.why-card h3 { font-size: 1.06rem; margin-bottom: 9px; }
.why-card p { font-size: 0.9rem; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; border-radius: 48% 48% 48% 48% / 82px 82px 64px 64px; margin: 18px 0; }
.stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 90% 0%, rgba(201,162,83,0.16), transparent 60%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold-400); }
.stat .lbl { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-top: 4px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; position: relative; }
.process-grid::before { content: ""; position: absolute; top: 41px; left: 11%; right: 11%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-500) 12%, var(--gold-500) 88%, transparent); opacity: 0.45; z-index: 0; }
.process-step { position: relative; z-index: 1; padding-top: 18px; }
.process-step .dot { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 2px solid var(--gold-500); color: var(--navy-800); font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 0 0 6px rgba(247,249,253,1); }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.93rem; }
.process-line { position: relative; }

/* ============================================================
   CTA
   ============================================================ */
.cta-band { padding: 84px 0; }
.cta-inner {
  background: var(--navy-800); border-radius: var(--radius-lg); padding: 62px 56px;
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 30px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 340px at 100% 0%, rgba(201,162,83,0.2), transparent 60%); }
.cta-inner h2 { color: #fff; position: relative; }
.cta-inner p { color: rgba(255,255,255,0.8); position: relative; margin-top: 12px; }
.cta-actions { position: relative; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-actions .btn { justify-content: center; width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-text b { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-top: 18px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-head); }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,0.68); font-size: 0.94rem; transition: all 0.2s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 14px; font-size: 0.94rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex: none; margin-top: 2px; }
.footer-disclaimer { font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.42); padding: 22px 0 4px; max-width: 900px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.86rem; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold-400); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { background: var(--navy-800); color: #fff; padding: 74px 0 96px; position: relative; overflow: hidden; border-bottom-left-radius: 52% 70px; border-bottom-right-radius: 52% 70px; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(720px 420px at 88% -20%, rgba(201,162,83,0.20), transparent 60%), radial-gradient(600px 500px at -5% 120%, rgba(28,66,112,0.5), transparent 55%); z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 16px 0 14px; max-width: 820px; }
.page-hero p { color: rgba(255,255,255,0.84); max-width: 660px; font-size: 1.12rem; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .eyebrow::before { background: var(--gold-400); }
.page-hero .hero-actions { margin-top: 30px; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.62); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { color: var(--gold-400); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.page-hero-visual { max-width: 320px; margin: 0 auto; }
@media (max-width: 960px) { .page-hero-grid { grid-template-columns: 1fr; } .page-hero-visual { order: -1; max-width: 220px; } }

/* Need-guide (services hub) */
.need-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.need-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(6px); border-radius: 20px;
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease);
}
.need-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transition: width 0.45s var(--ease);
}
.need-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-lg); }
.need-card:hover::before { width: 100%; }
.need-card .need-ic {
  width: 48px; height: 48px; border-radius: 50%; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(201,162,83,0.16), rgba(201,162,83,0.06));
  border: 1.5px solid rgba(201,162,83,0.3);
  display: grid; place-items: center; transition: transform 0.4s var(--ease);
}
.need-card .need-ic svg { width: 22px; height: 22px; color: var(--gold-600); transition: transform 0.4s var(--ease); }
.need-card:hover .need-ic { transform: translateY(-3px) rotate(-4deg); }
.need-card:hover .need-ic svg { transform: scale(1.06); }
.need-card .need-tag { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 8px; display: block; }
.need-card p { font-size: 0.92rem; margin-bottom: 16px; }
.need-card a { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--navy-800); display: inline-flex; align-items: center; gap: 6px; }
.need-card a svg { width: 15px; height: 15px; color: var(--gold-600); transition: transform 0.3s var(--ease); }
.need-card:hover a svg { transform: translateX(4px); }
@media (max-width: 960px) { .need-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .need-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INTERIOR: service / about / contact / legal / faq
   ============================================================ */
.svc-layout { display: grid; grid-template-columns: 1.55fr 0.9fr; gap: 48px; align-items: start; }
.prose h2 { margin: 6px 0 16px; }
.prose h3 { margin: 30px 0 12px; }
.prose p { margin-bottom: 15px; }
.prose p + h3 { margin-top: 34px; }

.evidence-visual { margin: 24px 0 6px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
.evidence-visual svg { display: block; width: 100%; height: auto; }

.checklist { margin: 20px 0 8px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); font-size: 1rem; }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--gold-600); margin-top: 2px; }
.checklist li b { color: var(--navy-800); font-family: var(--font-head); font-weight: 600; }
.checklist.warn li svg { color: #b3541e; }

.two-col-check { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.check-panel { background: rgba(255,255,255,0.8); backdrop-filter: blur(6px); border-radius: 22px; padding: 30px 28px; box-shadow: var(--shadow-sm); }
.check-panel h3 { font-size: 1.06rem; margin-bottom: 4px; }
.check-panel .checklist { margin-top: 16px; }
.check-panel .checklist li { font-size: 0.96rem; }
@media (max-width: 960px) { .two-col-check { grid-template-columns: 1fr; } }

.side-card { position: sticky; top: 100px; background: var(--navy-800); color: #fff; border-radius: 22px; padding: 32px; box-shadow: var(--shadow); overflow: hidden; }
.side-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 240px at 100% 0, rgba(201,162,83,0.2), transparent 60%); }
.side-card > * { position: relative; }
.side-card .side-seal { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, rgba(201,162,83,0.22), rgba(201,162,83,0.06)); border: 1.5px solid rgba(201,162,83,0.35); display: grid; place-items: center; margin-bottom: 18px; }
.side-card .side-seal svg { width: 26px; height: 26px; color: var(--gold-400); }
.side-card .price { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--gold-400); line-height: 1; }
.side-card .price small { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.side-card .price-label { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.side-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.14); margin: 22px 0; }
.side-card .meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.94rem; color: rgba(255,255,255,0.86); }
.side-card .meta-row svg { width: 19px; height: 19px; color: var(--gold-400); flex: none; }
.side-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.side-card .side-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-align: center; margin-top: 12px; }

.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-cards-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .feature-cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-cards-4 { grid-template-columns: 1fr; } }
.feature-card { position: relative; overflow: hidden; background: rgba(255,255,255,0.8); backdrop-filter: blur(6px); border-radius: 22px; padding: 30px 26px; box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease); }
.feature-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transition: width 0.45s var(--ease);
}
.feature-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { width: 100%; }
.feature-card .fic { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); display: grid; place-items: center; margin-bottom: 18px; transition: transform 0.4s var(--ease); }
.feature-card:hover .fic { transform: translateY(-3px) rotate(-4deg); }
.feature-card .fic svg { width: 25px; height: 25px; color: var(--gold-400); transition: transform 0.4s var(--ease); }
.feature-card:hover .fic svg { transform: scale(1.06); }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 9px; }
.feature-card p { font-size: 0.94rem; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: rgba(255,255,255,0.8); border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 600; color: var(--navy-800); transition: all 0.3s var(--ease); }
.related-card svg { width: 18px; height: 18px; color: var(--gold-600); transition: transform 0.3s var(--ease); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card:hover svg { transform: translateX(4px); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-info .info-item { display: flex; gap: 15px; margin-bottom: 26px; align-items: flex-start; }
.contact-info .info-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--bg-navy-soft); display: grid; place-items: center; flex: none; }
.contact-info .info-ic svg { width: 22px; height: 22px; color: var(--navy-700); }
.contact-info h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy-800); margin-bottom: 3px; }
.contact-info a, .contact-info span { color: var(--slate); font-size: 0.98rem; }
.form-card { background: rgba(255,255,255,0.9); border-radius: 24px; padding: 38px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; font-family: var(--font-head); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; font-family: inherit; font-size: 0.98rem; color: var(--ink); background: #fff; transition: all 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,83,0.15); }
.field textarea { resize: vertical; min-height: 130px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note-error { color: #b3541e !important; }
.form-note-success { color: var(--gold-600) !important; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.8); border-radius: 16px; margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--navy-800); }
.faq-q svg { width: 22px; height: 22px; color: var(--gold-600); flex: none; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--slate); }

/* Legal */
.legal-prose { max-width: 820px; margin: 0 auto; }
.legal-prose h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.legal-prose p, .legal-prose li { color: var(--slate); margin-bottom: 12px; }
.legal-prose ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal-prose .updated { color: var(--slate-light); font-size: 0.9rem; margin-bottom: 26px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .cta-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .cards-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .process-grid::before { display: none; }
  .svc-layout { grid-template-columns: 1fr; gap: 34px; }
  .side-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .feature-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .section { padding: 68px 0; }
  .hero { border-bottom-left-radius: 40% 56px; border-bottom-right-radius: 40% 56px; }
  .stats-band { border-radius: 44px / 44px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo { height: 34px; }
  .footer-logo { height: 42px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .nav-menu { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px 24px; gap: 2px; box-shadow: var(--shadow); transform: translateY(-120%); transition: transform 0.4s var(--ease); max-height: calc(100vh - 76px); overflow-y: auto; }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu > li > a, .nav-menu > li > .nav-trigger { padding: 14px 12px; font-size: 1rem; border-radius: 10px; justify-content: space-between; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 12px; padding: 0; min-width: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
  .has-dropdown.open .dropdown { max-height: 400px; }
  .has-dropdown:hover .dropdown { opacity: 1; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .hero-trust { gap: 22px; flex-wrap: wrap; }
  .cta-inner { padding: 40px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 20px; }
}
