﻿:root {
      --gold-950: #3a2508;
      --gold-900: #5e3900;
      --gold-800: #7a4a08;
      --gold-700: #99600e;
      --gold-600: #bb7b16;
      --gold-400: #d8a247;
      --gold-200: #f4ddb2;
      --gold-100: #fff3dc;
      --cream: #fffaf1;
      --cream-2: #fffdf8;
      --ink: #17130c;
      --muted: #4a3f32;
      --line: #ead8b9;
      --white: #ffffff;
      --green: #0b7a3b;
      --green-dark: #075d2d;
      --shadow: 0 22px 58px rgba(58, 37, 8, .16);
      --shadow-soft: 0 14px 34px rgba(58, 37, 8, .10);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --max: 1160px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 0%, rgba(216, 162, 71, .24), transparent 34rem),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 42%, #fff 100%);
      font-size: 20px;
      line-height: 1.62;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    strong { font-weight: 900; }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 14px;
      background: #000;
      color: #fff;
      padding: 12px 16px;
      border-radius: 12px;
      z-index: 999;
      font-weight: 800;
    }
    .skip-link:focus { left: 14px; }

    .container {
      width: min(100% - 36px, var(--max));
      margin: 0 auto;
    }

    .topbar {
      background: var(--gold-950);
      color: #fff7e8;
      padding: 10px 0;
      font-size: 18px;
      font-weight: 800;
    }
    .topbar .container {
      display: flex;
      justify-content: center;
      gap: 22px;
      align-items: center;
      flex-wrap: wrap;
      text-align: center;
    }
    .topbar small { font-size: 16px; opacity: .92; }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 248, .96);
      border-bottom: 1px solid rgba(122, 74, 8, .18);
      backdrop-filter: blur(12px);
    }

    .header-inner {
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-logo {
      width: 188px;
      min-width: 150px;
      filter: drop-shadow(0 8px 14px rgba(58, 37, 8, .10));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 18px;
      font-weight: 800;
    }
    .nav-links a:hover { color: var(--gold-800); }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .phone-note {
      display: grid;
      text-align: right;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.2;
    }
    .phone-note strong { color: var(--ink); font-size: 20px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 60px;
      padding: 16px 24px;
      border-radius: 999px;
      border: 2px solid transparent;
      font-size: 21px;
      line-height: 1.1;
      font-weight: 900;
      text-align: center;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:focus-visible { outline: 4px solid var(--gold-200); outline-offset: 3px; }

    .btn-primary {
      color: #fff;
      background: var(--green);
      box-shadow: 0 16px 30px rgba(11, 122, 59, .26);
    }
    .btn-primary:hover { background: var(--green-dark); }

    .btn-gold {
      color: #fff;
      background: var(--gold-900);
      box-shadow: 0 16px 30px rgba(94, 57, 0, .22);
    }
    .btn-gold:hover { background: var(--gold-950); }

    .btn-light {
      color: var(--gold-950);
      background: #fff;
      border-color: rgba(94, 57, 0, .32);
      box-shadow: 0 10px 24px rgba(58, 37, 8, .08);
    }

    .ico {
      width: 1.2em;
      height: 1.2em;
      flex: 0 0 auto;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 66px 0 58px;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 86% 8%, rgba(216, 162, 71, .32), transparent 22rem),
        radial-gradient(circle at 100% 72%, rgba(94, 57, 0, .10), transparent 28rem);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(122, 74, 8, .26);
      background: #fff;
      color: var(--gold-900);
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 18px;
      box-shadow: 0 8px 22px rgba(58, 37, 8, .06);
    }

    h1, h2, h3 {
      margin: 0 0 14px;
      line-height: 1.08;
      letter-spacing: -.03em;
      color: var(--ink);
    }
    h1 {
      font-size: clamp(42px, 6vw, 68px);
      max-width: 850px;
    }
    h2 {
      font-size: clamp(34px, 4.4vw, 52px);
    }
    h3 {
      font-size: 28px;
      letter-spacing: -.02em;
    }

    .lead {
      color: #2d251b;
      font-size: clamp(22px, 2.5vw, 28px);
      max-width: 790px;
      margin: 0 0 26px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 24px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 820px;
    }
    .trust-item {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 10px;
      align-items: start;
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 14px;
      box-shadow: 0 10px 24px rgba(58, 37, 8, .06);
    }
    .trust-item .mini-icon { margin-top: 2px; }
    .trust-item b {
      display: block;
      font-size: 18px;
      line-height: 1.2;
      margin-bottom: 3px;
      color: var(--ink);
    }
    .trust-item span { color: var(--muted); font-size: 17px; line-height: 1.35; }

    .hero-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .hero-card::before {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      right: -65px;
      top: -70px;
      border-radius: 999px;
      background: rgba(216, 162, 71, .22);
    }
    .hero-card > * { position: relative; z-index: 1; }
.card-logo {
  width: clamp(150px, 36vw, 220px);
  height: clamp(150px, 36vw, 220px);
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid rgba(255,255,255,.9);
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 18px rgba(58, 37, 8, .10));
}
    .hero-card h2 { font-size: clamp(32px, 4vw, 44px); }
    .hero-card p { color: var(--muted); margin: 0 0 20px; font-size: 21px; }

    .quick-list {
      display: grid;
      gap: 14px;
      margin: 22px 0 24px;
      padding: 0;
      list-style: none;
    }
    .quick-list li {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 12px;
      align-items: center;
      font-size: 21px;
      font-weight: 800;
    }

    .mini-icon, .big-icon, .contact-icon {
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      color: var(--gold-900);
      background: linear-gradient(180deg, #fff8e8, var(--gold-200));
      border: 1px solid rgba(122, 74, 8, .22);
      box-shadow: 0 10px 18px rgba(58, 37, 8, .08);
    }
    .mini-icon {
      width: 38px;
      height: 38px;
      border-radius: 13px;
    }
    .big-icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      margin-bottom: 18px;
    }
    .contact-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      color: #fff;
      background: rgba(255,255,255,.16);
      border-color: rgba(255,255,255,.24);
      box-shadow: none;
    }
    .big-icon .ico { width: 34px; height: 34px; }
    .mini-icon .ico { width: 22px; height: 22px; }
    .contact-icon .ico { width: 28px; height: 28px; }

    .note-box {
      background: var(--gold-100);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 16px;
      color: #33281a;
      font-size: 18px;
    }

    section { padding: 78px 0; }
    .section-head {
      max-width: 840px;
      margin: 0 auto 34px;
      text-align: center;
    }
    .section-head p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 22px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 26px;
      box-shadow: var(--shadow-soft);
    }
    .card p, .step p, .faq p { color: var(--muted); margin: 0; }

    .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 36px;
      align-items: start;
    }
    .panel {
      position: sticky;
      top: 120px;
      background: linear-gradient(135deg, var(--gold-950), var(--gold-800));
      color: #fff;
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: var(--shadow);
    }
    .panel h2 { color: #fff; }
    .panel p { color: rgba(255,255,255,.86); font-size: 22px; }
    .panel .eyebrow {
      background: rgba(255,255,255,.12);
      color: #fff;
      border-color: rgba(255,255,255,.20);
      box-shadow: none;
    }

    .steps {
      display: grid;
      gap: 14px;
    }
    .step {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 18px;
      align-items: start;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 0 10px 26px rgba(58, 37, 8, .06);
    }
    .step-number {
      display: grid;
      place-items: center;
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: var(--gold-100);
      color: var(--gold-900);
      font-size: 24px;
      font-weight: 900;
      border: 1px solid var(--line);
    }

    .why {
      background:
        radial-gradient(circle at 0% 0%, rgba(216, 162, 71, .24), transparent 28rem),
        linear-gradient(135deg, var(--gold-950), #251707);
      color: #fff;
    }
    .why h2, .why h3 { color: #fff; }
    .why .section-head p { color: rgba(255,255,255,.84); }
    .why .card {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.16);
      box-shadow: none;
      color: #fff;
    }
    .why .card p { color: rgba(255,255,255,.82); }
    .why .big-icon {
      color: #fff;
      background: rgba(255,255,255,.14);
      border-color: rgba(255,255,255,.20);
      box-shadow: none;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    details {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: 0 10px 26px rgba(58, 37, 8, .05);
    }
    summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      font-size: 22px;
      line-height: 1.25;
      font-weight: 900;
      color: var(--ink);
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      display: inline-grid;
      place-items: center;
      min-width: 34px;
      height: 34px;
      border-radius: 999px;
      background: var(--gold-100);
      color: var(--gold-900);
      font-size: 26px;
      line-height: 1;
      font-weight: 900;
    }
details[open] summary::after { content: "−"; }
    details p { margin-top: 14px; font-size: 20px; }

    .cta {
      padding: 86px 0;
    }
    .cta-box {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 30px;
      align-items: center;
      background:
        radial-gradient(circle at 100% 0%, rgba(216, 162, 71, .32), transparent 28rem),
        linear-gradient(135deg, var(--gold-950), var(--gold-800));
      color: #fff;
      border-radius: var(--radius-xl);
      padding: clamp(30px, 6vw, 58px);
      box-shadow: var(--shadow);
    }
    .cta-box h2 { color: #fff; }
    .cta-box p { color: rgba(255,255,255,.86); font-size: 22px; }

    .contact-card {
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.20);
      border-radius: 26px;
      padding: 24px;
    }
    .contact-row {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.13);
      font-size: 20px;
      color: rgba(255,255,255,.92);
    }
    .contact-row:last-child { border-bottom: 0; }
    .contact-row strong { color: #fff; }

    footer {
      background: #fff;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 16px;
      padding: 32px 0 110px;
    }
    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 24px;
      z-index: 70;
      width: 70px;
      height: 70px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--green);
      color: #fff;
      box-shadow: 0 18px 46px rgba(11, 122, 59, .34);
      border: 4px solid #fff;
    }
    .whatsapp-float .ico { width: 34px; height: 34px; }

    .sticky-cta {
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 80;
      display: none;
      gap: 8px;
      padding: 8px;
      background: rgba(255,255,255,.94);
      border: 1px solid var(--line);
      border-radius: 999px;
      box-shadow: 0 20px 60px rgba(58, 37, 8, .18);
      backdrop-filter: blur(12px);
    }
    .sticky-cta .btn {
      flex: 1;
      min-height: 54px;
      padding: 12px 10px;
      font-size: 18px;
    }

    @media (max-width: 1040px) {
      .nav-links, .phone-note { display: none; }
      .hero-grid, .split, .cta-box { grid-template-columns: 1fr; }
      .panel { position: static; }
      .trust-row, .cards { grid-template-columns: 1fr; }
      .faq-wrap { grid-template-columns: 1fr; }
      .hero-card { max-width: 720px; }
      .whatsapp-float { display: none; }
      .sticky-cta { display: flex; }
      footer { padding-bottom: 118px; }
    }

    @media (max-width: 560px) {
      body { font-size: 19px; }
      .container { width: min(100% - 26px, var(--max)); }
      .topbar { font-size: 16px; }
      .header-inner { min-height: 78px; }
      .brand-logo { width: 148px; min-width: 136px; }
      .header .btn { display: none; }
      .hero { padding: 42px 0 46px; }
      h1 { font-size: 40px; }
      h2 { font-size: 34px; }
      h3 { font-size: 25px; }
      .lead { font-size: 22px; }
      .btn { width: 100%; min-height: 62px; font-size: 20px; }
      .hero-card, .panel, .card, .cta-box { border-radius: 24px; }
      .quick-list li { font-size: 20px; }
      section { padding: 58px 0; }
      .step { grid-template-columns: 54px 1fr; padding: 20px; }
      .step-number { width: 54px; height: 54px; border-radius: 18px; }
      .contact-row { grid-template-columns: 48px 1fr; font-size: 18px; }
      .contact-icon { width: 48px; height: 48px; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto !important; transition: none !important; }
    }

