@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1A2E;
  --teal: #0E7490;
  --teal-dark: #0C5F75;
  --teal-soft: #E6F4F7;
  --stone: #F7F6F3;
  --stone-dark: #EDECE8;
  --ink: #1C2434;
  --ink-muted: #5C6678;
  --line: #D8DCE3;
  --white: #FFFFFF;
  --gold: #B8860B;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(27, 42, 74, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--navy);
}
p { margin: 0 0 1rem; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.container { width: min(1120px, 92vw); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.9rem 0; position: relative;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--ink); text-decoration: none;
}
.brand:hover, .brand:hover strong { color: var(--ink); }
.brand-logo { flex-shrink: 0; display: block; }
.brand-text strong { display: block; font-family: 'Source Serif 4', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.brand-tagline { display: block; font-size: 0.7rem; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a { color: var(--ink-muted); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--teal); }
.nav-cta {
  background: var(--navy) !important; color: white !important;
  padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy-deep) !important; color: white !important; }
.menu-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.35rem 0.55rem; font-size: 1.15rem; cursor: pointer;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.35rem; border-radius: var(--radius); font-weight: 600;
  font-size: 0.92rem; border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s; text-decoration: none; font-family: inherit;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); color: white; }
.btn-secondary { background: white; color: var(--navy); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-deep); color: white; }

.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3d5c 100%);
  color: white; padding: 4.5rem 0 4rem;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.hero h1 { color: white; font-size: clamp(2rem, 4vw, 2.85rem); letter-spacing: -0.02em; }
.hero .lead { font-size: 1.08rem; color: rgba(255,255,255,0.82); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.75rem 0 1rem; }
.hero-note { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal-soft); margin-bottom: 1rem;
}
.hero-panel {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.hero-panel .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.hero-panel .row:last-child { border: none; }
.hero-panel strong { color: white; font-size: 1.05rem; }
.hero-panel span { color: rgba(255,255,255,0.65); }

.stats-bar { background: var(--stone); border-bottom: 1px solid var(--line); padding: 2.25rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats-grid strong { display: block; font-family: 'Source Serif 4', serif; font-size: 1.85rem; color: var(--navy); }
.stats-grid span { font-size: 0.85rem; color: var(--ink-muted); }

section { padding: 4rem 0; }
.section-intro { max-width: 620px; margin-bottom: 2.5rem; }
.section-intro.center { text-align: center; margin-inline: auto; }
.section-intro h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-intro p { color: var(--ink-muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow); }
.card .icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 1rem;
}
.card h3 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.card p { font-size: 0.9rem; color: var(--ink-muted); margin: 0; }
.card a.more { display: inline-block; margin-top: 1rem; font-size: 0.88rem; font-weight: 600; }

.lang-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem;
}
.lang-grid span, .lang-pill {
  background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.5rem 0.65rem; font-size: 0.82rem; text-align: center; color: var(--ink-muted);
}
.lang-pill.featured { background: var(--teal-soft); border-color: #b8dde6; color: var(--teal-dark); font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-media {
  min-height: 300px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-soft), var(--stone));
  border: 1px solid var(--line);
}
.bg-stone { background: var(--stone); }
.bg-teal-soft { background: var(--teal-soft); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.steps article {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem;
}
.steps .n {
  font-size: 0.75rem; font-weight: 700; color: var(--teal);
  background: var(--teal-soft); display: inline-block;
  padding: 0.2rem 0.55rem; border-radius: 4px; margin-bottom: 0.65rem;
}
.steps h3 { font-size: 0.98rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.steps p { font-size: 0.86rem; color: var(--ink-muted); margin: 0; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.testimonial p { font-size: 0.92rem; color: var(--ink-muted); font-style: italic; margin: 0; }
.testimonial .author { margin-top: 1rem; font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testimonial .role { font-size: 0.78rem; color: var(--ink-muted); }

.cta-band {
  background: var(--navy); color: white; border-radius: var(--radius-lg);
  padding: 3rem 2rem; text-align: center;
}
.cta-band h2 { color: white; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 1.5rem; }
.cta-band .hero-actions { justify-content: center; }

.page-hero {
  background: var(--stone); border-bottom: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
}
.page-hero h1 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); }
.page-hero p { color: var(--ink-muted); max-width: 580px; font-size: 1.02rem; }

.prose { max-width: 700px; }
.prose h2 { font-size: 1.3rem; margin-top: 2rem; }
.notice {
  background: var(--teal-soft); border-left: 3px solid var(--teal);
  padding: 1rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem; color: var(--ink-muted); margin: 1.5rem 0;
}

.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.service-item {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.service-item h3 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.service-item p { font-size: 0.9rem; color: var(--ink-muted); margin: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; padding: 3.5rem 0; align-items: start; }
.contact-card {
  background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1rem;
}
.contact-card strong { display: block; color: var(--navy); margin-bottom: 0.25rem; }
.contact-card span { font-size: 0.9rem; color: var(--ink-muted); }
.form-panel {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 0.65rem 0.85rem; border: 1px solid var(--line);
  border-radius: var(--radius); font: inherit; background: var(--stone);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,116,144,0.12);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none; margin-top: 1rem; padding: 0.85rem;
  background: #ECFDF5; color: #065F46; border-radius: var(--radius); font-size: 0.9rem;
}
.form-success.show { display: block; }

.faq details {
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 0.65rem;
}
.faq summary { padding: 1rem 1.25rem; font-weight: 600; cursor: pointer; list-style: none; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding: 0 1.25rem 1rem; margin: 0; color: var(--ink-muted); font-size: 0.92rem; }

.legal-layout {
  display: grid; grid-template-columns: 190px 1fr; gap: 2.5rem;
  padding: 3rem 0 4rem; align-items: start;
}
.legal-nav { display: flex; flex-direction: column; gap: 0.3rem; }
.legal-nav a {
  padding: 0.5rem 0.8rem; border-radius: var(--radius); font-size: 0.88rem;
  color: var(--ink-muted); font-weight: 500;
}
.legal-nav a:hover, .legal-nav a[aria-current="page"] {
  background: var(--teal-soft); color: var(--teal);
}
.legal-content h1 { font-size: 1.9rem; }
.legal-content .updated { color: var(--ink-muted); font-size: 0.85rem; }

.industry-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.industry-tags span {
  background: white; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.45rem 0.9rem; font-size: 0.85rem; color: var(--ink-muted);
}

.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem;
}
.footer-brand { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 0.5rem; }
.site-footer h4 { color: white; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.65rem; }
.site-footer a { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; padding: 0.18rem 0; }
.site-footer a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .legal-layout, .service-list { grid-template-columns: 1fr; }
  .card-grid, .testimonials, .steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lang-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; padding: 1rem 4vw;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .card-grid, .testimonials, .steps, .stats-grid, .lang-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { flex-direction: row; flex-wrap: wrap; }
}
