:root {
      --dark:#0f172a;
      --blue:#2563eb;
      --blue2:#1d4ed8;
      --soft:#f8fafc;
      --text:#1e293b;
      --muted:#64748b;
      --line:#e2e8f0;
      --green:#16a34a;
      --shadow:0 20px 50px rgba(15,23,42,.10);
    }

    * { box-sizing:border-box; margin:0; padding:0; }

    html {
      scroll-behavior:smooth;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }

    body {
      font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:#fff;
      color:var(--text);
      line-height:1.65;
    }

    img { width:100%; display:block; height:auto; }
    a { color:inherit; text-decoration:none; }
    .container { width:min(1180px,92%); margin:auto; }

    .campaign-bar {
      background:linear-gradient(90deg,#0f172a,#2563eb);
      color:#fff;
      text-align:center;
      padding:10px 16px;
      font-size:15px;
      font-weight:800;
    }

    .campaign-bar a { text-decoration:underline; margin-left:8px; }

    .topbar {
      background:var(--dark);
      color:#dbeafe;
      font-size:14px;
      padding:9px 0;
    }

    .topbar-inner {
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }

    .header {
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(14px);
      border-bottom:1px solid var(--line);
    }

    .nav {
      height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    .logo {
      font-size:23px;
      font-weight:900;
      color:var(--dark);
      letter-spacing:-.04em;
    }

    .logo span { color:var(--blue); }

    .menu {
      display:flex;
      align-items:center;
      gap:24px;
      list-style:none;
      font-weight:700;
      font-size:15px;
    }

    .menu > li { position:relative; }

    .menu a:hover,
    .menu a.active { color:var(--blue); }

    .menu-cta {
      background:var(--blue);
      color:#fff !important;
      padding:12px 18px;
      border-radius:999px;
    }

    .dropdown > a::after {
      content:"▾";
      font-size:12px;
      margin-left:6px;
    }

    .submenu {
      position:absolute;
      top:100%;
      left:0;
      width:280px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      box-shadow:0 20px 45px rgba(15,23,42,.12);
      padding:10px;
      list-style:none;
      margin:14px 0 0;
      opacity:0;
      visibility:hidden;
      transform:translateY(8px);
      transition:.18s ease;
      z-index:100;
    }

    .dropdown:hover .submenu {
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    .submenu li a {
      display:block;
      padding:11px 13px;
      border-radius:10px;
      color:var(--dark);
      font-weight:700;
    }

    .submenu li a:hover {
      background:#eff6ff;
      color:var(--blue);
    }

    .mobile-menu-btn {
      display:none;
      background:var(--dark);
      color:#fff;
      border:0;
      border-radius:10px;
      padding:10px 14px;
      font-size:22px;
      cursor:pointer;
    }

    .label {
      display:inline-flex;
      color:var(--blue);
      background:#eff6ff;
      border:1px solid #dbeafe;
      padding:8px 14px;
      border-radius:999px;
      font-weight:800;
      margin-bottom:18px;
      font-size:14px;
    }

    h1 {
      font-size:clamp(42px,6vw,72px);
      line-height:1.02;
      letter-spacing:-.055em;
      color:var(--dark);
      margin-bottom:22px;
    }

    h2 {
      font-size:clamp(30px,4vw,48px);
      line-height:1.12;
      letter-spacing:-.04em;
      color:var(--dark);
      margin-bottom:16px;
    }

    h3 {
      color:var(--dark);
      margin-bottom:10px;
      font-size:22px;
      line-height:1.25;
    }

    p { color:var(--muted); margin-bottom:18px; }

    .btn {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:14px 22px;
      border-radius:999px;
      font-weight:900;
      transition:.2s ease;
      border:0;
      cursor:pointer;
      font-family:inherit;
    }

    .btn:hover { transform:translateY(-2px); }
    .btn-primary { background:var(--blue); color:#fff; }
    .btn-primary:hover { background:var(--blue2); }
    .btn-dark { background:var(--dark); color:#fff; }
    .btn-light { background:#fff; color:var(--dark); border:1px solid var(--line); }
    .btn-whatsapp { background:var(--green); color:#fff; }

    .contact-hero {
      background:
        radial-gradient(circle at 78% 4%, rgba(37,99,235,.17), transparent 34%),
        linear-gradient(180deg,#f8fafc 0%,#fff 100%);
      padding:72px 0 52px;
      overflow:hidden;
    }

    .contact-hero-grid {
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:54px;
      align-items:center;
    }

    .contact-copy p {
      font-size:19px;
      max-width:680px;
    }

    .hero-subtext {
      color:#475569;
      font-size:17px !important;
    }

    .hero-actions {
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:30px;
    }

    .contact-visual-wrap { position:relative; }

    .contact-visual-wrap::before {
      content:"";
      position:absolute;
      inset:28px -24px -24px 34px;
      border-radius:42px;
      background:#dbeafe;
      opacity:.7;
      z-index:0;
    }

    .contact-visual {
      position:relative;
      z-index:1;
      border-radius:38px;
      overflow:hidden;
      min-height:560px;
      background:var(--dark);
      box-shadow:0 28px 90px rgba(15,23,42,.16);
    }

    .contact-visual img {
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.94;
    }

    .contact-glass-card {
      position:absolute;
      left:28px;
      right:28px;
      bottom:28px;
      padding:22px 24px;
      border-radius:24px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(255,255,255,.72);
      backdrop-filter:blur(16px);
      box-shadow:0 18px 50px rgba(15,23,42,.18);
    }

    .contact-glass-card strong {
      display:block;
      color:var(--dark);
      font-size:20px;
      margin-bottom:4px;
    }

    .contact-glass-card span {
      color:#475569;
      font-size:15px;
    }

    .hero-metrics {
      margin-top:38px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }

    .hero-metrics div {
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:22px;
      box-shadow:0 16px 38px rgba(15,23,42,.05);
    }

    .hero-metrics strong {
      display:block;
      color:var(--dark);
      font-size:18px;
      margin-bottom:4px;
    }

    .hero-metrics span {
      color:var(--muted);
      font-size:14px;
    }

    .section { padding:82px 0; }
    .soft { background:var(--soft); }

    .section-head {
      max-width:820px;
      margin:0 auto 50px;
      text-align:center;
    }

    .section-head p { font-size:18px; }

    .quote-layout {
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:28px;
      align-items:stretch;
    }

    .quote-intro-card {
      background:var(--dark);
      color:#fff;
      border-radius:34px;
      padding:42px;
      position:sticky;
      top:110px;
      min-height:640px;
      overflow:hidden;
      box-shadow:0 28px 80px rgba(15,23,42,.18);
    }

    .quote-intro-card::before {
      content:"";
      position:absolute;
      width:280px;
      height:280px;
      border-radius:50%;
      right:-110px;
      top:-100px;
      background:rgba(37,99,235,.32);
    }

    .quote-intro-card > * {
      position:relative;
      z-index:2;
    }

    .quote-intro-card h2 {
      color:#fff;
      font-size:clamp(34px,4vw,54px);
      margin-bottom:20px;
    }

    .quote-intro-card p {
      color:#cbd5e1;
      font-size:18px;
    }

    .quote-steps {
      display:grid;
      gap:14px;
      margin-top:34px;
    }

    .quote-steps div {
      display:grid;
      grid-template-columns:54px 1fr;
      gap:14px;
      align-items:center;
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }

    .quote-steps strong {
      width:54px;
      height:54px;
      display:grid;
      place-items:center;
      border-radius:18px;
      background:#fff;
      color:var(--blue);
      font-weight:900;
    }

    .quote-steps span {
      color:#e2e8f0;
      font-weight:700;
      line-height:1.45;
    }

    .direct-contact-strip {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:34px;
    }

    .direct-contact-strip a {
      background:#fff;
      color:var(--dark);
      border-radius:20px;
      padding:18px;
      display:block;
    }

    .direct-contact-strip strong {
      display:block;
      font-size:14px;
      color:var(--blue);
      margin-bottom:4px;
    }

    .direct-contact-strip span {
      font-size:16px;
      font-weight:900;
    }

    .smart-form-card {
      background:#fff;
      border:1px solid var(--line);
      border-radius:34px;
      padding:42px;
      box-shadow:0 24px 70px rgba(15,23,42,.08);
    }

    .smart-form-head {
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:30px;
    }

    .smart-form-head h2 {
      font-size:42px;
      margin-bottom:0;
    }

    .smart-form-head p {
      max-width:330px;
      margin-bottom:0;
      font-size:15px;
    }

    .smart-form {
      display:grid;
      gap:18px;
    }

    .field-row label {
      display:block;
      margin-bottom:8px;
      font-weight:900;
      color:var(--dark);
      font-size:14px;
    }

    .field-row input,
    .field-row select,
    .field-row textarea {
      width:100%;
      border:1px solid var(--line);
      border-radius:18px;
      background:#f8fafc;
      min-height:58px;
      padding:0 18px;
      outline:none;
      font-size:16px;
      font-family:inherit;
      transition:.2s ease;
      color:var(--dark);
    }

    .field-row textarea {
      min-height:150px;
      padding:18px;
      resize:vertical;
    }

    .field-row input:focus,
    .field-row select:focus,
    .field-row textarea:focus {
      border-color:var(--blue);
      background:#fff;
      box-shadow:0 0 0 4px rgba(37,99,235,.10);
    }

    .two-col {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }

    .three-col {
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:16px;
    }

    .smart-submit {
      height:62px;
      border:0;
      border-radius:20px;
      background:linear-gradient(90deg,#2563eb,#1d4ed8);
      color:#fff;
      font-weight:900;
      font-size:17px;
      cursor:pointer;
      transition:.2s ease;
      box-shadow:0 16px 34px rgba(37,99,235,.22);
      font-family:inherit;
    }

    .smart-submit:hover { transform:translateY(-2px); }

    .form-action-row {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }

    .smart-note {
      margin:0;
      color:var(--muted);
      font-size:14px;
      text-align:center;
    }

    .location-grid {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:28px;
      align-items:stretch;
    }

    .location-card {
      background:#fff;
      border:1px solid var(--line);
      border-radius:34px;
      padding:34px;
      box-shadow:0 18px 45px rgba(15,23,42,.06);
    }

    .location-card h3 {
      font-size:28px;
      margin-bottom:12px;
    }

    .location-tags {
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }

    .location-tags span {
      display:inline-flex;
      background:#eff6ff;
      color:var(--blue);
      border:1px solid #dbeafe;
      padding:10px 14px;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
    }

    .map-card {
      border-radius:34px;
      overflow:hidden;
      border:1px solid var(--line);
      box-shadow:0 18px 45px rgba(15,23,42,.06);
      min-height:430px;
    }

    .map-card iframe {
      width:100%;
      height:100%;
      min-height:430px;
      border:0;
      display:block;
    }

    details {
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      padding:20px 24px;
      margin-bottom:14px;
    }

    summary {
      cursor:pointer;
      font-weight:900;
      color:var(--dark);
    }

    details p {
      margin-top:12px;
      margin-bottom:0;
    }

    .footer {
      background:var(--dark);
      color:#cbd5e1;
    }

    .footer-main { padding:52px 0 24px; }

    .footer-grid {
      display:grid;
      grid-template-columns:1.25fr 1fr 1fr 1.2fr;
      gap:34px;
      align-items:start;
    }

    .footer-logo {
      display:inline-block;
      color:#fff;
      font-size:24px;
      font-weight:900;
      letter-spacing:-.04em;
      margin-bottom:14px;
    }

    .footer-logo span { color:#60a5fa; }
    .footer h3 { color:#fff; font-size:18px; margin-bottom:16px; }
    .footer p,.footer a { color:#cbd5e1; font-size:15px; }
    .footer ul { list-style:none; }
    .footer li { margin-bottom:9px; }
    .footer li a:hover,.footer-bottom a:hover { color:#fff; }

    .footer-contact-item {
      border-bottom:1px solid rgba(255,255,255,.10);
      padding-bottom:12px;
      margin-bottom:12px;
    }

    .footer-contact-item:last-child {
      border-bottom:0;
      padding-bottom:0;
    }

    .footer-contact-item strong {
      display:block;
      color:#fff;
      font-size:15px;
      margin-bottom:3px;
    }

    .footer-contact-item a {
      color:#cbd5e1;
      font-weight:700;
      font-size:16px;
    }

    .footer-address {
      color:#cbd5e1;
      font-size:15px;
      line-height:1.6;
    }

    .footer-map-link {
      display:inline-flex;
      margin-top:6px;
      color:#93c5fd !important;
      font-weight:800;
    }

    .footer-bottom {
      border-top:1px solid rgba(255,255,255,.12);
      margin-top:34px;
      padding-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:#bfdbfe;
      font-size:14px;
    }

    .footer-bottom-links {
      display:flex;
      gap:18px;
      flex-wrap:wrap;
    }

    .quick-widget {
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:998;
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .quick-widget a {
      width:56px;
      height:56px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:24px;
      box-shadow:0 14px 35px rgba(15,23,42,.22);
    }

    .quick-call { background:var(--blue); }
    .quick-whatsapp { background:var(--green); }

    @media(max-width:1000px) {
      .mobile-menu-btn { display:block; }

      .menu {
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:78px;
        background:#fff;
        border-bottom:1px solid var(--line);
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        gap:14px;
      }

      .menu.active { display:flex; }

      .submenu {
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border:0;
        width:100%;
        margin:8px 0 0;
        padding:6px 0 0 12px;
        display:block;
      }

      .contact-hero-grid,
      .quote-layout,
      .location-grid {
        grid-template-columns:1fr;
      }

      .quote-intro-card {
        position:relative;
        top:auto;
        min-height:auto;
      }

      .hero-metrics,
      .footer-grid {
        grid-template-columns:repeat(2,1fr);
      }

      .contact-visual { min-height:460px; }
    }

    @media(max-width:640px) {
      .contact-hero { padding:42px 0 34px; }
      .contact-visual { min-height:360px; border-radius:28px; }
      .contact-visual-wrap::before { display:none; }
      .contact-glass-card { left:18px; right:18px; bottom:18px; }
      .section { padding:62px 0; }

      .hero-metrics,
      .footer-grid,
      .two-col,
      .three-col,
      .direct-contact-strip,
      .form-action-row {
        grid-template-columns:1fr;
      }

      .smart-form-card,
      .quote-intro-card {
        padding:26px;
        border-radius:26px;
      }

      .smart-form-head {
        display:block;
      }

      .smart-form-head p {
        max-width:none;
        margin-top:10px;
      }

      .location-card {
        padding:26px;
        border-radius:26px;
      }

      .footer-bottom { align-items:flex-start; }
    }