:root {
    --green: #087b3d;
    --green-2: #00994e;
    --green-3: #e9f5ee;
    --navy: #081936;
    --text: #10213d;
    --muted: #526078;
    --line: #dde6e4;
    --soft: #f5faf8;
    --white: #ffffff;
    --gold: #f5b51b;
    --red: #d5262d;
    --shadow: 0 16px 34px rgba(6, 34, 64, .10);
    --shadow-sm: 0 8px 20px rgba(6, 34, 64, .08);
    --radius: 8px;
    --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p, h1, h2, h3 { margin-top: 0; }

.top-strip {
    background: linear-gradient(90deg, #004a2d, #087b3d);
    color: #fff;
    font-size: 13px;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.14);
}
.top-strip .wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.strip-items {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.strip-items span {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.strip-items .sep { opacity: .5; }
.safe-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #10a85a;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 20px rgba(0,0,0,.12);
}

header {
    background: #fff;
    border-bottom: 1px solid #eef2f1;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 6px 24px rgba(6,34,64,.04);
}
.header-top {
    width: min(var(--max), calc(100% - 40px));
    min-height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { height: 72px; width: auto; filter: drop-shadow(0 2px 8px rgba(6,34,64,.08)); transition: transform .25s ease, filter .25s ease; }
.logo:hover { transform: scale(1.04); filter: drop-shadow(0 4px 12px rgba(6,34,64,.12)); }
.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #071735;
}
.nav-link {
    padding: 34px 0 16px;
    border-bottom: 2px solid transparent;
    transition: color .18s ease, border-color .18s ease;
}
.nav-link.active,
.nav-link:hover {
    color: var(--green);
    border-bottom-color: var(--green);
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: var(--navy);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

main { overflow: hidden; }
.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}
.hero {
    position: relative;
    background:
        radial-gradient(circle at 70% 25%, rgba(8,123,61,.12), transparent 28%),
        linear-gradient(135deg, #f7fbfb 0%, #eef7f4 100%);
    padding: 60px 0 54px;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(8,123,61,.12) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: .28;
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 42px;
}
.kicker, .eyebrow, .section-kicker, .card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 18px;
}
.kicker.pill, .eyebrow {
    color: #fff;
    background: var(--green);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 13px;
}
h1 {
    color: var(--navy);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.12;
    letter-spacing: -1.4px;
    margin-bottom: 20px;
}
h1 .green, h2 .green { color: var(--green); }
h2 {
    color: var(--navy);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.18;
    margin-bottom: 18px;
}
h3 {
    color: var(--navy);
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 10px;
}
.lead {
    color: var(--text);
    font-size: 18px;
    max-width: 560px;
}
.hero-actions, .actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.btn, button[type="submit"], button[type="reset"] {
    border: 0;
    border-radius: 6px;
    min-height: 50px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #078040, #009a4d);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(8,123,61,.22);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover, button[type="submit"]:hover, button[type="reset"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(8,123,61,.24);
}
.btn.secondary, button[type="reset"] {
    color: var(--green);
    background: #fff;
    border: 1px solid var(--green);
    box-shadow: none;
}
.mock-photo, .hero-card, .white-card, .content-card, .step-card, .stat-card, .appointment-form, .booking-side, .payment-step, .payment-summary, .faq-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.content-card:hover, .step-card:hover, .stat-card:hover, .appointment-form:hover, .payment-step:hover, .hero-card:hover {
    transform: translateY(-3px);
    border-color: #cfe1dc;
    box-shadow: 0 18px 38px rgba(6,34,64,.11);
}
.mock-photo {
    min-height: 360px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,.02)),
        url("img/emaillogo.png") center/cover no-repeat;
}
.mock-photo.people::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 68% 36%, #f2c7a6 0 9%, transparent 10%),
        radial-gradient(circle at 82% 48%, #f0c19d 0 8%, transparent 9%),
        radial-gradient(circle at 55% 58%, #edbd98 0 8%, transparent 9%),
        linear-gradient(110deg, transparent 0 42%, rgba(8,123,61,.88) 42% 45%, transparent 45%),
        linear-gradient(135deg, #e8f1f3, #fff);
}
.mock-photo.people::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 8%;
    width: 54%;
    height: 52%;
    border-radius: 8px;
    background:
        linear-gradient(#273f50 0 0) 10% 20%/34% 40% no-repeat,
        linear-gradient(#7ea5b7 0 0) 62% 18%/30% 48% no-repeat,
        linear-gradient(#2d6148 0 0) 34% 30%/30% 52% no-repeat,
        linear-gradient(#d9e2e9 0 0) 4% 80%/70% 14% no-repeat;
    opacity: .9;
}

.about-who-photo {
    min-height: 390px;
    background:
        linear-gradient(180deg, rgba(4, 20, 38, .04), rgba(4, 20, 38, .08)),
        url("img/about-who-we-are.png") center / cover no-repeat;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(6,34,64,.14);
}

.about-simple-hero {
    background:
        linear-gradient(90deg, rgba(248,252,252,.96) 0%, rgba(248,252,252,.86) 44%, rgba(238,247,244,.16) 72%),
        url("img/simplegamca.png") center right / cover no-repeat;
}

.simplegamca-photo {
    min-height: 390px;
}

body:not(.home-exact) .about-simple-hero {
    background:
        radial-gradient(circle at 20% 80%, rgba(8,123,61,.09), transparent 28%),
        linear-gradient(135deg, #f8fcfc 0%, #edf7f4 100%);
    padding: 0;
    min-height: 535px;
    overflow: hidden;
}

.about-simple-hero .simplegamca-photo {
    position: relative;
    align-self: stretch;
    min-height: 535px;
    width: calc(100% + ((100vw - min(1110px, calc(100vw - 56px))) / 2));
    margin-right: calc((min(1110px, calc(100vw - 56px)) - 100vw) / 2);
    margin-left: -34px;
    border-top-left-radius: 44% 100%;
    border-bottom-left-radius: 44% 100%;
    background: url("img/simplegamca.png") center right / cover no-repeat;
    box-shadow: -18px 0 38px rgba(6,34,64,.10);
    overflow: hidden;
}

.about-simple-hero .simplegamca-photo::before {
    content: "";
    position: absolute;
    inset: -12px auto -12px -11px;
    width: 34px;
    border-left: 8px solid #087b3d;
    border-top-left-radius: 100% 50%;
    border-bottom-left-radius: 100% 50%;
    pointer-events: none;
}

.about-simple-hero .hero-grid {
    min-height: 535px;
    grid-template-columns: minmax(0, .96fr) minmax(520px, 1.25fr);
    align-items: stretch;
    gap: 20px;
}

.about-simple-hero .hero-grid > div:first-child {
    position: relative;
    z-index: 2;
}

.about-simple-hero .stats-card {
    position: relative;
    z-index: 3;
    width: min(780px, calc(100vw - 80px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff !important;
    border: 1px solid #e4eeeb !important;
    box-shadow: 0 16px 34px rgba(6,34,64,.13) !important;
    overflow: visible;
    isolation: isolate;
}

.about-simple-hero .stats-card .stat {
    background: #fff;
    min-width: 0;
    padding: 24px 20px;
}

.about-simple-hero .stats-card .stat div {
    min-width: 0;
}

.about-simple-hero .stats-card .stat b,
.about-simple-hero .stats-card .stat span:not(.icon) {
    display: block;
    color: var(--navy);
    white-space: normal;
    overflow: visible;
}

@media (max-width: 1100px) {
    .about-simple-hero .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 46px;
        padding-bottom: 34px;
    }

    .about-simple-hero .simplegamca-photo {
        min-height: 390px;
        margin: 20px 0 0;
        border-radius: 18px;
        background-position: center right;
    }

    .about-simple-hero .simplegamca-photo::before {
        display: none;
    }

    .about-simple-hero .stats-card {
        width: 100%;
    }
}
.booking-widget {
    width: min(340px, 100%);
    margin: 0 auto;
    padding: 28px;
}
.booking-widget input, .booking-widget select {
    height: 46px;
    width: 100%;
    margin: 8px 0;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    padding: 0 14px;
}

.stats-band {
    margin-top: -42px;
    position: relative;
    z-index: 3;
}
.stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #e8efee;
}
.stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 32px;
    border-right: 1px solid var(--line);
    transition: background .18s ease;
}
.stat:hover { background: #fbfefc; }
.stat:last-child { border-right: 0; }
.icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--green-3);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex: 0 0 auto;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(8,123,61,.06);
}
.icon.dark { background: var(--green); color: #fff; }
.icon svg,
.safe-pill svg,
.strip-items svg,
.btn svg,
.text-icon svg {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    shape-rendering: crispEdges;
}
.icon svg { width: 62%; height: 62%; }
.icon.dark svg { color: #fff; }
.btn svg { width: 22px; height: 22px; stroke-width: 1.5; }
.strip-items svg,
.safe-pill svg { width: 20px; height: 20px; stroke-width: 1.8; }
.text-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.08em;
    height: 1.08em;
    margin-right: .35em;
    color: var(--green);
    vertical-align: -0.16em;
}
.top-strip .text-icon,
footer .text-icon,
.service-card .text-icon {
    color: currentColor;
}
.stat strong { display: block; color: var(--navy); font-size: 24px; line-height: 1.05; }
.stat span { color: var(--text); font-size: 14px; }

.section { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title h2::after, .underline::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    background: var(--green);
    margin: 14px auto 0;
}
.underline.left::after { margin-left: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.content-card, .white-card, .step-card, .faq-card, .payment-step, .payment-summary, .booking-side { padding: 28px; }
.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(90deg, #f5fbf8, #fff);
    box-shadow: 0 12px 28px rgba(6,34,64,.05);
}
.feature-row .feature {
    padding: 22px 28px;
    display: flex;
    gap: 16px;
    align-items: center;
    border-right: 1px solid var(--line);
    transition: background .18s ease;
}
.feature-row .feature:hover { background: #f3faf6; }
.feature-row .feature:last-child { border-right: 0; }
.feature .icon { width: 54px; height: 54px; font-size: 26px; }

.process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    text-align: center;
}
.process-node .icon {
    margin: 0 auto 14px;
    width: 72px;
    height: 72px;
}
.process-node b {
    display: block;
    color: var(--navy);
    margin-bottom: 5px;
}

.service-card {
    background: linear-gradient(135deg, #006b38, #008f47);
    color: #fff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.service-card h3, .service-card p { color: #fff; }
.price {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}
.flag-grid, .city-grid, .pay-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.flag, .city, .pay-logo {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 14px;
    text-align: center;
    background: #fff;
    font-weight: 700;
}
.flag {
    display: grid;
    justify-items: center;
    gap: 9px;
}
.country-flag {
    position: relative;
    display: block;
    width: 54px;
    height: 36px;
    overflow: hidden;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(8, 25, 54, .12), 0 5px 12px rgba(8, 25, 54, .08);
    transform: translateZ(0);
    transition: transform .22s ease, box-shadow .22s ease;
}
.flag:hover .country-flag {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 0 1px rgba(8, 25, 54, .16), 0 11px 20px rgba(8, 25, 54, .14);
}
.flag-saudi {
    background: #006c35;
}
.flag-saudi::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 9px;
    width: 20px;
    height: 10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 0 0 16px 0;
}
.flag-saudi::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 9px;
    width: 27px;
    height: 2px;
    background: #fff;
    box-shadow: 6px 2px 0 -1px #fff;
}
.flag-uae {
    background: linear-gradient(90deg, #ce1126 0 27%, transparent 27%),
        linear-gradient(#00732f 0 33.33%, #fff 33.33% 66.66%, #000 66.66%);
}
.flag-qatar {
    background: #8a1538;
}
.flag-qatar::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 22px;
    background:
        linear-gradient(135deg, #fff 25%, transparent 25%) 0 0/8px 4px,
        linear-gradient(45deg, #fff 25%, transparent 25%) 0 2px/8px 4px,
        #fff;
}
.flag-kuwait {
    background: linear-gradient(#007a3d 0 33.33%, #fff 33.33% 66.66%, #ce1126 66.66%);
}
.flag-kuwait::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 36px;
    background: #000;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.flag-oman {
    background: linear-gradient(90deg, #db161b 0 28%, transparent 28%),
        linear-gradient(#fff 0 33.33%, #db161b 33.33% 66.66%, #00843d 66.66%);
}
.flag-oman::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 10px;
    height: 10px;
    border: 1.5px solid #fff;
    border-radius: 50%;
}
.flag-bahrain {
    background: #ce1126;
}
.flag-bahrain::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 24px;
    background:
        linear-gradient(135deg, #fff 25%, transparent 25%) 0 0/10px 7.2px,
        linear-gradient(45deg, #fff 25%, transparent 25%) 0 3.6px/10px 7.2px,
        #fff;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}

.notice {
    border: 1px solid #f1cd72;
    background: #fff8e7;
    border-radius: 8px;
    padding: 20px 28px;
}
.notice [data-icon] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.notice [data-icon] > svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    color: var(--green);
    margin-right: 0;
}
.soft-band {
    background: linear-gradient(90deg, #edf7f2, #fff);
    border-radius: 8px;
    padding: 30px 36px;
}

.form-shell, .payment-shell {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 44px;
    align-items: start;
}
.appointment-form { padding: 30px; }
fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}
legend { display: none; }
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group input, .form-group select, textarea {
    width: 100%;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    min-height: 48px;
    padding: 0 14px;
    font: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.form-group input:focus, .form-group select:focus, textarea:focus {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(8,123,61,.09);
}
textarea { padding: 14px; min-height: 130px; resize: vertical; }
.contact-message-form {
    margin-top: 18px;
}
.form-status {
    min-height: 24px;
    margin: 14px 0 0;
    font-size: 14px;
    font-weight: 700;
}
.form-status.success {
    color: var(--green);
}
.form-status.error {
    color: var(--red);
}
.form-status.info {
    color: var(--muted);
}
.contact-message-form .btn:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}
.form-actions, .payment-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 20px;
}

.appointment-form .form-actions {
    justify-content: center;
}
.error { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(213,38,45,.08); }

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.policy-card {
    position: relative;
    min-height: 170px;
}
.number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    margin-right: 12px;
}
.danger { background: #fff2f2; border-color: #f2cccc; }
.success { background: #f0faf4; border-color: #cfe9d8; }
.warning { background: #fff8e7; border-color: #f1cd72; }

.payment-layout {
    display: grid;
    grid-template-columns: 1.7fr .95fr;
    gap: 24px;
}
.method-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0;
}
.method-tabs button {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 16px;
    font-weight: 800;
    color: var(--navy);
}
.method-tabs button.active { border-color: var(--green); background: #f1faf5; }
.qr-pay {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: center;
}
.qr-box {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 18px;
    text-align: center;
}
.qr-box img { margin: 0 auto; width: 210px; }
.summary-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
}
.summary-line.total {
    border-bottom: 0;
    color: var(--green);
    font-weight: 900;
    font-size: 20px;
}

.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: -28px; position: relative; z-index: 3; }
.contact-card { text-align: center; padding: 34px 24px; }
.map-box {
    min-height: 250px;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,.4), rgba(255,255,255,.1)),
        url("https://maps.googleapis.com/maps/api/staticmap?center=Mangaluru,Karnataka&zoom=11&size=640x320&scale=2&markers=color:green%7CMangaluru,Karnataka") center/cover no-repeat,
        #e5f0f7;
    border: 1px solid var(--line);
}

.map-box.live-map {
    background: #e5f0f7;
}

.map-box.live-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
}

.map-link {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: var(--green);
    font-weight: 700;
}

footer {
    background: radial-gradient(circle at top left, rgba(0,153,78,.25), transparent 35%), linear-gradient(135deg, #005235, #071d31);
    color: #fff;
    margin-top: 28px;
}
.footer-main {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr 1.25fr 1.3fr;
    gap: 34px;
    padding: 42px 0 34px;
}
.footer-main h3 {
    color: #fff;
    font-size: 17px;
}
.footer-main p, .footer-main a, .footer-main li {
    color: rgba(255,255,255,.92);
    font-size: 14px;
}
.footer-logo img {
    height: 70px;
    margin-bottom: 16px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
    transition: transform .25s ease, filter .25s ease;
}
.footer-logo img:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.socials {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}
.socials img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12), inset 0 1px 2px rgba(255,255,255,.6);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    border: 1px solid rgba(255,255,255,.2);
}
.socials img:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 18px rgba(0,0,0,.18), inset 0 1px 2px rgba(255,255,255,.8);
    background: #f0f4f8;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.25);
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.9);
    font-size: 14px;
}

.hidden-step { display: none !important; }
.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.payment-message-group { grid-column: 1 / -1; }
.reference-summary {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 18px;
}
.payment-status-error { color: var(--red); font-weight: 700; }

@media (max-width: 1100px) {
    .header-nav { gap: 14px; font-size: 13px; }
    .stats-card, .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .grid-4, .footer-main { grid-template-columns: repeat(2, 1fr); }
    .grid-5, .process-line { grid-template-columns: repeat(3, 1fr); }
    .payment-layout, .hero-grid, .form-shell, .payment-shell { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .top-strip .wrap { height: auto; padding: 10px 0; align-items: flex-start; }
    .safe-pill { display: none; }
    .header-top { min-height: 76px; flex-wrap: wrap; }
    .logo { height: 58px; }
    .menu-toggle { display: inline-flex; }
    .header-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 14px;
    }
    .header-nav.is-open { display: flex; }
    .nav-link { padding: 12px 0; }
    .hero { padding: 42px 0; }
    .stats-band { margin-top: 24px; }
    .stats-card, .grid-2, .grid-3, .grid-4, .grid-5, .feature-row, .process-line, .policy-grid, .contact-cards, .payment-grid, .method-tabs, .qr-pay, .footer-main {
        grid-template-columns: 1fr;
    }
    .stat, .feature-row .feature { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat:last-child, .feature-row .feature:last-child { border-bottom: 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; padding: 16px 0; }
    .container, .header-top, .top-strip .wrap, .footer-main, .footer-bottom { width: min(100% - 24px, var(--max)); }
}

/* Home page recreation matching the supplied reference */
.home-exact {
    background: #fff;
}
.home-exact .top-strip .wrap {
    width: min(1168px, calc(100% - 56px));
    height: 35px;
    overflow: hidden;
}
.home-exact .strip-items {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
}
.home-exact .strip-items span,
.home-exact .safe-pill {
    font-size: 12px;
    line-height: 1;
    flex: 0 0 auto;
}
.home-exact .strip-items .sep {
    opacity: .65;
}
.home-exact .safe-pill {
    height: 28px;
    padding: 0 19px;
    margin-left: 16px;
    min-width: 195px;
    justify-content: center;
}
.home-exact [data-icon] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 0;
}
.home-exact [data-icon] > svg {
    width: 16px;
    height: 16px;
    margin-right: 7px;
    vertical-align: -2px;
    stroke-width: 2.35;
    flex-shrink: 0;
}
.home-exact .big-icon svg,
.home-exact .process-icon svg,
.home-exact .why-row span svg,
.home-exact .list-card h3 span svg,
.home-exact .phone-art span svg,
.home-exact .payments-row > span svg {
    margin-right: 0;
}
.home-exact header {
    position: relative;
    box-shadow: none;
}
.home-exact .header-top {
    width: min(1168px, calc(100% - 56px));
    min-height: 96px;
}
.home-exact .logo {
    height: 74px;
    object-fit: contain;
    image-rendering: auto;
    filter: drop-shadow(0 8px 14px rgba(6,34,64,.08));
    transform-origin: left center;
    transition: transform .28s ease, filter .28s ease;
}
.home-exact .logo:hover {
    transform: translateY(-1px) scale(1.025);
    filter: drop-shadow(0 12px 20px rgba(6,34,64,.13));
}
.home-exact .header-nav {
    gap: 27px;
    font-size: 13px;
}
.home-exact .nav-link {
    padding-top: 35px;
}
.home-hero {
    position: relative;
    min-height: 620px;
    background:
        linear-gradient(90deg, rgba(248,252,252,.96) 0%, rgba(248,252,252,.88) 29%, rgba(238,247,244,.58) 51%, rgba(238,247,244,.10) 72%),
        url("img/home-hero-bg.png") center right / cover no-repeat;
    overflow: hidden;
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 70%, rgba(8,123,61,.08), transparent 23%),
        linear-gradient(135deg, rgba(255,255,255,.15) 0 46%, rgba(8,123,61,.06) 58%, transparent 72%);
    pointer-events: none;
}
.home-hero-grid {
    width: min(1110px, calc(100% - 56px));
    min-height: 620px;
    display: grid;
    grid-template-columns: 520px 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
}
.home-copy {
    position: relative;
    z-index: 2;
    padding-top: 10px;
}
.home-kicker {
    margin: 0 0 13px;
    color: #087b3d;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.home-copy h1 {
    margin: 0 0 17px;
    color: #091a3a;
    font-size: 50px;
    line-height: 1.16;
    letter-spacing: -1.8px;
}
.home-copy h1 span {
    color: #078443;
}
.home-lead {
    max-width: 470px;
    color: #16233c;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 0;
}
.home-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 27px;
}
.home-btn {
    min-width: 222px;
    height: 50px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 7px;
    background: linear-gradient(90deg, #07803f, #009a50);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 22px rgba(8,123,61,.23);
    overflow: hidden;
}
.home-btn .mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}
.home-btn .mini-icon > svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
}
.home-btn.outline {
    min-width: 176px;
    background: linear-gradient(90deg, #0aa657, #19b967);
    color: #fff;
    border: 1px solid #11a75a;
    box-shadow: 0 10px 22px rgba(10,166,87,.18);
}
.home-btn.outline:hover {
    box-shadow: 0 16px 30px rgba(10,166,87,.25);
}
.round-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #078443;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}
.mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mini-icon svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    stroke-width: 1.8;
    flex-shrink: 0;
}
.home-visual {
    position: relative;
    height: 620px;
}
.hero-person {
    display: none;
}
.start-card {
    position: absolute;
    left: 18px;
    top: 134px;
    transform: none;
    width: 304px;
    padding: 28px 22px 24px;
    background: #fff;
    border: 1px solid #e2e9e8;
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(6,34,64,.15), 0 2px 8px rgba(6,34,64,.08);
    z-index: 2;
    transition: transform .2s ease, box-shadow .2s ease;
}
.start-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(6,34,64,.18), 0 4px 12px rgba(6,34,64,.1);
}
.start-card h3 {
    margin: 0 0 20px;
    color: #091a3a;
    font-size: 21px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.start-card h3 svg {
    width: 28px;
    height: 28px;
    color: #0b8a48;
    margin-right: 0;
    flex: 0 0 auto;
    stroke-width: 2.35;
    filter: drop-shadow(0 5px 8px rgba(8,123,61,.14));
}
.start-card label {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px solid #d8e0e0;
    border-radius: 8px;
    padding: 0 16px;
    margin-bottom: 14px;
    background: #fafbfb;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.start-card label:focus-within {
    border-color: #0b8a48;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11, 138, 72, .1);
}
.start-card label svg {
    width: 28px;
    height: 28px;
    color: #0b8a48;
    stroke-width: 2.35;
    flex: 0 0 auto;
    margin-right: 0;
}
.start-card input,
.start-card select {
    border: 0;
    outline: 0;
    width: 100%;
    color: #5a6372;
    font: inherit;
    font-size: 14px;
    background: transparent;
}
.start-card input::placeholder {
    color: #99a4b0;
}
.start-card select {
    cursor: pointer;
}
.start-card .full {
    width: 100%;
    min-width: 0;
    height: 52px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 28px rgba(8,123,61,.24);
}
.start-card .full:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(8,123,61,.28);
}
.home-stats-wrap {
    position: relative;
    z-index: 4;
    margin-top: -51px;
}
.home-stats {
    width: min(1110px, calc(100% - 56px));
    min-height: 122px;
    display: grid;
    grid-template-columns: 1.15fr .95fr 1fr 1fr;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e7eeee;
    box-shadow: 0 18px 40px rgba(6,34,64,.12);
}
.home-stat {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 34px;
    border-right: 1px solid #dce5e3;
}
.home-stat:last-child {
    border-right: 0;
}
.big-icon,
.process-icon,
.why-row span,
.list-card h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #078443;
}
.big-icon svg {
    width: 82px;
    height: 82px;
    stroke-width: 2.35;
    filter: drop-shadow(0 8px 13px rgba(7, 132, 67, .16));
}
.home-stats .big-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
}
.home-stats .big-icon svg {
    width: 54px !important;
    height: 54px !important;
    stroke-width: 2.45;
}
.home-stat b {
    display: block;
    color: #081936;
    font-size: 24px;
    line-height: 1.08;
}
.home-stat small {
    display: block;
    color: #16233c;
    font-size: 14px;
    line-height: 1.2;
}
.stars {
    color: #ffb400;
    letter-spacing: 2px;
    font-size: 18px;
}
.home-section {
    padding: 28px 0;
}
.home-title {
    text-align: center;
    color: #081936;
    font-size: 26px;
    margin: 0 0 32px;
}
.home-title::after {
    content: "";
    width: 52px;
    height: 3px;
    display: block;
    background: #078443;
    margin: 10px auto 0;
}
.home-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.process-item {
    position: relative;
    padding-top: 0;
}
.process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(50% + 46px);
    top: 36px;
    width: calc(100% - 64px);
    border-top: 1px dashed #9ba5ac;
}
.process-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: calc(150% - 22px);
    top: 31.5px;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #8f9ba3;
    border-right: 1.5px solid #8f9ba3;
    transform: rotate(45deg);
    z-index: 2;
}
.count {
    position: relative;
    left: auto;
    top: auto;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 2px solid #d5ebe1;
    background: radial-gradient(circle at 30% 22%, #ffffff 0 18%, #eef8f3 54%, #d9eee3 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-weight: 800;
    font-size: 32px;
    color: #078443;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 10px 22px rgba(6,34,64,.08);
    z-index: 2;
    transition: transform .2s ease, box-shadow .2s ease;
}
.process-item:hover .count {
    transform: translateY(-3px) scale(1.04);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.85), 0 16px 30px rgba(7,132,67,.16);
}
.process-item b {
    display: block;
    color: #081936;
    font-size: 14px;
}
.process-item small {
    display: block;
    color: #17243d;
    font-size: 13px;
    line-height: 1.25;
}
.home-three {
    width: min(1110px, calc(100% - 56px));
    display: grid;
    grid-template-columns: 345px 315px 1fr;
    gap: 18px;
}
.pricing-card {
    background: linear-gradient(135deg, #006c37, #00924b);
    border-radius: 8px;
    padding: 18px 18px 14px;
    color: #fff;
    box-shadow: 0 16px 34px rgba(6,34,64,.16);
}
.pricing-card h3 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 22px;
}
.price-box {
    background: rgba(0,57,35,.36);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    padding: 17px 18px 12px;
}
.price-box p {
    margin: 0 0 8px;
    font-weight: 800;
    color: #fff;
}
.price-box .price {
    color: #fff;
    font-size: 38px;
}
.price-box small {
    color: #fff;
}
.price-box ul,
.list-card ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}
.price-box li,
.list-card li {
    position: relative;
    padding-left: 20px;
    margin: 5px 0;
    font-size: 13px;
}
.price-box li::before,
.list-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 900;
}
.list-card li::before {
    color: #078443;
}
.price-box a {
    height: 36px;
    margin-top: 14px;
    border-radius: 5px;
    background: #fff;
    color: #081936;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}
.home-panel {
    background: #fff;
    border: 1px solid #e0e8e7;
    border-radius: 8px;
    box-shadow: 0 9px 22px rgba(6,34,64,.07);
    padding: 20px 22px;
}
.home-panel h3 {
    text-align: center;
    color: #081936;
    margin: 0 0 19px;
    font-size: 20px;
}
.flag-grid.exact {
    gap: 14px 17px;
}
.flag-grid.exact .flag {
    border: 0;
    padding: 0;
    font-size: 14px;
}
.flag-grid.exact .country-flag {
    width: 48px;
    height: 32px;
}
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    font-size: 12px;
    color: #081936;
    margin-top: 18px;
}
.cities-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid #dce9e5;
    background: linear-gradient(180deg, #ffffff, #f4faf7);
    box-shadow: 0 6px 14px rgba(6,34,64,.05);
    font-weight: 700;
    white-space: nowrap;
}
.small-green {
    width: 121px;
    height: 34px;
    margin: 20px auto 0;
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(90deg, #087b3d, #00924b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}
.why {
    padding-top: 3px;
}
.why-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.why-row div {
    min-height: 78px;
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    padding: 0 16px;
    border-right: 1px solid #dce5e3;
}
.why-row div:last-child {
    border-right: 0;
}
.why-row span {
    grid-row: 1 / 3;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 22%, #ffffff 0 18%, #eef8f3 54%, #d9eee3 100%);
    border: 1px solid #d6ebe1;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 9px 18px rgba(6,34,64,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.why-row svg {
    width: 40px;
    height: 40px;
    stroke-width: 2.3;
}
.why-row div:hover span {
    transform: translateY(-3px) scale(1.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.82), 0 15px 25px rgba(6,34,64,.12);
}
.why-row b {
    color: #081936;
    font-size: 14px;
}
.why-row small {
    color: #17243d;
    font-size: 12px;
    line-height: 1.35;
}
.docs-faq {
    padding-top: 7px;
}
.bottom-grid {
    width: min(1110px, calc(100% - 56px));
    display: grid;
    grid-template-columns: 1fr 1fr 1.62fr;
    gap: 18px;
}
.list-card,
.faq-card-exact {
    min-height: 181px;
}
.list-card h3 {
    text-align: left;
}
.list-card h3 span svg {
    width: 38px;
    height: 38px;
    stroke-width: 2.25;
    filter: drop-shadow(0 6px 10px rgba(8,123,61,.13));
}
.faq-card-exact p {
    height: 28px;
    margin: 0;
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
    font-weight: 700;
}
.faq-card-exact a {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #078443;
    font-size: 12px;
}
.home-cta {
    padding: 14px 0 20px;
}
.cta-card {
    width: min(1110px, calc(100% - 56px));
    min-height: 89px;
    display: grid;
    grid-template-columns: 130px 1fr 180px 178px;
    align-items: center;
    gap: 18px;
    background: linear-gradient(90deg, #00743b, #00994e);
    border-radius: 8px;
    color: #fff;
    padding: 13px 28px;
    overflow: hidden;
}
.cta-card h3 {
    color: #fff;
    margin: 0 0 2px;
    font-size: 21px;
}
.cta-card p {
    margin: 0;
    color: #fff;
}
.phone-art {
    position: relative;
    width: 88px;
    height: 72px;
    transform: rotate(-10deg);
    border-radius: 12px;
    background: linear-gradient(135deg, #132f49, #1a8156);
}
.phone-art span:first-child {
    position: absolute;
    left: -14px;
    bottom: 10px;
    color: #fff;
}
.phone-art span:last-child {
    position: absolute;
    right: 16px;
    top: 17px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #13a85e;
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
.cta-card a {
    height: 42px;
    border-radius: 5px;
    background: #fff;
    color: #081936;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 13px;
    padding: 0 12px;
    box-sizing: border-box;
    overflow: hidden;
}
.cta-card a [data-icon] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.cta-card a [data-icon] > svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    margin-right: 0 !important;
}
.cta-card a.whatsapp {
    background: #10a85a;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.payments-strip {
    border-top: 1px solid #eef2f2;
    border-bottom: 1px solid #eef2f2;
}
.payments-row {
    width: min(1110px, calc(100% - 56px));
    min-height: 73px;
    display: grid;
    grid-template-columns: repeat(7, auto) minmax(210px, max-content) minmax(190px, max-content);
    gap: 14px;
    align-items: center;
    justify-content: center;
    color: #081936;
}
.pay-title {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: -12px;
    font-size: 12px;
    font-weight: 800;
}
.payments-row .brand-logo {
    min-width: 70px;
    min-height: 38px;
    padding: 6px 10px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #fafbfc, #fff);
    border: 1.5px solid #e8ecf1;
    box-shadow: 0 8px 20px rgba(6,34,64,.08), inset 0 1px 0 rgba(255,255,255,.8);
    font-size: 18px;
    letter-spacing: -.02em;
    color: #214ba0;
    line-height: 1;
    transform: translateZ(0);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.payments-row .brand-logo img {
    width: 76px;
    height: 30px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.payments-row .brand-logo:hover {
    transform: translateY(-4px);
    border-color: #d9e5e8;
    background: #fff;
    box-shadow: 0 14px 32px rgba(6,34,64,.16), inset 0 1px 0 rgba(255,255,255,.9);
}
.brand-logo.visa {
    font-family: Georgia, serif;
    font-weight: 900;
    font-style: italic;
    color: #153f91;
    font-size: 24px;
    letter-spacing: 2px;
}
.brand-logo.mastercard {
    min-width: 82px;
    position: relative;
    color: #17233b;
    gap: 0;
}
.brand-logo.mastercard i {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    background: #eb001b;
    box-shadow: 0 2px 6px rgba(235,0,27,.3);
}
.brand-logo.mastercard i + i {
    margin-left: -10px;
    background: #f79e1b;
    mix-blend-mode: multiply;
    box-shadow: 0 2px 6px rgba(247,158,27,.3);
}
.brand-logo.mastercard em {
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    font-size: 7px;
    font-style: normal;
    color: #17233b;
    font-weight: 700;
}
.brand-logo.rupay {
    color: #173a82;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
}
.brand-logo.rupay::after {
    content: "";
    width: 11px;
    height: 18px;
    margin-left: 6px;
    background: linear-gradient(135deg, #f47b20 0 50%, #16a34a 50%);
    transform: skew(-15deg);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.brand-logo.upi {
    color: #222;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.5px;
}
.brand-logo.upi::after {
    content: "";
    width: 13px;
    height: 20px;
    margin-left: 5px;
    background: linear-gradient(135deg, #f58220 0 50%, #1a9f50 50%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,.12);
}
.brand-logo.paytm {
    color: #00baf2;
    font-weight: 900;
    font-size: 21px;
    letter-spacing: 0.5px;
}
.brand-logo.phonepe {
    color: #5f259f;
    font-weight: 900;
    font-size: 19px;
    letter-spacing: 0.5px;
}
.brand-logo.gpay {
    color: #5f6368;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.brand-logo.gpay i {
    color: #4285f4;
    font-style: normal;
    margin-right: 3px;
    font-weight: 900;
}
.payment-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pay-logo {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pay-logo img {
    width: 100%;
    max-width: 112px;
    height: 38px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.payments-row > span,
.payments-row .payment-security {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    min-width: 190px;
    justify-self: end;
}
.payments-row .payment-security {
    min-width: 230px;
}
.payments-row .payment-security-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 22%, #ffffff 0 18%, #edf8f2 55%, #d8eee2 100%);
    box-shadow: inset 0 0 0 1px rgba(8,123,61,.1), 0 9px 18px rgba(8,123,61,.14);
}
.home-exact .payments-row .payment-security-icon > svg,
.payments-row .payment-security-icon > svg {
    grid-row: 1 / 3;
    width: 30px !important;
    height: 30px !important;
    color: #078443;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    align-self: center;
    justify-self: center;
    margin-right: 0;
}
.payments-row .payment-security-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.payments-row > span b,
.payments-row .payment-security b {
    font-size: 13px;
    color: #081936;
    line-height: 1.18;
    white-space: nowrap;
}
.payments-row > span small,
.payments-row .payment-security small {
    font-size: 12px;
    line-height: 1.2;
    color: #526078;
    display: block;
}
.home-footer {
    margin-top: 0;
    background: linear-gradient(135deg, #08243b, #061a2b);
}
.home-footer .footer-main {
    width: min(1110px, calc(100% - 56px));
    grid-template-columns: 1.3fr 1fr .95fr 1.15fr 1.2fr;
    padding: 24px 0 20px;
}
.home-footer .footer-logo img {
    height: 62px;
    object-fit: contain;
    image-rendering: auto;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.2));
    transition: transform .25s ease, filter .25s ease;
}
.home-footer .footer-logo img:hover {
    transform: translateY(-3px) scale(1.035);
    filter: drop-shadow(0 16px 32px rgba(0,0,0,.26));
}
.home-footer .footer-main p,
.home-footer .footer-main a,
.home-footer .footer-main li {
    font-size: 13px;
}
.footer-whatsapp {
    height: 43px;
    width: 178px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.35);
    background: #078443;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    padding: 0 12px;
    box-sizing: border-box;
    overflow: hidden;
}
.footer-whatsapp [data-icon] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.footer-whatsapp [data-icon] > svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    margin-right: 0 !important;
}

.home-exact .socials img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    box-shadow: 0 7px 15px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease;
}
.home-exact .socials img:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 22px rgba(0,0,0,.25);
}

.home-exact .start-card,
.home-exact .home-stats,
.home-exact .pricing-card,
.home-exact .home-panel,
.home-exact .cta-card {
    animation: homeSoftRise .55s ease both;
}
.home-exact .home-stats { animation-delay: .05s; }
.home-exact .pricing-card { animation-delay: .1s; }
.home-exact .home-panel { animation-delay: .14s; }

@keyframes homeSoftRise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-exact *,
    .home-exact *::before,
    .home-exact *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
.home-footer .footer-bottom {
    width: min(1110px, calc(100% - 56px));
    justify-content: center;
    min-height: 33px;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .home-hero-grid,
    .home-three,
    .bottom-grid,
    .cta-card,
    .payments-row {
        grid-template-columns: 1fr;
    }
    .home-visual {
        display: block;
        height: auto;
    }
    .start-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 24px 0 0;
    }
    .start-card:hover {
        transform: translateY(-2px);
    }
    .home-stats,
    .stats-card,
    .home-process,
    .why-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .payments-row .payment-security {
        justify-self: center;
        width: min(100%, 280px);
    }
    .home-stat {
        padding: 22px 28px;
    }
    .big-icon svg {
        width: 84px;
        height: 84px;
    }
    .home-stats .big-icon {
        flex-basis: 84px;
        width: 84px;
        height: 84px;
    }
    .home-stats .big-icon svg {
        width: 84px !important;
        height: 84px !important;
    }
    .process-item::before,
    .process-item::after {
        display: none;
    }
}

@media (max-width: 700px) {
    .home-copy h1 {
        font-size: 38px;
    }
    .home-stats,
    .home-process,
    .why-row,
    .cities-grid {
        grid-template-columns: 1fr;
    }
    .home-stat,
    .why-row div {
        border-right: 0;
        border-bottom: 1px solid #dce5e3;
    }
    .home-stat {
        justify-content: flex-start;
        gap: 22px;
    }
    .big-icon svg {
        width: 78px;
        height: 78px;
    }
    .home-stats .big-icon {
        flex-basis: 78px;
        width: 78px;
        height: 78px;
    }
    .home-stats .big-icon svg {
        width: 78px !important;
        height: 78px !important;
    }
    .home-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .home-btn {
        width: 100%;
    }
}

/* Final appointment page tuning */
body:not(.home-exact) .appointment-full-form {
    width: calc(100% - 60px) !important;
    max-width: none !important;
    margin-left: auto;
    margin-right: auto;
}

.appointment-form-heading {
    max-width: none;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.appointment-form-heading .kicker {
    justify-content: flex-start;
}

.appointment-form-heading h1 {
    text-align: left;
}

body:not(.home-exact) .appointment-full-form .appointment-form {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 72px;
}

body:not(.home-exact) .appointment-full-form .appointment-form .form-row {
    gap: 28px 34px;
}

body:not(.home-exact) .appointment-full-form .appointment-form .form-group input,
body:not(.home-exact) .appointment-full-form .appointment-form .form-group select {
    min-height: 58px;
}

body:not(.home-exact) .process-line .icon {
    color: #00a85a;
}

body:not(.home-exact) .process-line .icon svg {
    opacity: .96;
    stroke-width: 1.05;
}

body:not(.home-exact) .process-line .icon svg g[fill="currentColor"] {
    opacity: .62;
}

@media (max-width: 700px) {
    body:not(.home-exact) .appointment-full-form {
        width: min(100% - 20px, 1560px);
    }

    body:not(.home-exact) .appointment-full-form .appointment-form {
        padding: 24px;
    }
}

/* Appointment page: heading above full-width form */
.appointment-hero-full {
    padding: 58px 0 64px;
}

body:not(.home-exact) .appointment-full-form {
    width: min(1480px, calc(100% - 40px));
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.appointment-form-heading {
    max-width: 1080px;
}

.appointment-form-heading .kicker {
    margin-bottom: 10px;
}

.appointment-form-heading h1 {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 1.1;
    white-space: nowrap;
}

body:not(.home-exact) .appointment-full-form .appointment-form {
    width: 100%;
    max-width: none;
    padding: 44px 48px;
}

body:not(.home-exact) .appointment-full-form .appointment-form .form-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 28px;
}

body:not(.home-exact) .appointment-full-form .appointment-form h2 {
    font-size: 34px;
    margin-bottom: 26px;
}

.form-security-note {
    text-align: center;
    color: var(--muted);
    margin: 14px 0 0;
}

@media (max-width: 1100px) {
    .appointment-form-heading h1 {
        white-space: normal;
    }

    body:not(.home-exact) .appointment-full-form .appointment-form .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    body:not(.home-exact) .appointment-full-form {
        width: min(100% - 24px, 1480px);
    }

    body:not(.home-exact) .appointment-full-form .appointment-form {
        padding: 24px;
    }

    body:not(.home-exact) .appointment-full-form .appointment-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Global page polish for all non-home public pages */
body:not(.home-exact) {
    background:
        radial-gradient(circle at 8% 0%, rgba(8,123,61,.07), transparent 25%),
        linear-gradient(180deg, #fbfdfc 0%, #f7faf9 42%, #ffffff 100%);
}

body:not(.home-exact) .top-strip .wrap {
    height: 38px;
    width: min(1168px, calc(100% - 48px));
    overflow: hidden;
}

body:not(.home-exact) .strip-items {
    flex-wrap: nowrap;
    gap: 14px;
    min-width: 0;
}

body:not(.home-exact) .strip-items span,
body:not(.home-exact) .safe-pill {
    font-size: 12px;
    line-height: 1;
}

body:not(.home-exact) .safe-pill {
    height: 29px;
    padding: 0 18px;
}

body:not(.home-exact) header {
    position: sticky;
    top: 0;
    box-shadow: 0 10px 26px rgba(6,34,64,.05);
}

body:not(.home-exact) .header-top {
    width: min(1168px, calc(100% - 48px));
    min-height: 92px;
}

body:not(.home-exact) .logo {
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(6,34,64,.08));
    transition: transform .24s ease, filter .24s ease;
}

body:not(.home-exact) .logo:hover {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 12px 20px rgba(6,34,64,.13));
}

body:not(.home-exact) .header-nav {
    gap: 22px;
    font-size: 13px;
}

body:not(.home-exact) .nav-link {
    padding: 32px 0 15px;
}

body:not(.home-exact) .container,
body:not(.home-exact) main > .section .container {
    width: min(1120px, calc(100% - 48px));
}

body:not(.home-exact) .hero {
    padding: 58px 0 54px;
    background:
        radial-gradient(circle at 88% 25%, rgba(8,123,61,.12), transparent 25%),
        linear-gradient(135deg, #f9fcfc 0%, #edf7f4 100%);
    border-bottom: 1px solid #edf3f1;
}

body:not(.home-exact) .hero::after {
    opacity: .16;
}

body:not(.home-exact) .hero-grid,
body:not(.home-exact) .form-shell {
    gap: 42px;
}

body:not(.home-exact) .form-shell {
    grid-template-columns: minmax(360px, .82fr) minmax(610px, 1.18fr);
    align-items: center;
}

body:not(.home-exact) .form-shell > div:first-child h1 {
    font-size: clamp(34px, 3.7vw, 52px);
    line-height: 1.14;
    max-width: 580px;
}

body:not(.home-exact) .form-shell > div:first-child .lead {
    max-width: 560px;
    font-size: 16px;
}

body:not(.home-exact) .form-shell > div:first-child .feature-row {
    margin-top: 28px !important;
    margin-bottom: 24px !important;
}

body:not(.home-exact) .form-shell > div:first-child .feature-row .feature {
    padding: 18px 16px;
    gap: 12px;
}

body:not(.home-exact) .form-shell > div:first-child .feature .icon {
    width: 52px;
    height: 52px;
}

body:not(.home-exact) .form-shell > div:first-child .feature .icon svg {
    width: 30px;
    height: 30px;
}

body:not(.home-exact) .form-shell > div:first-child .feature b {
    font-size: 14px;
}

body:not(.home-exact) .form-shell > div:first-child .feature small {
    font-size: 12px;
    line-height: 1.35;
}

body:not(.home-exact) .form-shell > div:first-child .soft-band {
    padding: 20px 24px;
    font-size: 14px;
}

body:not(.home-exact) .kicker:not(.pill) {
    color: #078443;
    font-size: 15px;
}

body:not(.home-exact) h1 {
    max-width: 620px;
    font-size: clamp(38px, 4.3vw, 56px);
    line-height: 1.14;
}

body:not(.home-exact) .lead {
    color: #1c2b45;
    font-size: 17px;
}

body:not(.home-exact) .content-card,
body:not(.home-exact) .step-card,
body:not(.home-exact) .appointment-form,
body:not(.home-exact) .payment-step,
body:not(.home-exact) .payment-summary,
body:not(.home-exact) .booking-side,
body:not(.home-exact) .contact-card,
body:not(.home-exact) .hero-card {
    border-color: #e0e9e7;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(6,34,64,.07);
}

body:not(.home-exact) .content-card,
body:not(.home-exact) .step-card,
body:not(.home-exact) .payment-step,
body:not(.home-exact) .payment-summary,
body:not(.home-exact) .booking-side {
    padding: 26px;
}

body:not(.home-exact) .content-card:hover,
body:not(.home-exact) .step-card:hover,
body:not(.home-exact) .payment-step:hover,
body:not(.home-exact) .payment-summary:hover,
body:not(.home-exact) .appointment-form:hover {
    transform: translateY(-4px);
    border-color: #c9dfd8;
    box-shadow: 0 20px 40px rgba(6,34,64,.11);
}

body:not(.home-exact) .section {
    padding: 42px 0;
}

body:not(.home-exact) .section-title h2,
body:not(.home-exact) .home-title {
    font-size: 28px;
}

body:not(.home-exact) .feature-row {
    overflow: hidden;
    background: linear-gradient(90deg, #f7fcf9, #fff);
}

body:not(.home-exact) .feature-row .feature {
    padding: 22px;
}

body:not(.home-exact) .feature .icon,
body:not(.home-exact) .icon {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 30% 22%, #ffffff 0 18%, #eef8f3 54%, #d9eee3 100%);
    border: 1px solid #d6ebe1;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 9px 18px rgba(6,34,64,.08);
}

body:not(.home-exact) .icon svg {
    width: 38px;
    height: 38px;
    stroke-width: 1.65;
}

body:not(.home-exact) .process-line .icon svg {
    stroke-width: 1.2;
    opacity: .68;
}

body:not(.home-exact) .process-line .icon svg g[fill="currentColor"] {
    opacity: .52;
}

body:not(.home-exact) .process-line .process-node b {
    font-weight: 500;
    color: #25334c;
}

body:not(.home-exact) .process-line .process-node p {
    font-weight: 400;
    color: #6b7485;
}

body:not(.home-exact) .btn,
body:not(.home-exact) button[type="submit"],
body:not(.home-exact) button[type="reset"] {
    border-radius: 7px;
    min-height: 48px;
}

body:not(.home-exact) .appointment-form {
    padding: 38px 42px;
    width: 100%;
}

body:not(.home-exact) .appointment-form .form-row {
    gap: 22px 30px;
}

body:not(.home-exact) .appointment-form .form-group input,
body:not(.home-exact) .appointment-form .form-group select {
    min-height: 54px;
    font-size: 15px;
    font-weight: 400;
}

body:not(.home-exact) .appointment-form .form-group input::placeholder {
    font-weight: 400;
}

body:not(.home-exact) .appointment-form h2,
body:not(.home-exact) .appointment-form h3,
body:not(.home-exact) .payment-step h3,
body:not(.home-exact) .content-card h2,
body:not(.home-exact) .content-card h3 {
    letter-spacing: -.02em;
}

body:not(.home-exact) .form-group label {
    color: #0c1c3a;
    font-size: 12px;
    font-weight: 500;
}

body:not(.home-exact) .form-group input,
body:not(.home-exact) .form-group select,
body:not(.home-exact) textarea,
body:not(.home-exact) .booking-widget input,
body:not(.home-exact) .booking-widget select {
    border-color: #d5dfdf;
    border-radius: 7px;
    min-height: 50px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

body:not(.home-exact) textarea {
    min-height: 132px;
}

body:not(.home-exact) .process-line {
    gap: 24px;
}

body:not(.home-exact) .process-node .icon,
body:not(.home-exact) .step-number {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 9px 18px rgba(6,34,64,.08);
}

body:not(.home-exact) .service-card {
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 36px rgba(0,86,45,.22);
}

body:not(.home-exact) .policy-grid {
    gap: 18px;
}

body:not(.home-exact) .policy-grid .content-card {
    min-height: 166px;
}

body:not(.home-exact) .number {
    width: 31px;
    height: 31px;
    border-radius: 7px;
    box-shadow: 0 8px 15px rgba(8,123,61,.18);
}

body:not(.home-exact) .contact-cards {
    width: min(1120px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

body:not(.home-exact) .contact-card {
    padding: 32px 22px;
}

body:not(.home-exact) .contact-card > .icon,
body:not(.home-exact) .contact-card > .icon.dark {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    color: #fff !important;
    background: linear-gradient(135deg, #087b3d, #09a75a) !important;
    border: 0;
    box-shadow: 0 14px 28px rgba(8,123,61,.22), inset 0 1px 0 rgba(255,255,255,.22);
    font-size: 34px;
}

body:not(.home-exact) .contact-card > .icon svg,
body:not(.home-exact) .contact-card > .icon.dark svg {
    width: 38px;
    height: 38px;
    color: #fff !important;
    stroke: currentColor;
}

body:not(.home-exact) .contact-hero {
    min-height: 370px;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(248,252,252,.94) 0%, rgba(248,252,252,.72) 34%, rgba(248,252,252,.08) 62%, rgba(248,252,252,0) 100%),
        url("img/contact-hero-map.png") center right / cover no-repeat;
    border-bottom: 1px solid #e9f1ee;
    overflow: hidden;
}

body:not(.home-exact) .contact-hero::after {
    display: none;
}

body:not(.home-exact) .contact-hero .hero-grid {
    min-height: 370px;
    grid-template-columns: minmax(390px, 520px) 1fr;
    gap: 0;
    align-items: center;
}

body:not(.home-exact) .contact-hero-copy {
    position: relative;
    z-index: 2;
}

body:not(.home-exact) .contact-hero-copy h1 {
    margin-bottom: 22px;
}

body:not(.home-exact) .contact-hero-map {
    display: none;
}

body:not(.home-exact) .payment-process-hero {
    min-height: 430px;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(248,252,252,.96) 0%, rgba(248,252,252,.78) 36%, rgba(248,252,252,.18) 60%, rgba(248,252,252,0) 100%),
        url("img/phone-logo-gamca.jpeg") center right / contain no-repeat;
    overflow: hidden;
}

body:not(.home-exact) .payment-process-hero .hero-grid {
    min-height: 430px;
    grid-template-columns: minmax(420px, .92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: 42px;
}

body:not(.home-exact) .payment-hero-spacer {
    min-height: 430px;
    position: relative;
}

body:not(.home-exact) .payment-hero-text {
    position: absolute;
    top: 86px;
    left: 18px;
    width: min(320px, 100%);
    padding: 65px 45px;
    border: 1px solid rgba(8,123,61,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 42px rgba(6,34,64,.12);
    backdrop-filter: blur(10px);
}

body:not(.home-exact) .payment-hero-text h2 {
    font-size: 23px;
    margin-bottom: 12px;
}

body:not(.home-exact) .payment-hero-text p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 18px;
}

body:not(.home-exact) .payment-hero-text .btn {
    min-height: 44px;
    padding: 0 20px;
    width: auto;
}

@media (max-width: 1100px) {
    body:not(.home-exact) .contact-hero {
        padding: 44px 0 0;
        background:
            linear-gradient(180deg, rgba(248,252,252,.96) 0%, rgba(248,252,252,.65) 52%, rgba(248,252,252,.12) 100%),
            url("img/contact-hero-map.png") center right / cover no-repeat;
    }

    body:not(.home-exact) .contact-hero .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    body:not(.home-exact) .contact-hero-map {
        display: none;
    }

    body:not(.home-exact) .payment-process-hero {
        padding: 46px 0;
        background:
            linear-gradient(180deg, rgba(248,252,252,.97) 0%, rgba(248,252,252,.74) 48%, rgba(248,252,252,.18) 100%),
            url("img/phone-logo-gamca.jpeg") center right / contain no-repeat;
    }

    body:not(.home-exact) .payment-process-hero .hero-grid {
        grid-template-columns: 1fr;
    }

    body:not(.home-exact) .payment-hero-spacer {
        min-height: 220px;
    }

    body:not(.home-exact) .payment-hero-text {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
        width: min(360px, 100%);
    }
}

body:not(.home-exact) .map-box {
    min-height: 270px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

body:not(.home-exact) .payment-layout {
    align-items: start;
}

body:not(.home-exact) .payment-hero-clean {
    grid-template-columns: minmax(0, 1fr);
    min-height: 430px;
    align-items: center;
}

body:not(.home-exact) .payment-hero-clean > div:first-child {
    max-width: 760px;
}

body:not(.home-exact) .payment-secure-hero {
    min-height: 430px;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(248,252,252,.96) 0%, rgba(248,252,252,.78) 36%, rgba(248,252,252,.12) 62%, rgba(248,252,252,0) 100%),
        url("img/payment-secure-hero.png") center right / cover no-repeat;
    overflow: hidden;
}

body:not(.home-exact) .payment-secure-hero::after {
    display: none;
}

body:not(.home-exact) .method-tabs button {
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

body:not(.home-exact) .method-tabs button:hover,
body:not(.home-exact) .method-tabs button.active {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(6,34,64,.08);
}

body:not(.home-exact) .qr-box {
    background: #fff;
    box-shadow: 0 12px 24px rgba(6,34,64,.07);
}

body:not(.home-exact) footer {
    margin-top: 0;
    background: radial-gradient(circle at top left, rgba(0,153,78,.25), transparent 35%), linear-gradient(135deg, #005235, #071d31);
}

body:not(.home-exact) .footer-main {
    width: min(1120px, calc(100% - 48px));
}

body:not(.home-exact) .footer-bottom {
    width: min(1120px, calc(100% - 48px));
}

body:not(.home-exact) .footer-logo img {
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
    transition: transform .24s ease, filter .24s ease;
}

body:not(.home-exact) .footer-logo img:hover {
    transform: translateY(-2px) scale(1.025);
    filter: drop-shadow(0 15px 24px rgba(0,0,0,.28));
}

body:not(.home-exact) footer [data-icon] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;
}

body:not(.home-exact) footer [data-icon] > svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    flex-shrink: 0;
    margin-right: 0 !important;
    color: #16c76d;
    stroke-width: 2;
}

body:not(.home-exact) .footer-bottom [data-icon] > svg {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px;
    color: rgba(255,255,255,.9);
}

body:not(.home-exact) .socials img {
    width: 28px;
    height: 28px;
    box-shadow: 0 7px 15px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

body:not(.home-exact) .socials img:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 22px rgba(0,0,0,.25);
}

body:not(.home-exact) .content-card,
body:not(.home-exact) .step-card,
body:not(.home-exact) .appointment-form,
body:not(.home-exact) .payment-step,
body:not(.home-exact) .contact-card {
    animation: pageSoftRise .42s ease both;
}

@keyframes pageSoftRise {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    body:not(.home-exact) .header-top,
    body:not(.home-exact) .top-strip .wrap,
    body:not(.home-exact) .container,
    body:not(.home-exact) .footer-main,
    body:not(.home-exact) .footer-bottom,
    body:not(.home-exact) .contact-cards {
        width: min(100% - 32px, 1120px);
    }

    body:not(.home-exact) .hero {
        padding: 46px 0;
    }

    body:not(.home-exact) .form-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body:not(.home-exact) .top-strip .wrap {
        height: auto;
        padding: 9px 0;
    }

    body:not(.home-exact) .strip-items {
        flex-wrap: wrap;
        gap: 9px 12px;
    }

    body:not(.home-exact) .header-top {
        min-height: 74px;
    }

    body:not(.home-exact) .logo {
        height: 58px;
    }

    body:not(.home-exact) .nav-link {
        padding: 12px 0;
    }

    body:not(.home-exact) h1 {
        font-size: 36px;
    }

    body:not(.home-exact) .content-card,
    body:not(.home-exact) .step-card,
    body:not(.home-exact) .appointment-form,
    body:not(.home-exact) .payment-step,
    body:not(.home-exact) .payment-summary,
    body:not(.home-exact) .booking-side {
        padding: 22px;
    }
}

/* Final mobile optimization layer */
@media (max-width: 760px) {
    html,
    body {
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
        background: #fbfdfc;
    }

    .container,
    .header-top,
    .top-strip .wrap,
    .footer-main,
    .footer-bottom,
    .home-exact .header-top,
    .home-exact .top-strip .wrap,
    .home-exact .home-hero-grid,
    .home-exact .container,
    .home-footer .footer-main,
    .home-footer .footer-bottom,
    body:not(.home-exact) .container,
    body:not(.home-exact) .header-top,
    body:not(.home-exact) .top-strip .wrap,
    body:not(.home-exact) .footer-main,
    body:not(.home-exact) .footer-bottom {
        width: min(100% - 28px, var(--max)) !important;
    }

    .top-strip {
        box-shadow: none;
    }

    .top-strip .wrap,
    .home-exact .top-strip .wrap,
    body:not(.home-exact) .top-strip .wrap {
        min-height: 0;
        height: auto;
        padding: 8px 0;
        justify-content: center;
    }

    .strip-items,
    .home-exact .strip-items,
    body:not(.home-exact) .strip-items {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        justify-items: center;
        text-align: center;
    }

    .strip-items span,
    .home-exact .strip-items span,
    body:not(.home-exact) .strip-items span {
        display: none;
        white-space: normal;
        font-size: 11px;
        line-height: 1.25;
    }

    .strip-items span:first-child,
    .home-exact .strip-items span:first-child,
    body:not(.home-exact) .strip-items span:first-child {
        display: inline-flex;
    }

    .strip-items .sep,
    .home-exact .strip-items .sep,
    body:not(.home-exact) .strip-items .sep,
    .safe-pill,
    .home-exact .safe-pill,
    body:not(.home-exact) .safe-pill {
        display: none !important;
    }

    header,
    body:not(.home-exact) header {
        position: sticky;
        top: 0;
        z-index: 50;
        box-shadow: 0 10px 24px rgba(6,34,64,.08);
    }

    .header-top,
    .home-exact .header-top,
    body:not(.home-exact) .header-top {
        min-height: 70px;
        gap: 10px;
        padding: 8px 0;
        flex-wrap: wrap;
    }

    .logo,
    .home-exact .logo,
    body:not(.home-exact) .logo {
        height: 54px !important;
        max-width: 190px;
        object-fit: contain;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
        border-radius: 10px;
        width: 42px;
        height: 42px;
        box-shadow: 0 8px 18px rgba(6,34,64,.08);
    }

    .header-nav,
    .home-exact .header-nav,
    body:not(.home-exact) .header-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 10px;
        border-top: 1px solid #edf2f1;
        background: #fff;
    }

    .header-nav.is-open,
    .home-exact .header-nav.is-open,
    body:not(.home-exact) .header-nav.is-open {
        display: flex;
    }

    .nav-link,
    .home-exact .nav-link,
    body:not(.home-exact) .nav-link {
        padding: 12px 4px !important;
        border-bottom: 1px solid #f1f4f3;
        font-size: 14px;
    }

    main {
        overflow: hidden;
    }

    .home-hero {
        min-height: auto;
        padding: 34px 0 30px;
        background:
            linear-gradient(180deg, rgba(248,252,252,.98) 0%, rgba(248,252,252,.88) 52%, rgba(248,252,252,.72) 100%),
            url("img/home-hero-bg.png") 58% top / auto 360px no-repeat;
    }

    .home-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-copy {
        padding-top: 0;
        max-width: 100%;
    }

    .home-kicker,
    .kicker,
    .home-exact .home-kicker {
        font-size: 12px;
        letter-spacing: .2px;
    }

    .home-copy h1,
    body:not(.home-exact) h1 {
        font-size: clamp(32px, 10vw, 42px) !important;
        line-height: 1.08;
        letter-spacing: 0;
    }

    .home-lead,
    body:not(.home-exact) .lead {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }

    .home-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .home-btn,
    .btn,
    button[type="submit"],
    button[type="reset"],
    .footer-whatsapp {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    .home-visual {
        height: auto;
        min-height: 0;
    }

    .start-card,
    .home-exact .start-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin: 6px 0 0;
        padding: 20px 16px;
        border-radius: 12px;
        transform: none;
    }

    .start-card:hover,
    .home-exact .start-card:hover {
        transform: none;
    }

    .start-card h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .start-card label,
    .start-card .full {
        height: 50px;
    }

    .home-stats-wrap {
        margin-top: 0;
    }

    .home-stats,
    .home-process,
    .why-row,
    .home-three,
    .bottom-grid,
    .cta-card,
    .payments-row,
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .feature-row,
    .process-line,
    .policy-grid,
    .contact-cards,
    .payment-grid,
    .method-tabs,
    .payment-layout,
    .hero-grid,
    .form-shell,
    .payment-shell {
        grid-template-columns: 1fr !important;
    }

    .home-stats {
        border-radius: 12px;
        margin-top: 0;
    }

    .stats-card,
    .about-simple-hero .stats-card,
    .service-card .stats-card {
        grid-template-columns: 1fr !important;
        gap: 0;
        width: 100% !important;
    }

    .stats-card .stat {
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid #e2eae8;
    }

    .stats-card .stat:last-child {
        border-bottom: 0;
    }

    .home-stat {
        padding: 18px 16px;
        gap: 16px;
        border-right: 0;
        border-bottom: 1px solid #e1e9e7;
    }

    .home-stat:last-child {
        border-bottom: 0;
    }

    .home-stats .big-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .home-stats .big-icon svg {
        width: 54px !important;
        height: 54px !important;
    }

    .home-section,
    body:not(.home-exact) .section {
        padding: 30px 0;
    }

    .home-title,
    .section-title h2,
    body:not(.home-exact) .section-title h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .home-process {
        gap: 14px;
    }

    .process-item {
        min-height: auto;
        display: grid;
        grid-template-columns: 54px 1fr;
        column-gap: 14px;
        align-items: center;
        text-align: left;
        padding: 14px 12px;
        border: 1px solid #edf2f1;
        border-radius: 12px;
        background: #fff;
    }

    .process-item .count {
        width: 46px;
        height: 46px;
        font-size: 24px;
        grid-row: 1 / 3;
    }

    .pricing-card,
    .home-panel,
    .content-card,
    .step-card,
    .appointment-form,
    .payment-step,
    .payment-summary,
    .booking-side,
    .contact-card,
    .hero-card {
        padding: 20px !important;
        border-radius: 12px;
    }

    .country-grid,
    .cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .why-row div,
    .feature,
    .contact-card {
        min-height: auto;
    }

    .cta-card {
        text-align: center;
        padding: 18px !important;
        gap: 14px;
    }

    .phone-art {
        display: none;
    }

    .payments-strip {
        padding: 12px 0;
    }

    .payments-row {
        min-height: auto;
        gap: 10px;
    }

    .pay-title {
        margin-bottom: 0;
        grid-column: auto;
    }

    .payments-row .brand-logo {
        width: 100%;
        min-height: 44px;
    }

    .payments-row .payment-security {
        justify-self: stretch;
        width: 100%;
        min-width: 0;
        padding: 10px 12px;
        border: 1px solid #edf2f1;
        border-radius: 12px;
        background: #fff;
    }

    .payments-row .payment-security-icon {
        width: 44px;
        height: 44px;
    }

    .home-footer .footer-main,
    .footer-main,
    body:not(.home-exact) .footer-main {
        grid-template-columns: 1fr !important;
        gap: 22px;
        padding: 28px 0 22px;
        text-align: left;
    }

    .footer-bottom,
    .home-footer .footer-bottom,
    body:not(.home-exact) .footer-bottom {
        min-height: auto;
        padding: 14px 0 18px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
        line-height: 1.45;
    }

    .footer-logo img {
        max-width: 190px;
        height: auto;
    }

    body:not(.home-exact) .hero,
    body:not(.home-exact) .appointment-hero-full {
        padding: 32px 0;
    }

    body:not(.home-exact) .contact-hero,
    body:not(.home-exact) .payment-process-hero,
    body:not(.home-exact) .payment-secure-hero {
        min-height: auto;
        padding: 38px 0;
    }

    body:not(.home-exact) .about-simple-hero {
        min-height: auto;
        padding: 34px 0;
    }

    .about-simple-hero .hero-grid {
        min-height: auto;
        padding: 0;
        gap: 18px;
    }

    .about-simple-hero .simplegamca-photo {
        width: 100%;
        min-height: 250px;
        margin: 0;
        border-radius: 14px;
        background-position: center right;
    }

    .about-simple-hero .simplegamca-photo::before {
        display: none;
    }

    .about-who-photo {
        min-height: 250px;
    }

    body:not(.home-exact) .contact-hero {
        background:
            linear-gradient(180deg, rgba(248,252,252,.98), rgba(248,252,252,.72)),
            url("img/contact-hero-map.png") 58% top / auto 280px no-repeat;
    }

    body:not(.home-exact) .payment-process-hero {
        background:
            linear-gradient(180deg, rgba(248,252,252,.98), rgba(248,252,252,.74)),
            url("img/phone-logo-gamca.jpeg") 65% top / auto 280px no-repeat;
    }

    body:not(.home-exact) .payment-secure-hero {
        background:
            linear-gradient(180deg, rgba(248,252,252,.98), rgba(248,252,252,.78)),
            url("img/payment-secure-hero.png") 65% top / auto 280px no-repeat;
    }

    body:not(.home-exact) .payment-hero-spacer {
        min-height: 190px;
    }

    body:not(.home-exact) .payment-hero-text {
        width: 100%;
        margin-top: 8px;
        padding: 18px;
        border-radius: 12px;
    }

    .appointment-form-heading h1 {
        white-space: normal;
        font-size: clamp(30px, 9vw, 38px) !important;
    }

    body:not(.home-exact) .appointment-full-form {
        width: min(100% - 28px, 1480px) !important;
        gap: 16px;
    }

    body:not(.home-exact) .appointment-full-form .appointment-form,
    body:not(.home-exact) .appointment-form {
        padding: 20px !important;
    }

    body:not(.home-exact) .appointment-full-form .appointment-form .form-row,
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    fieldset {
        padding: 0;
        border: 0;
    }

    legend {
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select,
    textarea,
    .booking-widget input,
    .booking-widget select,
    body:not(.home-exact) .appointment-form .form-group input,
    body:not(.home-exact) .appointment-form .form-group select {
        min-height: 50px;
        font-size: 15px;
        padding: 0 14px;
    }

    textarea {
        padding-top: 12px;
    }

    .form-actions {
        justify-content: stretch;
    }

    .form-actions button {
        width: 100%;
    }

    .process-line {
        gap: 14px;
    }

    .process-node {
        display: grid;
        grid-template-columns: 58px 1fr;
        column-gap: 14px;
        text-align: left;
        align-items: center;
        padding: 14px;
        border: 1px solid #edf2f1;
        border-radius: 12px;
        background: #fff;
    }

    .process-node .icon,
    .step-number {
        grid-row: 1 / 3;
        width: 50px;
        height: 50px;
    }

    .contact-card {
        text-align: center;
    }

    .contact-card > .icon,
    .contact-card > .icon.dark {
        margin: 0 auto 14px;
    }

    .map-box {
        min-height: 260px;
    }

    .method-tabs {
        gap: 10px;
    }

    .method-tabs button {
        width: 100%;
        min-height: 64px;
        text-align: left;
    }

    .payment-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pay-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 420px) {
    .container,
    .header-top,
    .top-strip .wrap,
    .footer-main,
    .footer-bottom,
    .home-exact .header-top,
    .home-exact .top-strip .wrap,
    .home-exact .home-hero-grid,
    .home-exact .container,
    .home-footer .footer-main,
    .home-footer .footer-bottom,
    body:not(.home-exact) .container,
    body:not(.home-exact) .header-top,
    body:not(.home-exact) .top-strip .wrap,
    body:not(.home-exact) .footer-main,
    body:not(.home-exact) .footer-bottom {
        width: min(100% - 20px, var(--max)) !important;
    }

    .home-copy h1,
    body:not(.home-exact) h1 {
        font-size: clamp(29px, 11vw, 36px) !important;
    }

    .country-grid,
    .cities-grid,
    .pay-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .pricing-card,
    .home-panel,
    .content-card,
    .step-card,
    .appointment-form,
    .payment-step,
    .payment-summary,
    .booking-side,
    .contact-card,
    .hero-card {
        padding: 18px !important;
    }
}
