:root {
    --blue: #1769e8;
    --blue-dark: #0c3f9f;
    --blue-soft: #eef5ff;
    --navy: #092452;
    --text: #15243d;
    --muted: #667792;
    --line: #dce5f1;
    --surface: #ffffff;
    --surface-soft: #f7faff;
    --shadow: 0 16px 45px rgba(20, 55, 110, .08);
    --radius: 18px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.narrow-container {
    width: min(calc(100% - 40px), 1040px);
}

.section {
    padding: 84px 0;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .35s ease, visibility .35s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-box {
    display: grid;
    justify-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.loader-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.loader-ring {
    width: 34px;
    height: 34px;
    border: 3px solid #dce9ff;
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* TOPBAR + HEADER */
.topbar {
    border-bottom: 1px solid #edf1f7;
    background: #fff;
    color: #718099;
    font-size: 11px;
}

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

.topbar-links {
    display: flex;
    gap: 22px;
}

.topbar a:hover {
    color: var(--blue);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(220,229,241,.85);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 145px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
}

.nav-link,
.nav-dropdown-toggle {
    border: 0;
    background: transparent;
    color: #263852;
    cursor: pointer;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
}

.nav-link:hover,
.nav-dropdown-toggle:hover {
    color: var(--blue);
}

.nav-link span {
    color: #7d8ca3;
    font-size: 12px;
    margin-left: 4px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 245px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(15,45,95,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: .18s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: #243653;
}

.dropdown-panel a:hover {
    background: var(--blue-soft);
    color: var(--blue);
}

.dropdown-panel strong,
.dropdown-panel small {
    display: block;
}

.dropdown-panel strong {
    font-size: 13px;
}

.dropdown-panel small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.header-actions {
    display: flex;
    gap: 9px;
    align-items: center;
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    padding: 0 18px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 9px 22px rgba(23,105,232,.20);
}

.btn-primary:hover {
    background: #0f5ed8;
}

.btn-outline {
    color: var(--navy);
    border-color: #cbd8e9;
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-login {
    color: #fff;
    background: #1265df;
}

.btn-small {
    min-height: 38px;
    padding-inline: 15px;
    border-radius: 9px;
    font-size: 11px;
}

.mobile-toggle,
.mobile-menu {
    display: none;
}

/* HERO */
.hero {
    padding-top: 72px;
    padding-bottom: 78px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-block;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #bcd7ff;
}

.hero-copy h1 {
    max-width: 650px;
    margin: 12px 0 18px;
    color: var(--navy);
    font-size: clamp(36px, 4.3vw, 58px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.hero-copy p {
    max-width: 650px;
    margin: 0 0 11px;
    color: var(--muted);
    font-size: 14px;
}

.hero-copy .hero-lead {
    font-size: 16px;
    color: #51647f;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
    color: #556780;
    font-size: 12px;
    font-weight: 600;
}

.hero-points b {
    color: var(--blue);
    margin-right: 5px;
}

.hero-gallery {
    position: relative;
    min-height: 445px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 10px;
}

.gallery-photo {
    position: relative;
    height: 370px;
    overflow: hidden;
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
    background: #eaf1fb;
    box-shadow: var(--shadow);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-photo:hover img {
    transform: scale(1.04);
}

.photo-one { margin-top: 35px; }
.photo-two { margin-top: -20px; }
.photo-three { margin-top: 28px; }
.photo-four { margin-top: -8px; }

/* COVERAGE */
.coverage-strip {
    background: linear-gradient(105deg, #0e62db 0%, #1b70eb 100%);
    color: #fff;
}

.coverage-grid {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 35px;
}

.coverage-grid h2 {
    margin: 4px 0 4px;
    font-size: 22px;
    letter-spacing: -.02em;
}

.coverage-grid p {
    margin: 0;
    color: #d8e8ff;
    font-size: 13px;
}

.coverage-button {
    min-width: 330px;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 13px;
    color: var(--navy);
    background: #fff;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 12px 30px rgba(3,34,93,.15);
}

.coverage-button:hover {
    transform: translateY(-1px);
}

.coverage-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 20px;
}

.coverage-button strong,
.coverage-button small {
    display: block;
}

.coverage-button strong {
    font-size: 12px;
}

.coverage-button small {
    color: #74829a;
    font-size: 10px;
}

.coverage-arrow {
    margin-left: auto;
    color: var(--blue);
    font-weight: 800;
}

/* HEADINGS */
.section-heading,
.information-head {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}

.section-heading h2,
.information-head h2 {
    margin: 7px 0 8px;
    color: var(--navy);
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.section-heading p,
.information-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* PACKAGES */
.packages-section {
    background: #fff;
}

.package-tabs {
    width: fit-content;
    display: flex;
    gap: 7px;
    margin: 0 auto 20px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #f7faff;
}

.package-tab {
    min-height: 42px;
    border: 0;
    border-radius: 9px;
    padding: 0 18px;
    color: #53657f;
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .18s ease;
}

.package-tab span {
    color: var(--blue);
    margin-left: 3px;
}

.package-tab:hover {
    color: var(--blue);
}

.package-tab.is-active {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 8px 18px rgba(23,105,232,.20);
}

.package-tab.is-active span {
    color: #fff;
}

.package-intro {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
    padding: 20px 24px;
    border: 1px solid #d9e6f7;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7fbff, #edf5ff);
}

.package-intro-kicker {
    display: block;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.package-intro h3 {
    margin: 4px 0 2px;
    font-size: 18px;
}

.package-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.package-intro-badge {
    flex: 0 0 auto;
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #cfe0f7;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.package-card {
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding: 22px 19px 19px;
    border: 1px solid #dbe5f1;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(24,62,112,.055);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: #bcd3f3;
    box-shadow: 0 17px 36px rgba(24,62,112,.10);
}

.package-card.is-popular {
    border: 2px solid var(--blue);
    padding: 21px 18px 18px;
}

.package-popular {
    position: absolute;
    top: -12px;
    left: 17px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .04em;
}

.package-tag {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
}

.package-card h3 {
    margin: 9px 0 8px;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.2;
}

.package-price {
    color: #0a2b64;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.package-price small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
}

.package-card > p {
    min-height: 74px;
    margin: 12px 0 18px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.package-button {
    margin-top: auto;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #fff;
    background: var(--blue);
    font-size: 11px;
    font-weight: 800;
    transition: .18s ease;
}

.package-button:hover {
    background: #0d5dd7;
}

.package-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 17px 0 0;
    color: #73819a;
    font-size: 11px;
    text-align: center;
}

/* VISION */
.vision-section {
    background: var(--surface-soft);
}

.vision-mission {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 18px;
}

.info-card,
.client-login-card,
.client-features,
.link-card,
.legal-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.info-card {
    position: relative;
    padding: 30px;
}

.card-kicker {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.card-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    margin: 16px 0 15px;
    border-radius: 12px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 20px;
    font-weight: 800;
}

.info-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.3;
}

.info-card p,
.info-card li {
    color: var(--muted);
    font-size: 13px;
}

.info-card p {
    margin: 0;
}

.info-card ol {
    margin: 14px 0 0;
    padding-left: 21px;
}

.info-card li {
    margin: 6px 0;
}

/* CLIENT AREA */
.client-section {
    background: #fff;
}

.client-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    align-items: stretch;
}

.client-features {
    padding: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.feature-grid div {
    padding: 13px 14px;
    border-radius: 11px;
    background: #f7faff;
    color: #40536f;
    font-size: 12px;
    font-weight: 600;
}

.feature-grid div::first-letter {
    color: var(--blue);
}

.client-login-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(145deg, #0e57c8, #176fe9);
    border: 0;
    color: #fff;
}

.client-login-card .card-kicker {
    color: #c9dcff;
}

.client-login-card h3 {
    margin: 13px 0 8px;
    font-size: 22px;
    line-height: 1.3;
}

.client-login-card p {
    margin: 0 0 22px;
    color: #dce9ff;
    font-size: 12px;
}

.client-login-card .btn-primary {
    color: var(--blue);
    background: #fff;
    box-shadow: none;
}

.client-login-card small {
    margin-top: 13px;
    color: #c8dcfb;
    font-size: 10px;
    line-height: 1.5;
}

.btn-full {
    width: 100%;
}

/* PROMO */
.promo-section {
    background: var(--surface-soft);
}

.promo-box {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
    padding: 42px;
    border-radius: 24px;
    background: linear-gradient(135deg, #082f78 0%, #0e5bd0 100%);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(9,63,145,.18);
}

.promo-content h2 {
    max-width: 620px;
    margin: 8px 0 8px;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.15;
}

.promo-content > p {
    max-width: 610px;
    margin: 0;
    color: #d8e7ff;
    font-size: 13px;
}

.promo-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.promo-details div {
    min-height: 85px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
}

.promo-details span,
.promo-details strong {
    display: block;
}

.promo-details span {
    color: #bcd4f9;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 800;
}

.promo-details strong {
    margin-top: 7px;
    font-size: 12px;
}

.promo-content .btn-primary {
    color: var(--blue);
    background: #fff;
    box-shadow: none;
}

.promo-list {
    align-self: center;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 17px;
    background: rgba(255,255,255,.07);
}

.promo-list .card-kicker {
    color: #bcd7ff;
}

.promo-list div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    color: #f0f6ff;
    font-size: 12px;
}

.promo-list div:last-child {
    border-bottom: 0;
}

/* INFORMATION */
.information-section {
    background: #fff;
}

.information-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.link-card {
    padding: 27px;
}

.link-card .card-icon {
    margin-top: 0;
}

.link-card h3 {
    margin: 0 0 13px;
    font-size: 18px;
}

.link-card a {
    display: block;
    padding: 7px 0;
    color: #50627b;
    font-size: 12px;
}

.link-card a:hover,
.card-link {
    color: var(--blue) !important;
}

.link-card p {
    color: var(--muted);
    font-size: 12px;
}

/* LEGAL */
.legal-section {
    padding-top: 10px;
    background: #fff;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.legal-card {
    min-height: 210px;
    padding: 28px;
    text-align: center;
}

.legal-card h2 {
    margin: 9px 0;
    color: var(--navy);
    font-size: 22px;
}

.legal-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

/* HELP */
.help-cta {
    background: #f1f6fc;
    border-top: 1px solid #e2eaf4;
    border-bottom: 1px solid #e2eaf4;
}

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

.help-cta strong,
.help-cta span {
    display: block;
}

.help-cta strong {
    color: var(--navy);
    font-size: 14px;
}

.help-cta span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.help-cta a {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

/* FOOTER */
.footer {
    padding: 65px 0 0;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 35px;
    padding-bottom: 42px;
}

.footer-brand img {
    width: 145px;
}

.footer-company p {
    max-width: 270px;
    margin: 15px 0;
    color: var(--muted);
    font-size: 11px;
}

.socials {
    display: flex;
    gap: 7px;
}

.socials span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #70819a;
    font-size: 10px;
}

.footer-col h4 {
    margin: 3px 0 13px;
    color: var(--navy);
    font-size: 10px;
    letter-spacing: .08em;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    color: var(--muted);
    font-size: 10px;
}

.footer-col a:hover {
    color: var(--blue);
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #edf1f6;
    color: #8290a5;
    font-size: 9px;
}

.footer-bottom a:hover {
    color: var(--blue);
}

/* LOCATION MODAL */
.location-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.location-modal.is-open {
    display: flex;
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4,19,45,.64);
    backdrop-filter: blur(5px);
}

.location-dialog {
    position: relative;
    width: min(820px, 100%);
    max-height: min(90vh, 760px);
    overflow: auto;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.location-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 27px 18px;
}

.location-dialog-head h2 {
    margin: 5px 0;
    color: var(--navy);
    font-size: 22px;
}

.location-dialog-head p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.location-close,
.wa-close {
    border: 0;
    background: transparent;
    color: #7a899f;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.location-map-wrap {
    position: relative;
    height: 300px;
    margin: 0 27px;
    overflow: hidden;
    border-radius: 15px;
}

#locationMap {
    width: 100%;
    height: 100%;
}

.map-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 500;
    padding: 8px 11px;
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    font-size: 10px;
    font-weight: 800;
}

.location-form {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 12px;
    padding: 20px 27px;
}

.location-form label span {
    display: block;
    margin-bottom: 6px;
    color: #53657e;
    font-size: 10px;
    font-weight: 700;
}

.location-form input,
.location-form select {
    width: 100%;
    min-height: 45px;
    padding: 0 12px;
    border: 1px solid #d6e0ed;
    border-radius: 10px;
    outline: none;
    color: var(--text);
    background: #fff;
}

.location-form input:focus,
.location-form select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(23,105,232,.10);
}

.location-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 27px 25px;
}

/* WHATSAPP */
.wa-wrap {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1500;
}

.wa-bubble {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #12bd6a;
    box-shadow: 0 12px 30px rgba(7,92,54,.25);
    cursor: pointer;
    font-size: 18px;
}

.wa-card {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: 260px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(20,50,90,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
}

.wa-card.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-card strong {
    color: var(--navy);
    font-size: 14px;
}

.wa-card p {
    margin: 4px 0 13px;
    color: var(--muted);
    font-size: 11px;
}

.wa-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 9px;
    color: #fff;
    background: #12bd6a;
    font-size: 11px;
    font-weight: 800;
}

.wa-close {
    position: absolute;
    top: 7px;
    right: 9px;
    font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-gallery {
        max-width: 760px;
        width: 100%;
        min-height: 340px;
        margin-inline: auto;
    }

    .gallery-photo {
        height: 300px;
    }

    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 800px) {
    .topbar {
        display: none;
    }

    .nav-wrap {
        min-height: 64px;
    }

    .brand img {
        width: 125px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
        display: grid;
        place-content: center;
        gap: 4px;
        margin-left: auto;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: #fff;
        cursor: pointer;
    }

    .mobile-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: var(--navy);
    }

    .mobile-menu {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 70px;
        z-index: 1200;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 22px 55px rgba(15,45,95,.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .18s ease;
    }

    .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu a {
        padding: 12px;
        border-radius: 9px;
        color: #344761;
        font-size: 13px;
        font-weight: 700;
    }

    .mobile-menu a:hover {
        background: var(--blue-soft);
        color: var(--blue);
    }

    .mobile-login {
        color: #fff !important;
        background: var(--blue) !important;
        text-align: center;
        margin-top: 4px;
    }

    .section {
        padding: 65px 0;
    }

    .hero {
        padding-top: 55px;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 9vw, 48px);
    }

    .hero-gallery {
        min-height: 270px;
        gap: 5px;
    }

    .gallery-photo {
        height: 250px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        padding: 25px 0;
    }

    .coverage-button {
        width: 100%;
        min-width: 0;
    }

    .vision-mission,
    .client-layout,
    .promo-box,
    .information-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .promo-box {
        padding: 28px;
    }

    .promo-details {
        grid-template-columns: 1fr;
    }

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

    .footer-company {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 15px 0;
    }
}

@media (max-width: 600px) {
    .container,
    .narrow-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        display: grid;
        gap: 8px;
    }

    .hero-gallery {
        grid-template-columns: repeat(4, 1fr);
        min-height: 220px;
    }

    .gallery-photo {
        height: 205px;
    }

    .package-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .package-tab {
        padding: 0 5px;
        font-size: 10px;
    }

    .package-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card,
    .package-card.is-popular {
        min-height: 315px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .client-features,
    .client-login-card,
    .link-card {
        padding: 22px;
    }

    .promo-box {
        padding: 23px;
        border-radius: 18px;
    }

    .location-dialog-head {
        padding: 20px;
    }

    .location-map-wrap {
        height: 240px;
        margin: 0 20px;
    }

    .location-form {
        grid-template-columns: 1fr;
        padding: 17px 20px;
    }

    .location-actions {
        padding: 0 20px 20px;
    }

    .wa-wrap {
        right: 14px;
        bottom: 14px;
    }
}
/* =========================================================
   PACKAGE CARDS
   ========================================================= */

.packages-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.package-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dbe5f2;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(15, 42, 82, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: #2f72e8;
    box-shadow: 0 20px 45px rgba(15, 42, 82, 0.12);
}

.package-card.featured {
    border: 2px solid #2470e8;
}

.package-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.package-label {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #2470e8;
}

.package-popular {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #2470e8;
    font-size: 10px;
    font-weight: 800;
}

.package-card h3 {
    margin: 0 0 10px;
    color: #102d55;
    font-size: 23px;
    font-weight: 800;
}

.package-speed {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 8px 0 18px;
}

.package-speed strong {
    color: #1769e0;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
}

.package-speed span {
    color: #64748b;
    font-size: 15px;
    font-weight: 700;
}

.package-price {
    padding: 18px 0;
    border-top: 1px solid #e8eef6;
    border-bottom: 1px solid #e8eef6;
}

.package-price small {
    display: block;
    margin-bottom: 4px;
    color: #7890ad;
    font-size: 11px;
}

.package-price strong {
    color: #102d55;
    font-size: 27px;
    font-weight: 800;
}

.package-price span {
    color: #64748b;
    font-size: 13px;
    margin-left: 4px;
}

.package-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.package-features li {
    padding: 7px 0;
    color: #536b88;
    font-size: 14px;
}

.package-card .btn-full {
    width: 100%;
    justify-content: center;
}

.package-card .btn {
    text-decoration: none;
}


/* GAMERS / BUSINESS */

.package-card.gamers {
    border-color: #c8dcff;
}

.package-card.business {
    border-color: #b9d7ee;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 22px;
    }

    .package-speed strong {
        font-size: 42px;
    }

    .package-price strong {
        font-size: 24px;
    }
}
/* =========================================================
   SUBSCRIPTION PAGE
   ========================================================= */

.subscribe-page {
    min-height: 70vh;
}

.subscribe-hero {
    padding: 90px 0 45px;
    text-align: center;
    background:
        radial-gradient(
            circle at top,
            #eef6ff 0%,
            #ffffff 65%
        );
}

.subscribe-hero h1 {
    max-width: 850px;
    margin: 12px auto 14px;
    color: #102d55;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 800;
}

.subscribe-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    line-height: 1.8;
}

.subscribe-section {
    padding-top: 35px;
}

.subscribe-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.subscribe-package,
.subscribe-form-card {
    background: #ffffff;
    border: 1px solid #dbe5f2;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 42, 82, 0.07);
}

.subscribe-package {
    padding: 28px;
    position: sticky;
    top: 100px;
}

.subscribe-package h2 {
    margin: 12px 0;
    color: #102d55;
    font-size: 26px;
}

.subscribe-package p {
    color: #64748b;
    line-height: 1.7;
}

.subscribe-note {
    margin-top: 25px;
    padding: 18px;
    border-radius: 16px;
    background: #f1f7ff;
}

.subscribe-note strong {
    display: block;
    margin-bottom: 8px;
    color: #1769e0;
}

.subscribe-note p {
    margin: 0;
    font-size: 13px;
}

.subscribe-form-card {
    padding: 32px;
}

.form-heading {
    margin-bottom: 28px;
}

.form-heading h2 {
    margin: 8px 0;
    color: #102d55;
    font-size: 28px;
}

.form-heading p {
    margin: 0;
    color: #64748b;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field > span {
    color: #263f60;
    font-size: 13px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d5e0ed;
    border-radius: 12px;
    padding: 13px 14px;
    background: #ffffff;
    color: #1e3554;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #2470e8;
    box-shadow: 0 0 0 3px rgba(36, 112, 232, 0.10);
}

.form-consent {
    margin-top: 24px;
    padding: 16px;
    border-radius: 14px;
    background: #f7faff;
}

.form-consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #60738c;
    font-size: 12px;
    line-height: 1.6;
    cursor: pointer;
}

.form-consent input {
    margin-top: 3px;
}

.btn-submit {
    margin-top: 22px;
    min-height: 50px;
    border: 0;
    cursor: pointer;
}

@media (max-width: 800px) {

    .subscribe-layout {
        grid-template-columns: 1fr;
    }

    .subscribe-package {
        position: static;
    }

}

@media (max-width: 600px) {

    .subscribe-form-card {
        padding: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }

}
/* =========================================================
   SUBSCRIPTION SUCCESS
   ========================================================= */

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    background:
        radial-gradient(
            circle at top,
            #eef6ff 0%,
            #ffffff 65%
        );
}

.success-card {
    width: min(100%, 560px);
    padding: 45px;
    box-sizing: border-box;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dbe5f2;
    border-radius: 26px;
    box-shadow: 0 20px 60px rgba(15, 42, 82, 0.10);
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f8ef;
    color: #16a05d;
    font-size: 35px;
    font-weight: 800;
}

.success-card h1 {
    margin: 10px 0;
    color: #102d55;
    font-size: 38px;
}

.success-card p {
    color: #64748b;
    line-height: 1.8;
}

.success-number {
    margin: 25px 0;
    padding: 18px;
    border-radius: 16px;
    background: #f1f7ff;
}

.success-number span {
    display: block;
    color: #7186a0;
    font-size: 12px;
}

.success-number strong {
    display: block;
    margin-top: 5px;
    color: #1769e0;
    font-size: 25px;
}