:root {
    --navy: #071a38;
    --blue: #0b63f6;
    --cyan: #29c6f6;
    --ink: #10213b;
    --muted: #627089;
    --line: #e7edf5;
    --bg: #f6f9fd;
    --white: #fff;
    --green: #0cad68;
    --shadow: 0 24px 70px rgba(9, 30, 66, 0.12);
    --radius: 24px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
button,
input,
select,
textarea {
    font: inherit;
}
.container {
    width: min(var(--container), calc(100% - 40px));
    margin: auto;
}
.topbar {
    background: var(--navy);
    color: #dce8ff;
    font-size: 14px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
}
.topbar-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231, 237, 245, 0.9);
}
.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand img {
    width: 58px;
    height: 58px;
    border-radius: 2px;
    object-fit: cover;
}
.brand strong {
    font-size: 18px;
}
.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 700;
    font-size: 14px;
}
.nav-links a:hover {
    color: var(--blue);
}
.nav-actions {
    display: flex;
    gap: 10px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 14px;
    padding: 13px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: linear-gradient(135deg, var(--blue), #7345ff);
    color: white;
    box-shadow: 0 12px 28px rgba(11, 99, 246, 0.25);
}
.btn-soft {
    background: #edf4ff;
    color: var(--blue);
}
.btn-dark {
    background: var(--navy);
    color: white;
}
.menu-btn {
    display: none;
    background: #edf4ff;
    border: 0;
    border-radius: 12px;
    padding: 10px 13px;
    font-size: 20px;
}
.hero {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(41, 198, 246, 0.24),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 10%,
            rgba(115, 69, 255, 0.16),
            transparent 25%
        ),
        linear-gradient(180deg, #f8fbff 0, #fff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  position: relative;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf2ff;
    color: var(--blue);
    border: 1px solid #d7e6ff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
}
.hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
    margin: 20px 0;
}
.gradient-text {
    background: linear-gradient(135deg, var(--blue), #7b45ff);
    -webkit-background-clip: text;
    color: transparent;
}
.hero p {
    font-size: 19px;
    color: var(--muted);
    max-width: 650px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0;
}
.trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: #40516e;
    font-size: 14px;
    font-weight: 700;
}
.trust-row span:before {
    content: "✓";
    color: var(--green);
    margin-right: 7px;
}
.visual-card {
    position: relative;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 30px;
    padding: 23px;
    box-shadow: var(--shadow);
}
.visual-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 13px;
}
.status-pill {
    background: #e8fbf2;
    color: var(--green);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 800;
}
.mock-browser {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
}
.browser-bar {
    padding: 12px 16px;
    background: #f4f7fb;
    display: flex;
    gap: 7px;
}
.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c9d3e2;
}
.mock-content {
    padding: 22px;
}
.step-list {
    display: grid;
    gap: 13px;
}
.step-item {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 16px;
}
.step-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #edf4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-weight: 900;
}
.float-card {
    position: absolute;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(9, 30, 66, 0.15);
    padding: 13px 16px;
    font-weight: 800;
}
.float-one {
    left: -45px;
    bottom: 65px;
}
.float-two {
    right: -28px;
    top: 85px;
}
.section {
    padding: 92px 0;
}
.section-muted {
    background: var(--bg);
}
.section-head {
    max-width: 730px;
    margin: 0 auto 44px;
    text-align: center;
}
.section-head h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
    letter-spacing: -1.6px;
    margin: 12px 0;
}
.section-head p {
    color: var(--muted);
    font-size: 17px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 14px 40px rgba(9, 30, 66, 0.05);
}
.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: linear-gradient(135deg, #eaf2ff, #f0eaff);
    display: grid;
    place-items: center;
    font-size: 24px;
}
.card h3 {
    font-size: 21px;
    margin: 17px 0 8px;
}
.card p {
    color: var(--muted);
    margin: 0;
}
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.process .card {
    position: relative;
}
.number {
    font-size: 12px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: 1px;
}
.calc-wrap {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    align-items: start;
}
.form-card,
.summary-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field {
    display: grid;
    gap: 7px;
}
.field.full {
    grid-column: 1/-1;
}
.field label {
    font-size: 13px;
    font-weight: 800;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dbe4ef;
    border-radius: 13px;
    padding: 13px 14px;
    outline: none;
    background: #fbfdff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(11, 99, 246, 0.1);
}
.summary-card {
    background: linear-gradient(160deg, var(--navy), #103469);
    color: white;
    position: sticky;
    top: 110px;
}
.price {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
}
.breakup {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}
.breakup div {
    display: flex;
    justify-content: space-between;
    color: #dce8ff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 9px;
}
.summary-note {
    font-size: 12px;
    color: #b9c9e3;
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat {
    padding: 25px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--line);
    text-align: center;
}
.stat strong {
    font-size: 35px;
    display: block;
    color: var(--blue);
}
.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.globe {
    min-height: 420px;
    border-radius: 32px;
    background: radial-gradient(
        circle at 50% 50%,
        #1e75ff 0 22%,
        #0c356d 23% 46%,
        #071a38 47%
    );
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.globe:after {
    content: "";
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(255, 255, 255, 0.05),
        0 0 0 90px rgba(255, 255, 255, 0.04);
}
.city-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.city-tags span {
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 800;
    font-size: 13px;
}
.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.doc {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 17px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
}
.doc b {
    display: block;
}
.doc small {
    color: var(--muted);
}
.faq {
    max-width: 850px;
    margin: auto;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: white;
    border: 0;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.faq-a {
    display: none;
    padding: 0 20px 18px;
    color: var(--muted);
}
.faq-item.open .faq-a {
    display: block;
}
.cta-band {
    background: linear-gradient(135deg, var(--blue), #7345ff);
    color: white;
    border-radius: 34px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}
.footer {
    background: var(--navy);
    color: #d8e5fa;
    padding: 65px 0 25px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 35px;
}
.footer h4 {
    color: white;
}
.footer a {
    display: block;
    margin: 8px 0;
    color: #bfd0ea;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 38px;
    padding-top: 20px;
    font-size: 13px;
}
.floating-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #20c56d;
    color: white;
    display: grid;
    place-items: center;
    font-size: 27px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
    z-index: 60;
}
.page-hero {
    padding: 85px 0 65px;
    background: linear-gradient(180deg, #f3f8ff, #fff);
    text-align: center;
}
.page-hero h1 {
    font-size: 54px;
    letter-spacing: -2px;
    margin: 10px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 25px;
}
.contact-list {
    display: grid;
    gap: 14px;
}
.contact-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}
.notice {
    background: #fff7df;
    border: 1px solid #ffe38c;
    color: #7d5a00;
    padding: 12px 14px;
    border-radius: 13px;
    font-size: 13px;
}
.success {
    display: none;
    background: #e9fbf2;
    color: #087c4a;
    padding: 12px 14px;
    border-radius: 12px;
    margin-top: 12px;
}
.coupon-result b{
  color:#8ff0b9!important
}
.coupon-result[hidden]{
  display:none!important
}
@media (max-width: 980px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--line);
    }
    .nav-links.open {
        display: flex;
    }
    .menu-btn {
        display: block;
    }
    .nav-actions .btn-soft {
        display: none;
    }
    .hero-grid,
    .calc-wrap,
    .reach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 55px;
    }
    .visual-card {
        max-width: 640px;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .process {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .summary-card {
        position: static;
    }
    .float-one {
        left: 10px;
    }
    .float-two {
        right: 10px;
    }
}
@media (max-width: 640px) {
    .topbar .container {
        justify-content: center;
    }
    .topbar-links span:nth-child(2),
    .topbar-links span:nth-child(3) {
        display: none;
    }
    .nav-actions {
        display: none;
    }
    .brand img {
        width: 48px;
        height: 48px;
    }
    .hero-grid {
        min-height: auto;
        padding: 48px 0;
    }
    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.7px;
    }
    .hero p {
        font-size: 17px;
    }
    .cards,
    .process,
    .stats,
    .doc-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 68px 0;
    }
    .float-card {
        position: static;
        margin-top: 12px;
    }
    .cta-band {
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .page-hero h1 {
        font-size: 40px;
    }
    .form-card,
    .summary-card {
        padding: 22px;
    }
}
/* 2026 visual expansion */
.story-section {
    padding: 88px 0;
    background: linear-gradient(135deg, #16114f, #292469 60%, #0b4a88);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.story-section:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(41, 198, 246, 0.12);
    filter: blur(4px);
    right: -180px;
    top: -230px;
}
.story-heading {
    text-align: center;
    position: relative;
}
.story-heading span {
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #8ee3ff;
    font-weight: 900;
}
.story-heading h2 {
    font-size: clamp(34px, 4.5vw, 56px);
    margin: 8px 0;
    letter-spacing: -1.8px;
}
.story-heading p {
    color: #cbd3ff;
    margin: 0 auto 42px;
}
.story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}
.story-stat {
    text-align: center;
    padding: 26px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    border-radius: 25px;
    transition: 0.25s;
}
.story-stat:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.11);
}
.story-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    font-size: 36px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.18),
        rgba(41, 198, 246, 0.22)
    );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.story-stat strong {
    font-size: 34px;
    display: block;
}
.story-stat h3 {
    font-size: 17px;
    color: #77dfff;
    margin: 2px 0 8px;
}
.story-stat p {
    font-size: 13px;
    color: #c7ccec;
}
.story-note {
    text-align: center;
    margin-top: 20px;
    color: #9fa9d9;
    font-size: 11px;
}
.sample-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #fff, #f4f9ff);
}
.split-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}
.split-heading > div:first-child {
    max-width: 760px;
}
.split-heading h2 {
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.7px;
    margin: 14px 0;
}
.split-heading p {
    color: var(--muted);
    font-size: 17px;
    margin: 0;
}
.legal-chip {
    white-space: nowrap;
    padding: 12px 16px;
    border: 1px solid #dce7f5;
    background: white;
    border-radius: 999px;
    font-weight: 850;
    color: #18345e;
    box-shadow: 0 10px 25px rgba(9, 30, 66, 0.06);
}
.sample-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sample-card {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    min-height: 350px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 22px 55px rgba(9, 30, 66, 0.09);
    transition: 0.25s;
}
.sample-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 65px rgba(9, 30, 66, 0.14);
}
.sample-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 25px;
    position: relative;
    overflow: hidden;
}
.sample-art:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 22px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    right: -75px;
    bottom: -75px;
}
.sample-residential .sample-art {
    background: linear-gradient(145deg, #096cff, #33c6ec);
}
.sample-commercial .sample-art {
    background: linear-gradient(145deg, #2a216d, #7750f7);
}
.building-emoji {
    font-size: 82px;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.18));
}
.sample-art span {
    font-size: 20px;
    font-weight: 900;
}
.sample-copy {
    padding: 34px;
}
.sample-label {
    font-size: 11px;
    color: var(--blue);
    letter-spacing: 1.1px;
    font-weight: 900;
}
.sample-copy h3 {
    font-size: 27px;
    margin: 7px 0;
}
.sample-copy p {
    color: var(--muted);
}
.sample-points {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    margin: 18px 0;
}
.sample-points span {
    color: #344867;
}
.text-link {
    font-weight: 900;
    color: var(--blue);
}
.sample-disclaimer {
    margin-top: 18px;
    padding: 13px 16px;
    border-radius: 14px;
    background: #eaf5ff;
    color: #365473;
    font-size: 13px;
}
.global-section {
    padding: 96px 0;
    background:
        radial-gradient(
            circle at 86% 25%,
            rgba(41, 198, 246, 0.16),
            transparent 30%
        ),
        #fff;
}
.global-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 55px;
    align-items: center;
}
.global-copy h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin: 17px 0;
}
.global-copy h2 span {
    color: #251f68;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 7px;
}
.global-copy p {
    color: var(--muted);
    font-size: 16px;
}
.coverage-tabs {
    display: flex;
    gap: 10px;
    margin: 24px 0 14px;
}
.coverage-tab {
    border: 1px solid var(--line);
    background: white;
    padding: 10px 15px;
    border-radius: 13px;
    font-weight: 850;
    cursor: pointer;
}
.coverage-tab.active {
    color: white;
    background: #27216b;
    border-color: #27216b;
}
.coverage-panel {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}
.coverage-panel.active {
    display: grid;
}
.coverage-panel span {
    padding: 10px 12px;
    border-radius: 12px;
    background: #f1f5fb;
    color: #334a68;
    font-size: 13px;
    font-weight: 750;
}
.global-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}
.world-visual {
    min-height: 500px;
    border-radius: 38px;
    background: linear-gradient(145deg, #eff9ff, #e6efff);
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 75px rgba(25, 63, 118, 0.16);
}
.world-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 210px;
    height: 210px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 130px;
    background: white;
    box-shadow: 0 22px 55px rgba(12, 67, 123, 0.2);
    z-index: 2;
}
.world-orbit {
    position: absolute;
    border: 1px dashed rgba(30, 100, 180, 0.35);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.orbit-one {
    width: 360px;
    height: 360px;
}
.orbit-two {
    width: 465px;
    height: 465px;
}
.map-pin {
    position: absolute;
    display: grid;
    gap: 2px;
    text-align: center;
    font-size: 28px;
    z-index: 4;
    animation: floatpin 3s ease-in-out infinite;
}
.map-pin small {
    font-size: 11px;
    font-weight: 900;
    color: #273d62;
    background: white;
    border-radius: 999px;
    padding: 3px 8px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}
.pin-a {
    left: 13%;
    top: 22%;
}
.pin-b {
    right: 12%;
    top: 38%;
    animation-delay: 0.5s;
}
.pin-c {
    left: 20%;
    bottom: 18%;
    animation-delay: 1s;
}
.pin-d {
    right: 18%;
    bottom: 14%;
    animation-delay: 1.5s;
}
.world-badge {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    background: #251f68;
    color: white;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 850;
    z-index: 5;
}
@keyframes floatpin {
    50% {
        transform: translateY(-8px);
    }
}
.contact-banner {
    background: linear-gradient(100deg, #251f68, #302976 60%, #0d4986);
    color: white;
    padding: 55px 0;
}
.contact-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}
.contact-kicker {
    font-size: 11px;
    letter-spacing: 1.6px;
    color: #72ddff;
    font-weight: 900;
}
.contact-banner h2 {
    font-size: clamp(38px, 5vw, 62px);
    margin: 5px 0;
}
.contact-banner p {
    color: #d3d6f0;
    margin: 0;
}
.contact-number {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    align-items: center;
}
.contact-number > span {
    grid-row: 1/3;
    font-size: 58px;
}
.contact-number strong {
    font-size: clamp(29px, 4vw, 52px);
    white-space: nowrap;
}
.contact-number small {
    color: #9ce7ff;
}
.why-section {
    padding: 96px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    background: white;
    box-shadow: 0 15px 45px rgba(9, 30, 66, 0.055);
    transition: 0.25s;
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: #b8d8ff;
}
.why-card > div {
    font-size: 38px;
}
.why-card h3 {
    font-size: 21px;
    color: #27216b;
    margin: 12px 0 8px;
}
.why-card p {
    color: var(--muted);
    margin: 0;
}
.quick-rail {
    position: fixed;
    right: 0;
    top: 48%;
    transform: translateY(-50%);
    z-index: 80;
    display: grid;
    gap: 8px;
}
.quick-rail a {
    width: 64px;
    min-height: 62px;
    background: #28216d;
    color: white;
    border-radius: 18px 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(11, 19, 55, 0.24);
    transition: 0.25s;
    overflow: hidden;
}
.quick-rail a span {
    font-size: 24px;
    min-width: 64px;
    text-align: center;
}
.quick-rail a b {
    font-size: 12px;
    white-space: nowrap;
    width: 0;
    opacity: 0;
    transition: 0.25s;
}
.quick-rail a:hover {
    width: 185px;
    justify-content: flex-start;
    background: linear-gradient(135deg, #27216b, #0b63f6);
}
.quick-rail a:hover b {
    width: auto;
    opacity: 1;
    padding-right: 16px;
}
.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(145deg, #29216d, #0b63f6);
    color: white;
    display: grid;
    place-items: center;
    box-shadow: 0 15px 35px rgba(20, 37, 96, 0.3);
    z-index: 79;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: 0.25s;
}
.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
.scroll-top span {
    font-size: 23px;
    line-height: 1;
}
.scroll-top i {
    font-style: normal;
    font-size: 13px;
    margin-top: -8px;
}
@media (max-width: 980px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sample-grid,
    .global-grid {
        grid-template-columns: 1fr;
    }
    .sample-card {
        min-height: 320px;
    }
    .world-visual {
        min-height: 430px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-banner-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 640px) {
    .story-grid,
    .sample-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .sample-card {
        grid-template-columns: 1fr;
    }
    .sample-art {
        min-height: 210px;
    }
    .split-heading {
        align-items: flex-start;
        flex-direction: column;
    }
    .legal-chip {
        white-space: normal;
    }
    .world-visual {
        min-height: 380px;
    }
    .world-core {
        width: 160px;
        height: 160px;
        font-size: 100px;
    }
    .orbit-one {
        width: 280px;
        height: 280px;
    }
    .orbit-two {
        width: 350px;
        height: 350px;
    }
    .contact-number strong {
        font-size: 28px;
    }
    .contact-number > span {
        font-size: 44px;
    }
    .quick-rail {
        top: auto;
        bottom: 92px;
        right: 10px;
        transform: none;
    }
    .quick-rail a {
        width: 50px;
        min-height: 50px;
        border-radius: 15px;
    }
    .quick-rail a span {
        min-width: 50px;
        font-size: 20px;
    }
    .quick-rail a:hover {
        width: 50px;
    }
    .quick-rail a:hover b {
        display: none;
    }
    .scroll-top {
        width: 52px;
        height: 52px;
        right: 9px;
        bottom: 24px;
        border-radius: 17px;
    }
}

/* Homepage advanced fee calculator */
.fee-calculator-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0, #f2f7ff 100%);
    scroll-margin-top: 90px;
}
.calculator-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}
.calculator-heading > div:first-child {
    max-width: 760px;
}
.calculator-heading h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    margin: 14px 0;
}
.calculator-heading p {
    color: var(--muted);
    font-size: 17px;
    margin: 0;
}
.calc-trust {
    padding: 14px 18px;
    border: 1px solid #dce7f5;
    border-radius: 18px;
    background: #fff;
    font-weight: 900;
    box-shadow: 0 12px 35px rgba(9, 30, 66, 0.07);
}
.calc-trust small {
    font-weight: 600;
    color: var(--muted);
}
.modern-calculator {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;
    border: 1px solid #dfe8f4;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(9, 30, 66, 0.13);
}
.calc-form-panel {
    padding: 34px;
}
.calc-panel-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}
.calc-panel-title > span {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue), #7247f4);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}
.calc-panel-title h3 {
    font-size: 24px;
    margin: 0;
}
.calc-panel-title p {
    color: var(--muted);
    margin: 0;
    font-size: 13px;
}
.calc-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}
.calc-fields .field.full {
    grid-column: 1/-1;
}
.calc-fields label {
    font-size: 13px;
    font-weight: 850;
    color: #273b58;
    display: block;
    margin-bottom: 7px;
}
.calc-fields input,
.calc-fields select,
.extra-visit-box select {
    width: 100%;
    height: 48px;
    border: 1px solid #d9e3f0;
    border-radius: 13px;
    padding: 0 14px;
    outline: none;
    background: #fff;
}
.calc-fields input:focus,
.calc-fields select:focus,
.extra-visit-box select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(11, 99, 246, 0.08);
}
.input-prefix,
.input-suffix {
    display: flex;
    align-items: center;
    border: 1px solid #d9e3f0;
    border-radius: 13px;
    overflow: hidden;
}
.input-prefix:focus-within,
.input-suffix:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(11, 99, 246, 0.08);
}
.input-prefix span,
.input-suffix span {
    padding: 0 14px;
    color: #60718b;
    font-weight: 850;
}
.input-prefix input,
.input-suffix input {
    border: 0;
    box-shadow: none !important;
}
.rent-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.rent-toggle label {
    margin: 0;
}
.rent-toggle input {
    position: absolute;
    opacity: 0;
}
.rent-toggle span {
    height: 48px;
    border: 1px solid #d9e3f0;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.rent-toggle input:checked + span {
    background: #eaf2ff;
    border-color: #8ab8ff;
    color: var(--blue);
    font-weight: 900;
}
.varying-home {
    display: none;
    border: 1px solid #d9e6f7;
    background: #f8fbff;
    border-radius: 18px;
    padding: 18px;
}
.varying-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 12px;
}
.varying-head small {
    display: block;
    color: var(--muted);
}
.varying-head > div:last-child {
    width: 125px;
}
.varying-head input {
    height: 40px;
}
.slab-labels,
.home-slab {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 8px;
}
.slab-labels {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #7d8ca4;
    font-weight: 900;
    margin-bottom: 6px;
}
.home-slab {
    margin-bottom: 8px;
}
.home-slab input {
    height: 42px;
}
.home-slab input[readonly] {
    background: #edf2f8;
}
.extra-visit-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #effaf5, #eef6ff);
    border: 1px solid #d6eade;
}
.extra-icon {
    font-size: 30px;
}
.extra-copy h4 {
    margin: 0;
    font-size: 17px;
}
.extra-copy p {
    margin: 2px 0 10px;
    color: var(--muted);
    font-size: 12px;
}
.extra-visit-box select {
    height: 42px;
}
.extra-hint {
    font-size: 11px;
    color: #60718b;
    margin-top: 6px;
}
.whatsapp-mini {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #0cad68;
    color: #fff;
    padding: 11px 13px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}
.calc-result-panel {
    padding: 34px;
    background: linear-gradient(155deg, #17134f, #28216d 55%, #0b5aa6);
    color: #fff;
    display: flex;
    flex-direction: column;
}
.result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-size: 11px;
    color: #9ee6ff;
    font-weight: 900;
}
.result-price {
    font-size: clamp(45px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -2px;
    margin: 9px 0 20px;
}
.result-breakup {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.result-breakup > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 13px;
}
.result-breakup span {
    color: #ced5f5;
}
.rent-summary {
    margin: 18px 0;
    padding: 12px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.09);
    font-size: 12px;
    color: #cfe0ff;
}
.result-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
}
.btn-quotation {
    background: #fff;
    color: #251f68;
}
.calc-note {
    font-size: 10px;
    color: #b8c3e8;
    margin: 13px 0 0;
}
.highlight-calc {
    animation: calcGlow 1.2s ease;
}
@keyframes calcGlow {
    50% {
        box-shadow:
            0 0 0 8px rgba(41, 198, 246, 0.22),
            0 28px 80px rgba(9, 30, 66, 0.13);
    }
}
@media (max-width: 900px) {
    .modern-calculator {
        grid-template-columns: 1fr;
    }
    .calculator-heading {
        align-items: flex-start;
        flex-direction: column;
    }
    .calc-result-panel {
        min-height: 500px;
    }
}
@media (max-width: 640px) {
    .fee-calculator-section {
        padding: 70px 0;
    }
    .calc-form-panel,
    .calc-result-panel {
        padding: 22px;
    }
    .calc-fields {
        grid-template-columns: 1fr;
    }
    .calc-fields .field.full {
        grid-column: auto;
    }
    .extra-visit-box {
        grid-template-columns: auto 1fr;
    }
    .whatsapp-mini {
        grid-column: 1/-1;
        justify-content: center;
    }
    .varying-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .varying-head > div:last-child {
        width: 100%;
    }
    .slab-labels,
    .home-slab {
        grid-template-columns: 0.8fr 0.8fr 1.2fr;
    }
    .calc-trust {
        display: none;
    }
}
/* v5 unified Maharashtra navigation */
.site-header .nav {
    max-width: 1540px;
}
.maharashtra-menu {
    gap: 18px;
    flex: 1;
    justify-content: center;
}
.maharashtra-menu a {
    font-size: 13px;
    white-space: nowrap;
}
.location-nav-btn {
    border: 1px solid rgba(11, 99, 246, 0.22);
    background: #fff;
    color: #132a63;
    border-radius: 12px;
    padding: 11px 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}
@media (max-width: 1250px) {
    .maharashtra-menu {
        gap: 10px;
    }
    .maharashtra-menu a {
        font-size: 12px;
    }
}
@media (max-width: 980px) {
    .maharashtra-menu {
        display: none;
    }
    .location-nav-btn {
        margin-left: auto;
    }
}

:root {
    --navy: #29236f;
    --navy-2: #171348;
    --blue: #28a8df;
    --blue-2: #1268f2;
    --violet: #7346ff;
    --ink: #111c33;
    --muted: #647089;
    --soft: #f4f7ff;
    --line: #dce5f5;
    --white: #fff;
    --green: #20a45a;
    --shadow: 0 20px 55px rgba(30, 42, 83, 0.13);
    --radius: 24px;
    --container: 1240px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input,
select {
    font: inherit;
}
img {
    max-width: 100%;
}
.container {
    width: min(var(--container), calc(100% - 40px));
    margin: auto;
}
.topbar .container,
.site-header .container {
    width: min(1500px, calc(100% - 40px));
}
.topbar {
    background: linear-gradient(90deg, var(--navy), var(--navy-2));
    color: #fff;
    font-size: 14px;
}
.topbar-inner {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.top-contact,
.top-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.top-contact a,
.top-contact span,
.top-right span {
    opacity: 0.96;
}
.socials {
    display: flex;
    align-items: center;
    gap: 9px;
}
.social-icon {
    width: 31px;
    height: 31px;
    border-radius: 10px;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: 0.25s;
    color: #fff;
    overflow: hidden;
}
.social-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}
.social-icon.facebook {
    background: #1877f2;
}
.social-icon.instagram {
    background: radial-gradient(
        circle at 30% 110%,
        #ffd600 0 18%,
        #ff7a00 30%,
        #ff0169 54%,
        #d300c5 70%,
        #7638fa 100%
    );
}
.social-icon:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}
.top-location-btn {
    height: 31px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    white-space: nowrap;
}
.top-location-btn:hover {
    background: #fff;
    color: var(--navy);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(218, 226, 243, 0.9);
}
.header-inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.brand img {
    display: block;
    width: 218px;
    height: 78px;
    object-fit: contain;
    object-position: left center;
}
.brand-copy {
    display: none;
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}
.nav-links a {
    position: relative;
    padding: 10px 0;
}
.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    transition: 0.25s;
}
.nav-links a:hover:after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.action-btn {
    border: 0;
    border-radius: 17px;
    padding: 14px 17px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.track-btn {
    background: #eef5ff;
    color: #1d8fc7;
}
.start-btn {
    background: linear-gradient(135deg, var(--blue-2), var(--violet));
    color: #fff;
    box-shadow: 0 14px 28px rgba(91, 75, 241, 0.24);
}
.login-btn {
    background: linear-gradient(135deg, #17275f, #30227d);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(26, 35, 94, 0.22);
}
.login-btn:hover {
    background: linear-gradient(135deg, #213a86, #4932a4);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.location-btn {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}
.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(25, 54, 110, 0.15);
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 23px;
}
.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 78px;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(38, 174, 228, 0.16),
            transparent 35%
        ),
        linear-gradient(135deg, #fafbff, #eef4ff);
}
.hero:before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(91, 75, 241, 0.12);
    left: -210px;
    top: -160px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
    position: relative;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #edf4ff;
    color: #1767df;
    font-size: 13px;
    font-weight: 850;
}
.hero h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin: 22px 0 22px;
    max-width: 760px;
}
.gradient-text {
    background: linear-gradient(100deg, var(--blue-2), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 690px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 32px 0 28px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    padding: 14px 21px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: 0.25s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--blue-2), var(--violet));
    color: #fff;
    box-shadow: 0 14px 28px rgba(56, 93, 239, 0.24);
}
.btn-dark {
    background: var(--navy);
    color: #fff;
}
.btn-light {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--line);
}
.btn:hover {
    transform: translateY(-2px);
}
.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #34415d;
    font-size: 14px;
    font-weight: 700;
}
.trust-row span:before {
    content: "✓";
    color: var(--green);
    margin-right: 7px;
}

.offer {
    display: inline-flex;
    padding: 8px 11px;
    background: #fff1b9;
    border-radius: 9px;
    color: #795b00;
    font-size: 12px;
    font-weight: 850;
}
.status-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: #e5fff0;
    color: #198b4c;
    font-size: 12px;
    font-weight: 850;
}
.mock-browser {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}
.browser-bar {
    height: 34px;
    background: #f7f9fd;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
    border-bottom: 1px solid var(--line);
}
.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cad4e5;
}
.mock-content {
    padding: 15px;
}
.step-list {
    display: grid;
    gap: 9px;
}
.step-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}
.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, #eaf4ff, #efeaff);
    display: grid;
    place-items: center;
    color: #1268f2;
    font-weight: 900;
    flex: none;
}
.rating-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f7fbff, #f4f0ff);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
}
.rating-end strong {
    color: #e28b00;
}
.rating-end span:last-child {
    color: #66728b;
    font-weight: 700;
}
.section,
.fee-calculator-section,
.sample-section,
.story-section,
.global-section,
.why-section,
.faq-preview,
.available-section {
    padding: 88px 0;
}
.section-muted {
    background: var(--soft);
}
.section-head,
.story-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 42px;
}
.section-head h2,
.calculator-heading h2,
.split-heading h2,
.story-heading h2,
.global-copy h2,
.faq-head h2,
.available-head h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    margin: 14px 0;
}
.section-head p,
.calculator-heading p,
.split-heading p,
.story-heading p,
.global-copy p,
.faq-head p,
.available-head p {
    color: var(--muted);
    font-size: 16px;
}
.fee-calculator-section {
    background: linear-gradient(180deg, #fff, #f4f7ff);
}
.calculator-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 28px;
}
.calc-trust {
    background: #fff;
    border: 1px solid var(--line);
    padding: 13px 16px;
    border-radius: 15px;
    box-shadow: 0 8px 28px rgba(42, 59, 105, 0.08);
    font-weight: 800;
}
.calc-trust small {
    color: var(--muted);
    font-weight: 600;
}
.modern-calculator {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    border: 1px solid #e3e9f5;
}
.calc-form-panel {
    padding: 32px;
}
.calc-panel-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}
.calc-panel-title .title-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue-2), var(--violet));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(70, 77, 239, 0.24);
}
.calc-panel-title h3 {
    margin: 0;
    font-size: 21px;
}
.calc-panel-title p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 12.5px;
}
.calc-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field {
    display: grid;
    gap: 7px;
}
.field.full {
    grid-column: 1/-1;
}
.field label {
    font-size: 13px;
    font-weight: 800;
    color: #33405a;
    display: block;
    margin-bottom: 7px;
}
.field input,
.field select,
.extra-copy select {
    width: 100%;
    height: 48px;
    border: 1px solid #d7dfef;
    border-radius: 13px;
    padding: 0 14px;
    outline: 0;
    background: #fff;
    color: var(--ink);
}
.field input:focus,
.field select:focus,
.extra-copy select:focus {
    border-color: #668ef2;
    box-shadow: 0 0 0 4px rgba(45, 104, 242, 0.1);
}
.input-prefix,
.input-suffix {
    display: flex;
    align-items: center;
    border: 1px solid #d7dfef;
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
}
.input-prefix span,
.input-suffix span {
    padding: 0 14px;
    color: #66728b;
    font-weight: 800;
}
.input-prefix input,
.input-suffix input {
    border: 0;
    border-radius: 0;
    flex: 1;
}
.rent-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}
.rent-toggle input {
    display: none;
}
.rent-toggle label span {
    display: flex;
    justify-content: center;
    padding: 13px;
    border: 1px solid #d7dfef;
    border-radius: 13px;
    cursor: pointer;
}
.rent-toggle input:checked + span {
    background: #edf4ff;
    border-color: #8cb0ff;
    color: #135dd2;
}
.varying-home {
    padding: 17px;
    border: 1px dashed #cfd9ee;
    border-radius: 16px;
    background: #f9fbff;
}
.varying-home[hidden] {
    display: none !important;
}
.varying-head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    margin-bottom: 14px;
}
.varying-head small {
    display: block;
    color: var(--muted);
}
.varying-head input {
    width: 95px;
}
.slab-labels,
.slab-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 8px;
}
.slab-labels {
    font-size: 11px;
    text-transform: uppercase;
    color: #7a859d;
    font-weight: 850;
    margin: 0 0 7px;
}
.slab-row {
    margin-bottom: 8px;
}
.slab-row input {
    height: 42px;
}
.extra-visit-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-top: 20px;
    padding: 17px;
    border-radius: 17px;
    background: linear-gradient(135deg, #edfff6, #edf6ff);
    border: 1px solid #d9eee6;
}
.extra-icon {
    font-size: 25px;
}
.extra-copy h4 {
    margin: 0 0 4px;
}
.extra-copy p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 12px;
}
.extra-hint {
    font-size: 12px;
    color: #627089;
    margin-top: 6px;
}
.whatsapp-mini {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #26ad62;
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 850;
    font-size: 13px;
    white-space: nowrap;
}
.whatsapp-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.calc-result-panel {
    padding: 33px;
    background: linear-gradient(
        155deg,
        var(--navy-2),
        var(--navy) 58%,
        #30287c
    );
    color: #fff;
    display: flex;
    flex-direction: column;
}
.result-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b9c3ee;
}
.result-top small {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 5px 9px;
}
.result-price {
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
    margin: 25px 0;
}
.result-breakup {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-top: 18px;
    display: grid;
    gap: 10px;
}
.result-breakup div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #cbd2ee;
}
.result-breakup b {
    color: #fff;
}
.rent-summary {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 12px;
    margin: 20px 0;
    color: #e3e8ff;
}
.result-actions {
    display: grid;
    gap: 9px;
    margin-top: auto;
}
.result-actions .btn {
    width: 100%;
}
.btn-quotation {
    background: #fff;
    color: var(--navy);
}
.calc-note {
    font-size: 11px;
    color: #aeb9de;
    margin: 12px 0 0;
    text-align: center;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card,
.why-card,
.doc,
.sample-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(28, 43, 85, 0.06);
}
.card {
    padding: 26px;
}
.card h3 {
    margin: 15px 0 8px;
}
.card p {
    color: var(--muted);
}
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #e7f7ff, #efeaff);
    display: grid;
    place-items: center;
    font-size: 25px;
}
.sample-section {
    background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
}
.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}
.split-heading > div:first-child {
    max-width: 760px;
}
.legal-chip {
    padding: 12px 15px;
    border-radius: 14px;
    background: #f3f7ff;
    border: 1px solid var(--line);
    font-weight: 800;
    color: #38507e;
    box-shadow: 0 10px 25px rgba(9, 30, 66, 0.06);
}
.sample-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.sample-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 145px 1fr;
}
.sample-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #fff;
    font-weight: 850;
}
.sample-residential .sample-art {
    background: linear-gradient(160deg, #1b8fe8, #4b62ef);
}
.sample-commercial .sample-art {
    background: linear-gradient(160deg, #46258d, #7248e9);
}
.building-emoji {
    font-size: 48px;
}
.sample-copy {
    padding: 27px;
}
.sample-label {
    font-size: 11px;
    letter-spacing: 1.2px;
    color: #647089;
    font-weight: 850;
}
.sample-copy h3 {
    font-size: 24px;
    margin: 8px 0;
}
.sample-copy p {
    color: var(--muted);
}
.sample-points {
    display: grid;
    gap: 5px;
    font-size: 13px;
    font-weight: 750;
    margin: 15px 0;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1767df;
    font-weight: 850;
    border-bottom: 1px solid #1767df;
    padding-bottom: 3px;
}
.sample-disclaimer {
    margin-top: 17px;
    color: #66728b;
    font-size: 12px;
}
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.process .card {
    padding: 23px;
}
.process .process-icon {
    font-size: 30px;
}
.process h3 {
    font-size: 19px;
}
.process p {
    font-size: 13px;
}
.story-section {
    background: linear-gradient(135deg, #27206b, #172052);
    color: #fff;
}
.story-heading p {
    color: #cbd2f2;
}
.story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.story-stat {
    padding: 25px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.065);
}
.story-icon {
    font-size: 32px;
}
.story-stat strong {
    display: block;
    font-size: 30px;
    margin: 12px 0 6px;
}
.story-stat h3 {
    font-size: 14px;
    margin: 0;
    color: #c9d5ff;
}
.story-note {
    text-align: center;
    color: #b8c4e8;
    margin-top: 20px;
    font-size: 12px;
}
.global-section {
    background: #f8faff;
}
.global-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}
.global-copy h2 span {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-thickness: 3px;
}
.coverage-tabs {
    display: flex;
    gap: 8px;
    margin: 22px 0 14px;
}
.coverage-tab {
    padding: 10px 14px;
    border-radius: 11px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 850;
    cursor: pointer;
}
.coverage-tab.active {
    background: var(--navy);
    color: #fff;
}
.coverage-panel {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}
.coverage-panel.active {
    display: grid;
}
.coverage-panel span {
    padding: 12px 12px;
    border-radius: 12px;
    background: #edf2fb;
    font-weight: 750;
    font-size: 13px;
    transition: 0.35s;
}
.global-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
}
.text-link {
    color: #1667e8;
    font-weight: 850;
}
.world-visual {
    height: 420px;
    border-radius: 34px;
    background: radial-gradient(
        circle at center,
        #d8f5ff,
        #eef2ff 44%,
        #fff 45%
    );
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
}
.world-core {
    font-size: 110px;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(22, 83, 160, 0.18));
}
.world-orbit {
    position: absolute;
    border: 1px dashed #78a5e8;
    border-radius: 50%;
}
.orbit-one {
    width: 280px;
    height: 280px;
}
.orbit-two {
    width: 360px;
    height: 360px;
}
.map-pin {
    position: absolute;
    font-size: 24px;
    z-index: 4;
}
.map-pin small {
    display: block;
    background: #fff;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.pin-a {
    left: 15%;
    top: 24%;
}
.pin-b {
    right: 18%;
    top: 45%;
}
.pin-c {
    left: 28%;
    bottom: 17%;
}
.pin-d {
    right: 24%;
    top: 18%;
}
.world-badge {
    position: absolute;
    bottom: 20px;
    background: var(--navy);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 850;
}
.contact-banner {
    padding: 48px 0;
    background: linear-gradient(135deg, #2a236f, #171346);
    color: #fff;
}
.contact-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.contact-kicker {
    font-size: 12px;
    letter-spacing: 1.6px;
    color: #9fdcff;
    font-weight: 850;
}
.contact-banner h2 {
    font-size: 42px;
    margin: 5px 0;
}
.contact-banner p {
    color: #c6ceea;
}
.contact-number {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0 12px;
}
.contact-number .wa-contact-icon {
    width: 52px;
    height: 52px;
    grid-row: 1/3;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.28);
}
.contact-number .wa-contact-icon svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}
.contact-number strong {
    font-size: 38px;
}
.contact-number small {
    color: #bfc8e8;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.why-card {
    padding: 26px;
}
.why-card > div {
    font-size: 32px;
}
.why-card h3 {
    margin: 12px 0 8px;
}
.why-card p {
    color: var(--muted);
}
.faq-preview {
    background: #f7f9ff;
}
.faq-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 30px;
}
.faq-list {
    max-width: 990px;
    margin: auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: 0 10px 25px rgba(26, 43, 82, 0.05);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 19px 21px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-weight: 850;
    cursor: pointer;
    color: var(--ink);
}
.faq-question span:last-child {
    font-size: 24px;
    color: #1672e7;
    transition: 0.25s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}
.faq-answer p {
    margin: 0;
    padding: 0 21px 20px;
    color: var(--muted);
}
.faq-item.open .faq-answer {
    max-height: 220px;
}
.faq-item.open .faq-question span:last-child {
    transform: rotate(45deg);
}
.faq-more {
    text-align: center;
    margin-top: 22px;
}
.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}
.doc {
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
}
.doc-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: #edf4ff;
    display: grid;
    place-items: center;
    font-size: 23px;
    flex: none;
}
.doc b {
    display: block;
}
.doc small {
    color: var(--muted);
}
.available-section {
    background: linear-gradient(180deg, #fff, #f3f7ff);
    padding-top: 30px;
}
.available-head {
    text-align: left;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}
.city-cloud {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.city-chip {
    padding: 11px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    color: #2959bb;
    font-weight: 750;
    font-size: 13px;
    box-shadow: 0 7px 20px rgba(29, 58, 115, 0.05);
}
.updates-strip {
    margin-top: 34px;
    background: linear-gradient(90deg, #29a9df, #357fe9);
    color: #fff;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.updates-strip strong {
    font-size: 20px;
}
.cta-band {
    background: linear-gradient(135deg, var(--blue-2), var(--violet));
    color: #fff;
    padding: 34px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer {
    background: #28216d;
    color: #fff;
    padding: 62px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.15fr;
    gap: 38px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}
.footer-brand img {
    width: 265px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}
.footer-brand strong {
    font-size: 21px;
    display: block;
}
.footer-brand small {
    color: #c2caea;
}
.footer a {
    display: block;
    color: #d9dff4;
    margin: 8px 0;
    font-size: 14px;
}
.footer p {
    color: #d0d7ef;
    font-size: 14px;
}
.footer h4 {
    font-size: 16px;
    margin: 0 0 13px;
}
.lexaltis-link {
    color: #8edfff !important;
    font-weight: 800;
}
.other-brand {
    margin-top: 18px;
}
.other-brand img {
    width: 210px;
    border-radius: 8px;
    background: #fff;
    padding: 7px;
}
.footer-bottom {
    margin-top: 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 19px 0;
    color: #bfc7e8;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.quick-rail {
    position: fixed;
    right: 0;
    top: 46%;
    z-index: 900;
    display: grid;
    gap: 8px;
}
.quick-rail a {
    width: 64px;
    height: 62px;
    border-radius: 19px 0 0 19px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 26px rgba(31, 28, 85, 0.24);
}
.quick-rail a:hover {
    width: 190px;
    background: linear-gradient(135deg, var(--navy), #2450a6);
}
.quick-rail svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: none;
}
.quick-rail a.whatsapp-action svg {
    fill: #25d366;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    width: 25px;
    height: 25px;
}
.quick-rail b {
    white-space: nowrap;
    font-size: 13px;
}
.scroll-top {
    position: fixed;
    right: 28px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 0;
    padding: 4px;
    background: conic-gradient(var(--blue-2) var(--progress, 0%), #dce6f7 0);
    z-index: 950;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(21, 50, 112, 0.22);
}
.scroll-top:before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: linear-gradient(145deg, #30287c, #106bdd);
}
.scroll-top span {
    position: relative;
    z-index: 2;
    font-size: 20px;
    line-height: 1;
}
.scroll-top i {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    bottom: 7px;
}
.scroll-top.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
}
.location-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 48, 0.62);
    backdrop-filter: blur(7px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.location-modal.open {
    display: flex;
}
.location-box {
    width: min(980px, 100%);
    max-height: 88vh;
    overflow: auto;
    background: #fff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    position: relative;
}
.loc-close {
    position: absolute;
    right: 18px;
    top: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 25px;
    cursor: pointer;
}
.location-box h3 {
    font-size: 28px;
    margin: 0 0 4px;
}
.location-box p {
    color: var(--muted);
    margin-top: 0;
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.loc {
    padding: 18px 13px;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    transition: 0.25s;
}
.loc:hover {
    transform: translateY(-3px);
    border-color: #8cb0ff;
    background: #f5f8ff;
}
.loc-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #edf4ff;
    display: grid;
    place-items: center;
    font-size: 20px;
}
@keyframes cardSwap {
    0% {
        opacity: 0.15;
        transform: translateY(7px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.updates-section {
    padding: 0 0 34px;
    background: #fff;
}
.updates-section .updates-strip {
    margin-top: 0;
}
.main-location-cloud {
    grid-template-columns: repeat(6, 1fr);
    gap: 7px 28px;
}
.main-location-cloud .city-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: flex-start;
    min-height: auto;
    padding: 2px 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: #1767df;
    font-size: 15px;
}
.main-location-cloud .city-chip span {
    font-size: 14px;
}
.main-location-cloud .city-chip:hover {
    transform: translateX(3px);
    color: var(--navy);
    box-shadow: none;
}
.available-section .available-head {
    margin-bottom: 20px;
}
@media (max-width: 1240px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-wrap.mobile-open .nav-links {
        display: flex;
        position: absolute;
        top: 103px;
        left: 20px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 20px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .header-inner {
        position: relative;
    }
    .header-actions .action-btn {
        padding: 12px 13px;
    }
    .hero-grid,
    .global-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        gap: 45px;
    }
    .world-visual {
        height: 360px;
    }
    .process {
        grid-template-columns: 1fr 1fr;
    }
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .city-cloud {
        grid-template-columns: repeat(4, 1fr);
    }
    .main-location-cloud {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 800px) {
    .topbar-inner,
    .top-contact,
    .top-right {
        justify-content: center;
    }
    .topbar-inner {
        padding: 9px 0;
        flex-direction: column;
        gap: 7px;
    }
    .header-inner {
        min-height: 86px;
    }
    .brand {
        min-width: auto;
    }
    .brand img {
        width: 170px;
        height: 62px;
    }
    .header-actions {
        display: none;
    }
    .nav-wrap.mobile-open .header-actions {
        display: flex;
        position: absolute;
        top: 322px;
        left: 20px;
        right: 20px;
        background: #fff;
        padding: 12px 20px 20px;
        flex-wrap: wrap;
        box-shadow: 0 20px 40px rgba(25, 40, 82, 0.1);
        border-radius: 0 0 18px 18px;
    }
    .hero {
        padding-top: 62px;
    }
    .hero h1 {
        letter-spacing: -2px;
    }
    .modern-calculator {
        grid-template-columns: 1fr;
    }
    .calc-fields {
        grid-template-columns: 1fr;
    }
    .field.full {
        grid-column: auto;
    }
    .extra-visit-box {
        grid-template-columns: auto 1fr;
    }
    .whatsapp-mini {
        grid-column: 1/-1;
        justify-content: center;
    }
    .cards,
    .why-grid,
    .sample-grid {
        grid-template-columns: 1fr;
    }
    .sample-card {
        grid-template-columns: 110px 1fr;
    }
    .process {
        grid-template-columns: 1fr;
    }
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
    .calculator-heading,
    .split-heading,
    .available-head,
    .contact-banner-inner,
    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
    .contact-number strong {
        font-size: 29px;
    }
    .doc-grid {
        grid-template-columns: 1fr;
    }
    .coverage-panel {
        grid-template-columns: 1fr 1fr;
    }
    .city-cloud {
        grid-template-columns: repeat(3, 1fr);
    }
    .main-location-cloud {
        grid-template-columns: repeat(3, 1fr);
    }
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-rail {
        top: auto;
        bottom: 100px;
    }
    .quick-rail a {
        width: 54px;
        height: 54px;
        padding: 0 16px;
    }
    .quick-rail a:hover {
        width: 54px;
    }
}
@media (max-width: 520px) {
    .container {
        width: min(100% - 26px, var(--container));
    }
    .top-contact {
        gap: 10px;
        font-size: 12px;
    }
    .top-right > span {
        display: none;
    }
    .hero h1 {
        font-size: 46px;
    }
    .hero p {
        font-size: 16px;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }
    .sample-card {
        grid-template-columns: 1fr;
    }
    .sample-art {
        min-height: 130px;
    }
    .coverage-panel {
        grid-template-columns: 1fr;
    }
    .city-cloud {
        grid-template-columns: 1fr 1fr;
    }
    .main-location-cloud {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .calculator-heading h2,
    .split-heading h2,
    .story-heading h2,
    .global-copy h2,
    .faq-head h2,
    .available-head h2 {
        font-size: 34px;
    }
    .result-price {
        font-size: 48px;
    }
    .scroll-top {
        right: 16px;
        bottom: 17px;
    }
    .quick-rail {
        right: 0;
    }
}

/* v5 targeted refinements */
.brand img {
    width: 188px;
    height: 68px;
}
.header-inner {
    min-height: 94px;
}

.visual-card {
    padding-bottom: 38px;
}
.rating-end {
    position: absolute;
    left: -28px;
    bottom: -24px;
    z-index: 6;
    width: max-content;
    max-width: calc(100% - 36px);
    margin: 0;
    padding: 15px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e2e9f5;
    box-shadow: 0 18px 42px rgba(24, 43, 83, 0.16);
    font-size: 15px;
    font-weight: 900;
    justify-content: flex-start;
}
.rating-end strong {
    color: var(--ink);
}
.turnaround-float {
    position: absolute;
    right: -24px;
    top: 76px;
    z-index: 6;
    padding: 14px 18px;
    border-radius: 19px;
    background: #fff;
    border: 1px solid #e2e9f5;
    box-shadow: 0 18px 42px rgba(24, 43, 83, .16);
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

/* Compact coupon offer inside the quotation panel */
.offer {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.offer:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(121, 91, 0, 0.12);
}
.calc-result-panel .coupon-offer-card {
    width: 100%;
    margin: 12px 0 0;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    box-shadow: none;
    scroll-margin-top: 130px;
    color: #fff;
}
.coupon-offer-head {
    min-height: 0;
    padding: 7px 10px;
    border-radius: 999px;
    background: #198b54;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.6px;
    white-space: nowrap;
}
.coupon-offer-body {
    display: contents;
}
.coupon-copy {
    min-width: 0;
    text-align: left;
}
.coupon-kicker {
    display: none;
}
.coupon-copy h3 {
    margin: 0 0 2px;
    font-size: 13px;
    line-height: 1.25;
    color: #fff;
}
.coupon-copy p {
    margin: 0;
    color: #cbd5f5;
    font-size: 10px;
    line-height: 1.35;
}
.coupon-apply-btn {
    width: auto;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    touch-action: manipulation;
    white-space: nowrap;
}
.coupon-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(3, 9, 46, 0.18);
}
.coupon-apply-btn:focus-visible {
    outline: 3px solid rgba(158, 230, 255, 0.42);
    outline-offset: 2px;
}
.coupon-apply-btn.applied {
    background: #dff7e9;
    border-color: #8bd0a7;
    color: #137746;
}
.coupon-success {
    grid-column: 1/-1;
    margin-top: -2px;
    padding: 4px 2px 0;
    background: transparent;
    border: 0;
    color: #9df0bd;
    text-align: center;
    font-size: 10px;
    font-weight: 850;
}
.coupon-result b {
    color: #8ff0b9 !important;
}
.coupon-result[hidden] {
    display: none !important;
}
@media (max-width: 600px) {
    .calc-result-panel .coupon-offer-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
        padding: 10px;
    }
    .coupon-apply-btn {
        grid-column: 1/-1;
        width: 100%;
        min-height: 36px;
    }
    .coupon-copy h3 {
        font-size: 12px;
    }
    .coupon-copy p {
        font-size: 9.5px;
    }
}
/* Cross-browser/device resilience */
:where(a, button, input, select) {
    -webkit-tap-highlight-color: transparent;
}
button {
    -webkit-appearance: none;
    appearance: none;
}
input,
select {
    max-width: 100%;
    min-width: 0;
}
.header-inner,
.nav-wrap,
.hero-grid > *,
.modern-calculator > *,
.coupon-offer-body > *,
.global-grid > * {
    min-width: 0;
}
h1,
h2,
h3,
p,
a,
span {
    overflow-wrap: break-word;
}
@supports not (
    (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
    .site-header {
        background: #fff;
    }
}
@media (max-width: 1100px) {
    .header-inner {
        min-height: 92px;
    }
    .brand img {
        width: 180px;
        height: 66px;
    }
    .nav-links {
        gap: 12px;
        font-size: 12px;
    }
    .action-btn {
        padding: 12px 14px;
        border-radius: 15px;
    }
    .modern-calculator {
        grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    }
}
@media (max-width: 920px) {
    .modern-calculator {
        grid-template-columns: 1fr;
    }
    .calc-result-panel {
        min-height: auto;
    }
    .result-actions {
        margin-top: 24px;
    }
}
@media (max-width: 680px) {
    .coupon-offer-head {
        min-height: 46px;
    }
    .coupon-offer-body {
        padding: 15px;
    }
    .coupon-copy h3 {
        font-size: 16px;
    }
    .calc-form-panel,
    .calc-result-panel {
        padding: 24px 20px;
    }
    .result-price {
        font-size: 46px;
    }
    .result-breakup div {
        font-size: 14px;
    }
    .rent-summary {
        font-size: 14px;
    }
    .rent-toggle label span {
        padding: 12px 8px;
        font-size: 13px;
    }
}
@media (max-width: 420px) {
    .container {
        width: min(100% - 20px, var(--container));
    }
    .calc-form-panel,
    .calc-result-panel {
        padding: 20px 15px;
    }
    .calc-panel-title {
        align-items: flex-start;
    }
    .calc-panel-title .title-icon {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }
    .result-top {
        font-size: 10px;
    }
    .result-price {
        font-size: 42px;
    }
    .coupon-offer-body {
        padding: 14px;
    }
    .coupon-copy h3 {
        font-size: 15px;
    }
    .coupon-copy p {
        font-size: 12px;
    }
    .coupon-apply-btn {
        min-height: 44px;
    }
}

/* Restore the calculator quotation colours from the approved v6 design */
.calc-result-panel {
    background: linear-gradient(155deg, #17134f, #28216d 55%, #0b5aa6);
}
.result-top {
    align-items: center;
    color: #9ee6ff;
    font-weight: 900;
    letter-spacing: 1.1px;
}
.result-top small {
    border: 0;
    border-radius: 0;
    padding: 0;
    color: #9ee6ff;
    font-weight: 900;
}
.result-price {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -2px;
    margin: 14px 0 24px;
}
.result-breakup {
    padding-top: 0;
    gap: 0;
}
.result-breakup div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: #ced5f5;
}
.rent-summary {
    background: rgba(255, 255, 255, 0.1);
    color: #dce7ff;
}

/* Five non-overlapping international location points */
.globe-locations {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}
.map-pin {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 22px;
    animation: globePinFloat 3.2s ease-in-out infinite;
}
.map-pin small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 126px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #fff;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 900;
    color: #243756;
    box-shadow: 0 7px 18px rgba(27, 55, 99, 0.15);
}
.pin-1 {
    left: 7%;
    top: 15%;
}
.pin-2 {
    right: 7%;
    top: 16%;
    animation-delay: 0.35s;
}
.pin-3 {
    right: 3%;
    top: 47%;
    flex-direction: row-reverse;
    animation-delay: 0.7s;
}
.pin-4 {
    right: 12%;
    bottom: 22%;
    flex-direction: row-reverse;
    animation-delay: 1.05s;
}
.pin-5 {
    left: 9%;
    bottom: 22%;
    animation-delay: 1.4s;
}
@keyframes globePinFloat {
    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 800px) {
    .brand img {
        width: 155px;
        height: 56px;
    }
    .visual-card {
        padding-bottom: 30px;
    }
    .rating-end {
        left: 12px;
        bottom: -22px;
        padding: 12px 15px;
        font-size: 13px;
    }
    .turnaround-float {
        right: 12px;
        top: 72px;
        padding: 11px 14px;
        font-size: 13px;
    }
}
@media (max-width: 520px) {
    .brand img {
        width: 146px;
        height: 52px;
    }
    .rating-end {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 14px 0 -4px;
        max-width: 100%;
    }
    .turnaround-float {
        right: 10px;
        top: 70px;
        font-size: 11px;
        padding: 9px 11px;
    }
    .map-pin {
        font-size: 18px;
        gap: 3px;
    }
    .map-pin small {
        max-width: 88px;
        font-size: 8.5px;
        padding: 4px 6px;
    }
    .pin-1 {
        left: 3%;
        top: 13%;
    }
    .pin-2 {
        right: 3%;
        top: 14%;
    }
    .pin-3 {
        right: 1%;
        top: 46%;
    }
    .pin-4 {
        right: 6%;
        bottom: 24%;
    }
    .pin-5 {
        left: 4%;
        bottom: 24%;
    }
}

/* Final compact-offer safeguards — keep it small on every device */
.calc-result-panel .coupon-offer-card {
    margin-top: 10px !important;
    padding: 9px 11px !important;
}
.coupon-offer-head {
    min-height: 0 !important;
    padding: 6px 9px !important;
    font-size: 10px !important;
}
.coupon-offer-body {
    display: contents !important;
    padding: 0 !important;
}
.coupon-copy h3 {
    font-size: 13px !important;
    margin: 0 0 2px !important;
}
.coupon-copy p {
    font-size: 10px !important;
    line-height: 1.3 !important;
}
.coupon-apply-btn {
    width: auto !important;
    min-height: 33px !important;
    padding: 6px 11px !important;
    font-size: 11px !important;
}
.coupon-success {
    padding: 3px 2px 0 !important;
    font-size: 10px !important;
}
.calc-note {
    margin-top: 8px;
}
@media (max-width: 600px) {
    .calc-result-panel .coupon-offer-card {
        grid-template-columns: auto minmax(0, 1fr) !important;
        padding: 9px !important;
    }
    .coupon-copy h3 {
        font-size: 12px !important;
    }
    .coupon-copy p {
        font-size: 9.5px !important;
    }
    .coupon-apply-btn {
        grid-column: 1/-1;
        width: 100% !important;
        min-height: 35px !important;
    }
}

/* Compact post-agreement legal consultation benefit */
.legal-consult-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    margin-top: 16px;
    padding: 14px 15px;
    border: 1px solid #d9dcff;
    border-radius: 18px;
    background: linear-gradient(135deg, #faf7ff 0%, #f1f4ff 48%, #edfaff 100%);
    box-shadow: 0 12px 28px rgba(44, 40, 111, 0.09);
    overflow: visible;
}
.legal-consult-card::before,
.legal-consult-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    z-index: -1;
    pointer-events: none;
}
.legal-consult-card::before {
    width: 96px;
    height: 96px;
    right: 8%;
    top: -58px;
    background: rgba(103, 76, 255, 0.08);
}
.legal-consult-card::after {
    width: 72px;
    height: 72px;
    left: 28%;
    bottom: -52px;
    background: rgba(37, 174, 228, 0.08);
}
.legal-consult-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #241a6c, #6448e8);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 22px rgba(49, 37, 138, 0.22);
}
.legal-consult-copy {
    min-width: 0;
}
.legal-consult-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 3px;
}
.legal-consult-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 8.5px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}
.legal-limited {
    background: #e8e4ff;
    color: #382b9d;
}
.legal-value {
    background: #e5f8ec;
    color: #137846;
}
.legal-consult-copy h4 {
    margin: 0;
    color: #15213b;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}
.legal-consult-copy h4 strong {
    color: #5139d4;
}
.legal-consult-copy p {
    margin: 4px 0 0;
    color: #64718b;
    font-size: 10.5px;
    line-height: 1.35;
}
.legal-consult-meta {
    margin-top: 5px;
    color: #31405f;
    font-size: 9.5px;
    font-weight: 800;
    white-space: normal;
}
.consult-terms {
    position: relative;
    justify-self: end;
}
.consult-terms summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid #cec9f8;
    border-radius: 999px;
    background: #fff;
    color: #30266f;
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(49, 39, 112, 0.08);
}
.consult-terms summary::-webkit-details-marker {
    display: none;
}
.consult-terms summary:hover {
    border-color: #8d7ff0;
    transform: translateY(-1px);
}
.consult-terms summary:focus-visible {
    outline: 3px solid rgba(99, 75, 231, 0.22);
    outline-offset: 2px;
}
.consult-terms-popover {
    display: none;
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    z-index: 25;
    width: min(390px, 72vw);
    max-height: 300px;
    overflow: auto;
    padding: 14px 15px;
    border: 1px solid #d9def1;
    border-radius: 16px;
    background: #fff;
    color: #45516b;
    box-shadow: 0 22px 52px rgba(20, 28, 67, 0.22);
    font-size: 10.5px;
    line-height: 1.45;
}
.consult-terms-popover::after {
    content: "";
    position: absolute;
    right: 26px;
    bottom: -7px;
    width: 13px;
    height: 13px;
    background: #fff;
    border-right: 1px solid #d9def1;
    border-bottom: 1px solid #d9def1;
    transform: rotate(45deg);
}
.consult-terms:hover .consult-terms-popover,
.consult-terms:focus-within .consult-terms-popover,
.consult-terms[open] .consult-terms-popover {
    display: block;
}
.consult-terms-popover strong {
    display: block;
    margin-bottom: 7px;
    color: #171b4f;
    font-size: 12px;
}
.consult-terms-popover ul {
    margin: 0;
    padding-left: 17px;
}
.consult-terms-popover li + li {
    margin-top: 4px;
}
.legal-consult-note {
    color: #795d00;
    font-weight: 850;
}
@media (max-width: 680px) {
    .legal-consult-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
        padding: 13px;
    }
    .consult-terms {
        grid-column: 2;
        justify-self: start;
    }
    .consult-terms-popover {
        left: 0;
        right: auto;
        width: min(390px, calc(100vw - 64px));
    }
    .consult-terms-popover::after {
        left: 28px;
        right: auto;
    }
}
@media (max-width: 420px) {
    .legal-consult-icon {
        width: 43px;
        height: 43px;
        font-size: 21px;
    }
    .legal-consult-copy h4 {
        font-size: 13.5px;
    }
    .legal-consult-copy p {
        font-size: 10px;
    }
    .legal-consult-meta {
        font-size: 9px;
    }
    .consult-terms summary {
        min-height: 32px;
        padding: 6px 9px;
    }
    .consult-terms-popover {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 16px;
        width: auto;
        max-height: 62vh;
        z-index: 1200;
    }
    .consult-terms-popover::after {
        display: none;
    }
}

/* v11 — requested header logo refinement only */
.site-header .brand {
    margin-left: 34px;
}
.site-header .brand img {
    width: 150px;
    height: 54px;
}
@media (max-width: 1100px) {
    .site-header .brand {
        margin-left: 24px;
    }
    .site-header .brand img {
        width: 144px;
        height: 52px;
    }
}
@media (max-width: 800px) {
    .site-header .brand {
        margin-left: 16px;
    }
    .site-header .brand img {
        width: 124px;
        height: 45px;
    }
}
@media (max-width: 520px) {
    .site-header .brand {
        margin-left: 10px;
    }
    .site-header .brand img {
        width: 117px;
        height: 42px;
    }
}

/* v14 — restore only the three approved old-template visuals */
/* 1) Old hero/top background */
.hero {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(41, 198, 246, 0.24),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 10%,
            rgba(115, 69, 255, 0.16),
            transparent 25%
        ),
        linear-gradient(180deg, #f8fbff 0, #fff 100%);
}
.hero:before {
    display: none;
}

/* 2) Old Residential / Commercial sample-card boxes */
.sample-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #fff, #f4f9ff);
}
.sample-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sample-card {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    min-height: 350px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 22px 55px rgba(9, 30, 66, 0.09);
    transition: 0.25s;
}
.sample-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 65px rgba(9, 30, 66, 0.14);
}
.sample-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 25px;
    position: relative;
    overflow: hidden;
    gap: 11px;
    font-weight: 850;
}
.sample-art:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 22px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    right: -75px;
    bottom: -75px;
}
.sample-residential .sample-art {
    background: linear-gradient(145deg, #096cff, #33c6ec);
}
.sample-commercial .sample-art {
    background: linear-gradient(145deg, #2a216d, #7750f7);
}
.building-emoji {
    font-size: 82px;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.18));
    position: relative;
    z-index: 1;
}
.sample-art span {
    font-size: 20px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}
.sample-copy {
    padding: 34px;
}
.sample-label {
    font-size: 11px;
    color: var(--blue-2);
    letter-spacing: 1.1px;
    font-weight: 900;
}
.sample-copy h3 {
    font-size: 27px;
    margin: 7px 0;
}
.sample-copy p {
    color: var(--muted);
}
.sample-points {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    margin: 18px 0;
}
.sample-points span {
    color: #344867;
}

/* 3) Old compact emoji sidebar icons */
.quick-rail {
    position: fixed;
    right: 0;
    top: 48%;
    transform: translateY(-50%);
    z-index: 900;
    display: grid;
    gap: 8px;
}
.quick-rail a {
    width: 64px;
    min-height: 62px;
    height: 62px;
    background: #28216d;
    color: #fff;
    border-radius: 18px 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    box-shadow: 0 10px 30px rgba(11, 19, 55, 0.24);
    transition: 0.25s;
    overflow: hidden;
}
.quick-rail a span {
    font-size: 24px;
    min-width: 64px;
    text-align: center;
    line-height: 1;
}
.quick-rail a b {
    font-size: 12px;
    white-space: nowrap;
    width: 0;
    max-width: 0;
    opacity: 0;
    transition: 0.25s;
}
.quick-rail a:hover {
    width: 185px;
    justify-content: flex-start;
    background: linear-gradient(135deg, #27216b, #0b63f6);
}
.quick-rail a:hover b {
    width: auto;
    max-width: 150px;
    opacity: 1;
    padding-right: 16px;
}

@media (max-width: 980px) {
    .sample-grid {
        grid-template-columns: 1fr;
    }
    .sample-card {
        min-height: 320px;
    }
}
@media (max-width: 520px) {
    .sample-section {
        padding: 72px 0;
    }
    .sample-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 24px;
    }
    .sample-art {
        min-height: 170px;
        padding: 22px;
    }
    .building-emoji {
        font-size: 64px;
    }
    .sample-copy {
        padding: 26px 22px;
    }
    .quick-rail a {
        width: 56px;
        min-height: 56px;
        height: 56px;
        border-radius: 17px 0 0 17px;
    }
    .quick-rail a span {
        font-size: 22px;
        min-width: 56px;
    }
    .quick-rail a:hover {
        width: 56px;
    }
    .quick-rail a:hover b {
        width: 0;
        max-width: 0;
        opacity: 0;
        padding: 0;
    }
}

/* Final responsive and cross-browser hardening */
:root {
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: 118px;
}
body {
    min-width: 320px;
    min-height: 100%;
    overscroll-behavior-y: none;
}
img,
svg,
video {
    max-width: 100%;
    height: auto;
}
input,
select,
button,
textarea {
    border-radius: 0;
}
:where(a, button, input, select, summary):focus-visible {
    outline: 3px solid rgba(18, 104, 242, 0.28);
    outline-offset: 3px;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: 10px;
    z-index: 5000;
    transform: translateY(-150%);
    padding: 10px 15px;
    border-radius: 10px;
    background: #fff;
    color: #171348;
    font-weight: 850;
    box-shadow: 0 12px 30px rgba(16, 24, 64, 0.2);
    transition: transform 0.2s;
}
.skip-link:focus {
    transform: translateY(0);
}
body.menu-locked,
body.modal-locked {
    overflow: hidden;
}
.site-header {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}
.location-box {
    max-height: min(84vh, 760px);
    overflow: auto;
    overscroll-behavior: contain;
}
.location-modal {
    padding: 20px max(12px, var(--safe-right)) 20px max(12px, var(--safe-left));
}
.loc,
.action-btn,
.btn,
.coupon-apply-btn,
.coverage-tab,
.finder-option {
    min-height: 44px;
}
.hero,
.fee-calculator-section,
.sample-section,
.story-section,
.global-section,
.why-section,
.faq-preview,
.available-section,
.service-finder-section {
    isolation: isolate;
}

/* Premium micro-interactions */
.reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.62s ease,
        transform 0.62s ease;
}
.reveal-item.is-visible {
    opacity: 1;
    transform: none;
}
.card,
.why-card,
.story-stat,
.sample-card,
.doc,
.finder-shell {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}
@media (hover: hover) {
    .card:hover,
    .why-card:hover,
    .story-stat:hover,
    .doc:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 42px rgba(35, 46, 91, 0.12);
    }
    .sample-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 54px rgba(33, 46, 93, 0.14);
    }
}

/* Professional engagement: 30-second service matcher */
.service-finder-section {
    padding: 84px 0;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(40, 168, 223, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(115, 70, 255, 0.12),
            transparent 34%
        ),
        linear-gradient(180deg, #f9fbff, #f1f5ff);
}
.finder-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    padding: 34px;
    border: 1px solid rgba(198, 211, 239, 0.9);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 64px rgba(31, 42, 87, 0.12);
    overflow: hidden;
    position: relative;
}
.finder-shell:before {
    content: "";
    position: absolute;
    right: -80px;
    top: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        rgba(40, 168, 223, 0.12),
        rgba(115, 70, 255, 0.08)
    );
    pointer-events: none;
}
.finder-intro {
    position: relative;
    z-index: 1;
    align-self: center;
}
.finder-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #1368e9;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}
.finder-intro h2 {
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin: 15px 0 13px;
}
.finder-intro p {
    color: var(--muted);
    margin: 0 0 18px;
}
.finder-benefits {
    display: grid;
    gap: 9px;
    color: #34425f;
    font-size: 13px;
    font-weight: 750;
}
.finder-benefits span:before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    background: #e4f8ec;
    color: #16834a;
    font-weight: 950;
}
.finder-quiz {
    position: relative;
    z-index: 1;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: linear-gradient(180deg, #fff, #fbfcff);
}
.finder-progress {
    height: 6px;
    border-radius: 999px;
    background: #e9eef8;
    overflow: hidden;
    margin-bottom: 22px;
}
.finder-progress span {
    display: block;
    height: 100%;
    width: 33.333%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue-2), var(--violet));
    transition: width 0.35s ease;
}
.finder-step {
    display: none;
}
.finder-step.active {
    display: block;
    animation: finderIn 0.32s ease both;
}
@keyframes finderIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.finder-step-count {
    font-size: 11px;
    color: #64718b;
    font-weight: 850;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.finder-step h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 7px 0 15px;
}
.finder-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.finder-option {
    border: 1px solid #dbe4f3;
    border-radius: 15px;
    background: #fff;
    padding: 13px 11px;
    color: #24324e;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition: 0.22s;
}
.finder-option span {
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
}
.finder-option:hover,
.finder-option.selected {
    border-color: #6d78f5;
    background: linear-gradient(145deg, #edf5ff, #f2edff);
    color: #174fae;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(60, 83, 174, 0.1);
}
.finder-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
}
.finder-back {
    border: 0;
    background: transparent;
    color: #627089;
    font-weight: 800;
    cursor: pointer;
    padding: 9px 5px;
    visibility: hidden;
}
.finder-back.visible {
    visibility: visible;
}
.finder-status {
    color: #75819a;
    font-size: 12px;
    font-weight: 750;
}
.finder-result {
    display: none;
    padding: 21px;
    border-radius: 19px;
    background: linear-gradient(145deg, #16144d, #2d287c 58%, #176bb5);
    color: #fff;
    box-shadow: 0 18px 38px rgba(31, 35, 112, 0.2);
}
.finder-result.active {
    display: block;
    animation: finderIn 0.35s ease both;
}
.finder-result-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    font-size: 25px;
    margin-bottom: 12px;
}
.finder-result small {
    color: #a9e9ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.finder-result h3 {
    font-size: 24px;
    margin: 6px 0 8px;
}
.finder-result p {
    color: #dbe5ff;
    margin: 0 0 15px;
    font-size: 14px;
}
.finder-result-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
.finder-result-actions .btn {
    padding: 11px 15px;
    font-size: 13px;
}
.finder-restart {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
}

.mobile-quick-toggle {
    display: none;
}

/* Header and navigation resilience */
@media (max-width: 1240px) {
    .header-inner {
        gap: 13px;
    }
    .header-actions {
        gap: 7px;
    }
    .action-btn {
        padding: 11px 13px;
        font-size: 12px;
    }
}
@media (max-width: 900px) {
    html {
        scroll-padding-top: 92px;
    }
    .topbar-inner {
        min-height: auto;
        padding: 7px 0;
        gap: 6px;
    }
    .top-contact {
        gap: 13px;
    }
    .top-right {
        gap: 9px;
    }
    .top-right > span {
        display: none;
    }
    .header-inner {
        min-height: 78px;
    }
    .menu-toggle {
        display: grid;
        place-items: center;
        flex: none;
    }
    .nav-wrap {
        display: none !important;
    }
    .nav-wrap.mobile-open {
        display: flex !important;
        position: absolute;
        top: calc(100% + 8px);
        left: 14px;
        right: 14px;
        z-index: 1300;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 64px rgba(24, 37, 78, 0.2);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }
    .nav-wrap.mobile-open .nav-links {
        display: flex !important;
        position: static !important;
        inset: auto !important;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .nav-wrap.mobile-open .nav-links a {
        padding: 10px 12px;
        border-radius: 10px;
    }
    .nav-wrap.mobile-open .nav-links a:hover {
        background: #f1f5ff;
    }
    .nav-wrap.mobile-open .header-actions {
        display: grid !important;
        position: static !important;
        inset: auto !important;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        padding: 12px 0 0 !important;
        border-top: 1px solid var(--line);
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .nav-wrap.mobile-open .action-btn {
        padding: 11px 8px;
        font-size: 11px;
        border-radius: 12px;
    }
    .hero-grid {
        gap: 38px;
    }
    .visual-card {
        max-width: 680px;
        margin-inline: auto;
        width: 100%;
    }
    .finder-shell {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    .finder-intro {
        max-width: 680px;
    }
    .sample-grid {
        grid-template-columns: 1fr !important;
    }
    .sample-card {
        max-width: 760px;
        margin-inline: auto;
        width: 100%;
    }
    .footer-grid {
        gap: 32px;
    }
}
@media (max-width: 720px) {
    .container,
    .topbar .container,
    .site-header .container {
        width: min(100% - 24px, var(--container));
    }
    .topbar {
        font-size: 12px;
    }
    .topbar-inner {
        align-items: stretch;
    }
    .top-contact {
        justify-content: center;
        gap: 9px 14px;
    }
    .top-contact span:nth-child(3) {
        display: none;
    }
    .top-right {
        justify-content: center;
    }
    .social-icon {
        width: 29px;
        height: 29px;
    }
    .top-location-btn {
        height: 29px;
    }
    .site-header .brand {
        margin-left: 4px !important;
    }
    .site-header .brand img {
        width: 116px !important;
        height: 43px !important;
    }
    .hero {
        padding: 54px 0 60px;
    }
    .hero h1 {
        font-size: clamp(42px, 12vw, 60px);
        letter-spacing: -2px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-cta .btn {
        flex: 1 1 180px;
    }
    .visual-card {
        border-radius: 23px;
        padding: 18px;
    }
    .turnaround-float {
        position: static !important;
        display: inline-flex;
        margin: 13px 0 0;
    }
    .rating-end {
        position: static !important;
        margin: 10px 0 0 !important;
        max-width: none !important;
    }
    .section,
    .fee-calculator-section,
    .sample-section,
    .story-section,
    .global-section,
    .why-section,
    .faq-preview,
    .available-section,
    .service-finder-section {
        padding: 66px 0;
    }
    .calculator-heading {
        gap: 15px;
    }
    .calc-trust {
        width: 100%;
    }
    .modern-calculator {
        border-radius: 22px;
    }
    .calc-form-panel,
    .calc-result-panel {
        padding: 23px 18px;
    }
    .extra-visit-box {
        grid-template-columns: 1fr !important;
    }
    .extra-icon {
        display: none;
    }
    .whatsapp-mini {
        grid-column: auto !important;
        width: 100%;
    }
    .legal-consult-card {
        grid-template-columns: auto 1fr !important;
    }
    .consult-terms {
        grid-column: 1/-1 !important;
        justify-self: stretch !important;
    }
    .consult-terms summary {
        width: 100%;
    }
    .finder-shell {
        padding: 22px;
        border-radius: 23px;
    }
    .finder-quiz {
        padding: 18px;
    }
    .finder-options {
        grid-template-columns: 1fr;
    }
    .finder-option {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 10px;
    }
    .finder-option span {
        margin: 0;
    }
    .sample-card {
        grid-template-columns: 130px minmax(0, 1fr) !important;
    }
    .sample-copy {
        padding: 23px !important;
    }
    .sample-copy h3 {
        font-size: 23px !important;
    }
    .world-visual {
        height: 330px;
    }
    .map-pin small {
        max-width: 92px;
    }
    .quick-rail {
        left: auto !important;
        right: 12px !important;
        top: auto !important;
        bottom: calc(76px + var(--safe-bottom)) !important;
        display: grid !important;
        gap: 7px;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px) scale(0.96);
        transform-origin: bottom right;
        transition:
            opacity 0.2s ease,
            transform 0.2s ease;
    }
    .quick-rail.mobile-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .quick-rail a,
    .quick-rail a:hover {
        width: 50px !important;
        height: 50px !important;
        min-height: 50px !important;
        max-width: none !important;
        border-radius: 16px !important;
        padding: 0 !important;
        justify-content: center !important;
        background: #2d2677 !important;
        box-shadow: 0 9px 23px rgba(31, 28, 85, 0.22) !important;
    }
    .quick-rail a span {
        min-width: 50px !important;
        font-size: 20px !important;
    }
    .quick-rail a b,
    .quick-rail a:hover b {
        display: none !important;
        width: 0 !important;
        max-width: 0 !important;
        opacity: 0 !important;
        padding: 0 !important;
    }
    .mobile-quick-toggle {
        display: grid;
        place-items: center;
        position: fixed;
        right: 12px;
        bottom: calc(14px + var(--safe-bottom));
        z-index: 925;
        width: 52px;
        height: 52px;
        border: 2px solid rgba(255, 255, 255, 0.75);
        border-radius: 17px;
        background: linear-gradient(145deg, #1769f1, #5b45ed);
        color: #fff;
        font-size: 21px;
        font-weight: 900;
        box-shadow: 0 13px 30px rgba(31, 48, 140, 0.32);
        cursor: pointer;
    }
    .mobile-quick-toggle[aria-expanded="true"] {
        background: linear-gradient(145deg, #252069, #171348);
    }
    .scroll-top {
        bottom: calc(18px + var(--safe-bottom));
        right: 76px;
    }
}
@media (max-width: 520px) {
    .top-contact a:first-child {
        font-weight: 800;
    }
    .top-contact a:nth-child(2) {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .nav-wrap.mobile-open .header-actions {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 44px;
    }
    .hero-cta {
        gap: 9px;
    }
    .trust-row {
        gap: 8px 14px;
    }
    .sample-card {
        grid-template-columns: 1fr !important;
    }
    .sample-art {
        min-height: 165px !important;
    }
    .sample-copy {
        padding: 22px !important;
    }
    .finder-shell {
        padding: 16px;
    }
    .finder-quiz {
        padding: 16px;
    }
    .finder-intro h2 {
        font-size: 32px;
    }
    .finder-result h3 {
        font-size: 21px;
    }
    .world-visual {
        height: 310px;
    }
    .world-core {
        font-size: 76px;
    }
    .map-pin {
        font-size: 17px;
    }
    .map-pin small {
        max-width: 76px;
        font-size: 8px;
    }
}
@media (max-width: 380px) {
    .container,
    .topbar .container,
    .site-header .container {
        width: min(100% - 18px, var(--container));
    }
    .top-contact {
        font-size: 11px;
    }
    .site-header .brand img {
        width: 106px !important;
    }
    .hero h1 {
        font-size: 39px;
    }
    .hero p {
        font-size: 15px;
    }
    .calc-form-panel,
    .calc-result-panel {
        padding: 19px 13px;
    }
    .result-price {
        font-size: 42px;
    }
    .result-breakup div {
        font-size: 13px;
    }
    .coupon-offer-card {
        grid-template-columns: 1fr !important;
    }
    .finder-intro h2 {
        font-size: 29px;
    }
    .finder-quiz {
        padding: 13px;
    }
    .finder-step h3 {
        font-size: 19px;
    }
}

/* iOS prevents input zoom; modern browser form consistency */
@media (max-width: 800px) {
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}
@supports (padding: max(0px)) {
    .quick-rail {
        padding-right: max(7px, var(--safe-right));
        padding-left: max(7px, var(--safe-left));
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal-item,
    .reveal-item.is-visible,
    .finder-step.active,
    .map-pin,
    .coverage-panel span,
    .action-btn,
    .btn,
    .card,
    .why-card,
    .story-stat,
    .sample-card {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}
@media print {
    .topbar,
    .site-header,
    .quick-rail,
    .scroll-top,
    .service-finder-section,
    .contact-banner {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
    .section,
    .fee-calculator-section,
    .sample-section {
        padding: 24px 0;
    }
    .calc-result-panel {
        background: #fff !important;
        color: #000 !important;
    }
    .result-breakup div,
    .rent-summary {
        color: #000 !important;
    }
}
