/* Page-only styles (keeps your theme) */
      .page-wrap {
        max-width: 1180px;
        margin: 0 auto;
        padding: 22px 18px 70px;
      }

      .page-hero {
        background: linear-gradient(135deg, #0b4f93 0%, #0a3e75 55%, #0b2f57 100%);
        border-radius: 18px;
        padding: 26px 22px;
        color: #fff;
        box-shadow: 0 30px 60px rgba(0,0,0,0.22);
        border: 1px solid rgba(255,255,255,0.18);
        overflow: hidden;
        position: relative;
      }

      .page-hero::after{
        content:"";
        position:absolute;
        inset:-60px -60px auto auto;
        width: 220px;
        height: 220px;
        background: rgba(255,255,255,0.10);
        border-radius: 999px;
        filter: blur(2px);
      }

      .hero-top {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
        align-items: center;
      }

      .hero-title {
        margin: 0;
        font-weight: 950;
        letter-spacing: -0.02em;
        font-size: clamp(28px, 3.2vw, 44px);
        line-height: 1.05;
      }

      .hero-sub {
        margin: 10px 0 0;
        max-width: 720px;
        color: rgba(255,255,255,0.9);
        font-weight: 700;
        line-height: 1.55;
      }

      .hero-actions{
        display:flex;
        gap:10px;
        flex-wrap: wrap;
      }

      .btn-pill{
        border: 1px solid rgba(255,255,255,0.28);
        background: rgba(255,255,255,0.10);
        color:#fff;
        padding: 10px 12px;
        border-radius: 999px;
        font-weight: 900;
        cursor:pointer;
        text-decoration:none;
        display:inline-flex;
        align-items:center;
        gap:8px;
        backdrop-filter: blur(6px);
      }
      .btn-pill:hover{ background: rgba(255,255,255,0.16); }

      .btn-solid{
        border:none;
        background:#fff;
        color:#0b4f93;
        padding: 10px 14px;
        border-radius: 999px;
        font-weight: 950;
        cursor:pointer;
        text-decoration:none;
        display:inline-flex;
        align-items:center;
        gap:8px;
      }
      .btn-solid:hover{ filter: brightness(0.96); }

      .grid-2{
        margin-top: 18px;
        display:grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 16px;
        align-items: start;
      }

      .card{
        background:#fff;
        border: 1px solid #e6edf5;
        border-radius: 16px;
        padding: 18px;
        box-shadow: var(--shadow);
      }

      .card h2{
        margin:0;
        font-weight: 950;
        color:#122543;
        letter-spacing: -0.02em;
      }

      .muted{
        color:#5d6b85;
        font-weight: 750;
        line-height: 1.6;
      }

      .contact-quick{
        display:grid;
        gap: 10px;
        margin-top: 14px;
      }

      .quick-item{
        display:flex;
        gap: 12px;
        align-items:flex-start;
        padding: 12px;
        border: 1px solid #e6edf5;
        border-radius: 14px;
        background:#fff;
      }
      .quick-ico{
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display:grid;
        place-items:center;
        background:#e8f3ff;
        color:#0b4f93;
        font-weight: 950;
      }
      .quick-text{
        display:grid;
        gap: 2px;
        min-width: 0;
      }
      .quick-text .t{
        font-weight: 950;
        color:#122543;
      }
      .quick-text .d{
        font-weight: 800;
        color:#5d6b85;
        font-size: 12px;
        line-height: 1.5;
      }
      .quick-text a{
        color:#0a5fd8;
        font-weight: 950;
        text-decoration:none;
        word-break: break-word;
      }
      .quick-text a:hover{ text-decoration: underline; }

      .form-grid{
        margin-top: 14px;
        display:grid;
        gap: 12px;
      }

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

      .field2 label{
        display:block;
        font-size: 12px;
        color:#5d6b85;
        font-weight: 900;
        margin-bottom: 6px;
      }

      .field2 input, .field2 select, .field2 textarea{
        width: 100%;
        border: 1px solid #dbe4f2;
        border-radius: 12px;
        padding: 12px 12px;
        outline:none;
        background:#fff;
        font-weight: 800;
        color:#122543;
      }

      .field2 textarea{
        min-height: 120px;
        resize: vertical;
      }

      .field2 input:focus, .field2 select:focus, .field2 textarea:focus{
        border-color:#9cc8ff;
        box-shadow: 0 0 0 4px rgba(156,200,255,0.30);
      }

      .submit-row{
        display:flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items:center;
        margin-top: 6px;
      }

      .btn-send{
        border: none;
        background:#0a5fd8;
        color:#fff;
        padding: 12px 14px;
        border-radius: 999px;
        font-weight: 950;
        cursor:pointer;
      }
      .btn-send:hover{ background:#084fb3; }

      .btn-ghost{
        border: 1px solid #e3e9f2;
        background:#fff;
        color:#2b3b55;
        padding: 12px 14px;
        border-radius: 999px;
        font-weight: 950;
        cursor:pointer;
      }
      .btn-ghost:hover{ background:#f2f6fb; }

      .faq{
        margin-top: 16px;
        display:grid;
        gap: 10px;
      }
      .faq details{
        border: 1px solid #e6edf5;
        border-radius: 14px;
        padding: 10px 12px;
        background:#fff;
      }
      .faq summary{
        cursor:pointer;
        font-weight: 950;
        color:#122543;
        list-style:none;
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap: 10px;
      }
      .faq summary::-webkit-details-marker{ display:none; }
      .faq p{
        margin: 10px 0 0;
        color:#5d6b85;
        font-weight: 750;
        line-height: 1.6;
      }

      .side-card{
        position: sticky;
        top: 14px;
        display:grid;
        gap: 12px;
      }

      .mini-badges{
        display:flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 10px;
      }
      .mini-badge{
        border: 1px solid #cfe0ff;
        background:#f3f7ff;
        color:#114a84;
        padding: 8px 10px;
        border-radius: 999px;
        font-weight: 950;
        font-size: 12px;
      }

      .map-box{
        border-radius: 16px;
        border: 1px solid #e6edf5;
        background: #f6f8fb;
        padding: 14px;
      }
      .map-fake{
        border-radius: 14px;
        border: 1px dashed #cfe0ff;
        background: #ffffff;
        padding: 14px;
        display:grid;
        gap: 6px;
        text-align:left;
      }
      .map-fake strong{ color:#122543; }
      .map-fake small{ color:#5d6b85; font-weight: 800; }

      @media (max-width: 900px){
        .grid-2{ grid-template-columns: 1fr; }
        .side-card{ position: static; }
        .row-2{ grid-template-columns: 1fr; }
      }