
    :root {
      --bg: #f7f3ec;
      --surface: #ffffff;
      --surface-soft: #fffcf7;
      --ink: #111827;
      --muted: #596372;
      --line: rgba(17, 24, 39, .12);
      --brand: #9a6a21;
      --brand-dark: #704b16;
      --navy: #111827;
      --navy-2: #1f2937;
      --green: #1f7a4d;
      --red: #8b1e1e;
      --radius: 22px;
      --shadow: 0 24px 70px rgba(17, 24, 39, .12);
      --max: 1180px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; text-size-adjust: 100%; }
    body { margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg); line-height: 1.68; }
    body::selection { background: rgba(154,106,33,.22); }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    p { margin: 0 0 14px; }
    p:last-child { margin-bottom: 0; }
    ul, ol { margin: 12px 0 0; padding-left: 22px; }
    li { margin: 7px 0; }
    table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
    th, td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
    th { background: #f0e7d8; color: var(--navy); }
    tr:last-child td { border-bottom: 0; }
    blockquote { margin: 0; padding: 20px 22px; border-left: 5px solid var(--brand); background: #fff; border-radius: 16px; color: var(--navy-2); box-shadow: 0 12px 28px rgba(17,24,39,.05); }
    .container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
    .skip-link { position: absolute; left: -999px; top: 8px; z-index: 999; padding: 10px 14px; border-radius: 12px; background: var(--ink); color: white; font-weight: 800; }
    .skip-link:focus { left: 8px; }
    :focus-visible { outline: 3px solid rgba(154,106,33,.65); outline-offset: 3px; }
    .topbar { background: var(--navy); color: rgba(255,255,255,.88); font-size: 14px; }
    .topbar .container { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .topbar a { color: #fff; font-weight: 900; }
    .site-header { position: sticky; top: 0; z-index: 40; background: rgba(247,243,236,.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
    .nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; font-size: 26px; font-weight: 950; letter-spacing: -.04em; }
    .logo-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--brand)); box-shadow: 0 12px 24px rgba(17,24,39,.2); }
    .menu { display: flex; align-items: center; gap: 18px; font-size: 15px; color: var(--navy-2); }
    .menu a { font-weight: 800; }
    .menu a:hover { color: var(--brand-dark); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .mobile-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 13px; background: var(--navy); color: #fff; font-size: 24px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 12px 18px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; text-align: center; line-height: 1.22; }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--brand); color: white; box-shadow: 0 16px 28px rgba(154,106,33,.25); }
    .btn-primary:hover { background: var(--brand-dark); }
    .btn-dark { background: var(--navy); color: white; }
    .btn-outline { border-color: var(--line); background: rgba(255,255,255,.72); color: var(--ink); }
    .hero { position: relative; overflow: hidden; padding: 68px 0 48px; background: radial-gradient(circle at 18% 10%, rgba(154,106,33,.16), transparent 35%), linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%); }
    .hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
    .eyebrow, .mini-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.72); color: var(--brand-dark); font-size: 14px; font-weight: 950; }
    .mini-kicker { margin-bottom: 12px; }
    h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.04em; color: var(--ink); }
    h1 { margin: 18px 0 18px; font-size: clamp(42px, 5.4vw, 72px); max-width: 860px; }
    h2 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 48px); }
    h3 { margin: 0 0 10px; font-size: 23px; }
    h4 { margin: 0 0 8px; font-size: 18px; }
    .lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 790px; }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
    .hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
    .point { padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.74); font-weight: 900; }
    .hero-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); overflow: hidden; }
    .visual-card { margin: 0; padding: 18px; background: linear-gradient(180deg, #fff, #fbf8f2); }
    .visual-card img { border-radius: 24px; box-shadow: 0 20px 45px rgba(17,24,39,.12); }
    .quick-card { padding: 24px; }
    .quick-list { display: grid; gap: 12px; margin-top: 14px; }
    .quick-item { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
    .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: rgba(154,106,33,.12); color: var(--brand-dark); font-weight: 950; }
    section { padding: 74px 0; content-visibility: auto; contain-intrinsic-size: 1px 900px; }
    .section-head { max-width: 880px; margin-bottom: 28px; }
    .section-head p { color: var(--muted); font-size: 18px; }
    .grid { display: grid; gap: 18px; }
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .card, .content-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 12px 32px rgba(17,24,39,.06); }
    .card p, .content-card p { color: var(--muted); }
    .service-card { position: relative; overflow: hidden; }
    .service-card::after { content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
    .service-card:hover::after { transform: scaleX(1); }
    .service-link { display: inline-flex; margin-top: 14px; color: var(--brand-dark); font-weight: 950; }
    .soft { background: radial-gradient(circle at 12% 0%, rgba(154,106,33,.11), transparent 34%), #fff; }
    .dark { background: var(--navy); color: #fff; }
    .dark h2, .dark h3, .dark h4 { color: #fff; }
    .dark p, .dark li { color: rgba(255,255,255,.76); }
    .dark .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; }
    .pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
    .pill-list a, .pill-list span { display: inline-flex; padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(154,106,33,.22); background: rgba(154,106,33,.08); color: var(--brand-dark); font-weight: 900; font-size: 13px; }
    .checklist { list-style: none; padding: 0; }
    .checklist li { position: relative; padding-left: 30px; }
    .checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 950; }
    .warning { border-left: 5px solid var(--red); }
    .process { counter-reset: step; }
    .step { position: relative; padding-top: 58px; }
    .step::before { counter-increment: step; content: counter(step); position: absolute; left: 24px; top: 20px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 950; }
    .case-card { display: grid; gap: 12px; }
    .case-meta { display: flex; flex-wrap: wrap; gap: 8px; }
    .case-meta span { padding: 7px 10px; border-radius: 999px; background: #f3eadb; color: var(--brand-dark); font-size: 13px; font-weight: 900; }
    details { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: 0 8px 22px rgba(17,24,39,.04); }
    details + details { margin-top: 12px; }
    summary { cursor: pointer; font-weight: 950; color: var(--ink); }
    details p { color: var(--muted); margin-top: 12px; }
    .cta-box { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; border-radius: 32px; padding: clamp(28px, 5vw, 56px); background: linear-gradient(135deg, var(--navy), var(--brand-dark)); color: #fff; box-shadow: var(--shadow); }
    .cta-box h2, .cta-box h3 { color: #fff; }
    .cta-box p { color: rgba(255,255,255,.8); }
    .form { display: grid; gap: 12px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); }
    label { display: grid; gap: 6px; color: rgba(255,255,255,.92); font-weight: 800; }
    input, select, textarea { width: 100%; min-height: 48px; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--line); font: inherit; color: var(--ink); background: #fff; }
    textarea { min-height: 120px; resize: vertical; }
    .form small { color: rgba(255,255,255,.78); }
    footer { padding: 54px 0 28px; background: #0b1220; color: rgba(255,255,255,.76); }
    footer h2, footer h3, footer h4 { color: #fff; }
    .footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 28px; }
    .footer-links { display: grid; gap: 9px; }
    .footer-links a:hover { color: #fff; }
    .legal-note { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
    .sticky-contact { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: flex; flex-direction: column; gap: 10px; }
    .sticky-contact a { box-shadow: 0 16px 34px rgba(0,0,0,.2); }
    @media (max-width: 980px) {
      .menu { position: fixed; inset: 116px 16px auto 16px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
      .menu.open { display: flex; }
      .mobile-toggle { display: inline-grid; place-items: center; }
      .hero-grid, .grid-2, .cta-box { grid-template-columns: 1fr; }
      .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hero-points { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .container { width: min(var(--max), calc(100% - 24px)); }
      .topbar .container { justify-content: center; text-align: center; }
      .nav-wrap { min-height: 68px; }
      .logo { font-size: 22px; }
      .logo-mark { width: 40px; height: 40px; }
      .nav-actions .btn-outline { display: none; }
      .hero { padding: 42px 0 30px; }
      h1 { font-size: clamp(31px, 10vw, 42px); }
      h2 { font-size: clamp(27px, 8vw, 36px); }
      .lead, .section-head p { font-size: 16px; }
      .hero-ctas { display: grid; grid-template-columns: 1fr; }
      .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
      section { padding: 54px 0; }
      th, td { display: block; width: 100%; }
      tr { display: block; border-bottom: 1px solid var(--line); }
      .sticky-contact { left: 12px; right: 12px; flex-direction: row; }
      .sticky-contact .btn { flex: 1; padding-inline: 10px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    }
  

/* Language switcher for separate language pages */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}
.language-switcher a {
  display: grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  color: var(--muted);
}
.language-switcher a:hover { color: var(--brand-dark); }
.language-switcher a.active {
  background: var(--navy);
  color: #fff;
}
@media (max-width: 640px) {
  .language-switcher a { min-width: 30px; padding: 0 7px; }
  .nav-actions { gap: 7px; }
}
#value .grid + .content-card { margin-top: 18px; }
