:root {
    --navy-950: #09122f;
    --navy-900: #111b43;
    --navy-800: #19285c;
    --blue-600: #365cf5;
    --blue-500: #4d6fff;
    --coral-500: #ff6c5f;
    --gold-400: #ffca63;
    --green-500: #26a978;
    --ink: #151a2d;
    --muted: #697087;
    --surface: #f5f6fa;
    --line: #e5e7ef;
    --white: #ffffff;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --shadow-sm: 0 10px 35px rgba(26, 34, 73, .08);
    --shadow-lg: 0 25px 80px rgba(7, 14, 42, .18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.modal-open {
    padding-right: 0 !important;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 2000;
    padding: 10px 16px;
    background: var(--white);
    color: var(--navy-900);
    border-radius: 8px;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 12px;
}

.container {
    max-width: 1240px;
}

.btn {
    --bs-btn-padding-x: 1.45rem;
    --bs-btn-padding-y: .78rem;
    --bs-btn-border-radius: 999px;
    --bs-btn-font-weight: 700;
    letter-spacing: -.01em;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

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

.btn-primary {
    --bs-btn-bg: var(--coral-500);
    --bs-btn-border-color: var(--coral-500);
    --bs-btn-hover-bg: #ff5648;
    --bs-btn-hover-border-color: #ff5648;
    --bs-btn-active-bg: #ed4f42;
    --bs-btn-active-border-color: #ed4f42;
    box-shadow: 0 12px 30px rgba(255, 108, 95, .28);
}

.btn-dark {
    --bs-btn-bg: var(--navy-900);
    --bs-btn-border-color: var(--navy-900);
    --bs-btn-hover-bg: var(--navy-800);
    --bs-btn-hover-border-color: var(--navy-800);
}

.btn-lg {
    --bs-btn-padding-x: 1.7rem;
    --bs-btn-padding-y: .95rem;
    font-size: .98rem;
}

.site-header {
    padding: 13px 0;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
    padding: 8px 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 35px rgba(8, 14, 41, .1);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
}

.brand:hover {
    color: var(--white);
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 15px 15px 15px 5px;
    background: linear-gradient(135deg, var(--coral-500), #ff9671);
    box-shadow: 0 8px 24px rgba(255, 108, 95, .32);
    transform: rotate(-4deg);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 10px 10px 10px 3px;
}

.brand-mark span {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: -.04em;
    transform: rotate(4deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -.055em;
}

.brand-copy strong span {
    color: var(--coral-500);
}

.brand-copy small {
    margin-top: 4px;
    font-size: .59rem;
    font-weight: 600;
    letter-spacing: .04em;
    opacity: .66;
    text-transform: uppercase;
}

.site-header .nav-link {
    position: relative;
    margin: 0 6px;
    padding: .55rem .65rem !important;
    color: rgba(255, 255, 255, .82);
    font-size: .84rem;
    font-weight: 600;
}

.site-header .nav-link::after {
    content: "";
    position: absolute;
    right: .65rem;
    bottom: .25rem;
    left: .65rem;
    height: 2px;
    background: var(--coral-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: var(--white);
}

.site-header .nav-link:hover::after,
.site-header .nav-link:focus::after {
    transform: scaleX(1);
}

.header-cta {
    border: 0;
    color: var(--navy-900);
    font-size: .78rem;
}

.header-cta i {
    margin-left: 6px;
}

.site-header.scrolled .brand,
.site-header.menu-open .brand,
.site-header.scrolled .brand:hover,
.site-header.menu-open .brand:hover {
    color: var(--navy-900);
}

.site-header.scrolled .nav-link,
.site-header.menu-open .nav-link {
    color: #555e78;
}

.site-header.scrolled .nav-link:hover,
.site-header.menu-open .nav-link:hover {
    color: var(--navy-900);
}

.site-header.scrolled .header-cta,
.site-header.menu-open .header-cta {
    color: var(--white);
    background: var(--navy-900);
}

.hero {
    position: relative;
    min-height: 790px;
    color: var(--white);
    background: var(--navy-950);
    overflow: hidden;
}

.hero-media,
.hero-vignette {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("../img/agencyvisa-hero.png");
    background-position: center center;
    background-size: cover;
    transform: scale(1.01);
    animation: heroIn 1.3s ease-out both;
}

.hero-vignette {
    background:
        linear-gradient(90deg, rgba(6, 12, 34, .97) 0%, rgba(8, 15, 42, .83) 34%, rgba(8, 15, 42, .22) 69%, rgba(8, 15, 42, .1) 100%),
        linear-gradient(0deg, rgba(6, 12, 34, .9) 0%, transparent 38%);
}

@keyframes heroIn {
    from { opacity: .3; transform: scale(1.06); }
    to { opacity: 1; transform: scale(1.01); }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-top: 76px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blue-600);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow > span,
.eyebrow-dot {
    width: 26px;
    height: 2px;
    background: currentColor;
}

.hero-eyebrow {
    color: #dfe4ff;
}

.hero-eyebrow .eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral-500);
    box-shadow: 0 0 0 7px rgba(255, 108, 95, .14);
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    font-size: clamp(3.1rem, 6.2vw, 5.65rem);
    font-weight: 800;
    line-height: .99;
    letter-spacing: -.068em;
}

.hero h1 span {
    color: #ff8a7c;
}

.hero-lead {
    max-width: 640px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .75);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-link-light {
    color: var(--white);
    text-decoration: none;
}

.btn-link-light:hover {
    color: var(--white);
}

.hero-actions i {
    margin-left: 8px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .72);
    font-size: .79rem;
    font-weight: 600;
}

.hero-points i {
    margin-right: 6px;
    color: #7be2b9;
}

.hero-bottom {
    position: absolute;
    right: 12px;
    bottom: 26px;
    left: 12px;
    display: grid;
    grid-template-columns: .8fr .9fr 1.05fr 1.35fr;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(10, 17, 47, .55);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
    padding: 18px 24px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat strong {
    margin-bottom: 2px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.hero-stat span,
.hero-consultant small {
    color: rgba(255, 255, 255, .62);
    font-size: .7rem;
}

.hero-consultant {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, .08);
}

.consultant-icon {
    display: grid;
    flex: 0 0 45px;
    place-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    background: var(--coral-500);
}

.hero-consultant > span:not(.consultant-icon) {
    display: flex;
    flex-direction: column;
}

.hero-consultant strong {
    font-size: .83rem;
}

.hero-consultant .stretched-link {
    border: 0;
    background: transparent;
}

.trust-strip {
    position: relative;
    z-index: 4;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(12, 19, 49, .05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 100px;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item > i {
    color: var(--coral-500);
    font-size: 1.45rem;
}

.trust-item > span {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: .8rem;
}

.trust-item small {
    color: var(--muted);
    font-size: .68rem;
}

.section {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 52px;
}

.section-heading.text-center {
    max-width: 740px;
}

.section-heading h2,
.why-shell h2,
.final-cta h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.06em;
}

.section-heading p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .98rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 310px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border: 32px solid #f1f3fa;
    border-radius: 50%;
    transition: transform .4s ease, border-color .3s ease;
}

.service-card:hover {
    z-index: 2;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-card:hover::before {
    border-color: rgba(77, 111, 255, .1);
    transform: scale(1.14);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 30px;
    border-radius: 15px;
    color: var(--blue-600);
    background: #eef1ff;
    font-size: 1.25rem;
}

.service-card:nth-child(3n+2) .service-icon {
    color: var(--green-500);
    background: #e8f8f2;
}

.service-card:nth-child(3n+3) .service-icon {
    color: var(--coral-500);
    background: #fff0ed;
}

.service-index {
    position: absolute;
    top: 29px;
    right: 29px;
    color: #cbd0dd;
    font-size: .72rem;
    font-weight: 800;
}

.service-card h3,
.process-step h3,
.why-card h3 {
    margin-bottom: 12px;
    color: var(--navy-950);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.service-card p {
    max-width: 310px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: .84rem;
}

.service-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.service-footer > span {
    color: var(--navy-900);
    font-size: .82rem;
    font-weight: 800;
}

.card-arrow {
    display: grid;
    place-items: center;
    width: 41px;
    height: 41px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy-900);
    background: var(--white);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.service-card:hover .card-arrow {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
    transform: rotate(8deg);
}

.section-countries {
    background: var(--surface);
}

.country-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: -22px 0 38px;
}

.filter-btn {
    padding: 10px 18px;
    border: 1px solid #dfe2eb;
    border-radius: 999px;
    color: #596178;
    background: var(--white);
    font-size: .78rem;
    font-weight: 700;
    transition: all .2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.country-item {
    transition: opacity .22s ease, transform .22s ease;
}

.country-item.is-hidden {
    display: none;
}

.country-card {
    --card-accent: var(--blue-500);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(21, 32, 73, .07);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.country-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--card-accent) 13%, transparent);
}

.country-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 74px;
    border-radius: 0 0 6px 0;
    background: var(--card-accent);
}

.country-card:hover {
    box-shadow: 0 22px 60px rgba(25, 33, 72, .14);
    transform: translateY(-7px);
}

.country-green { --card-accent: #29a875; }
.country-coral { --card-accent: #f06f5b; }
.country-gold { --card-accent: #e7a82d; }
.country-navy { --card-accent: #263d8d; }
.country-red { --card-accent: #d84949; }
.country-purple { --card-accent: #7559d8; }

.country-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.country-flag {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 56, .1);
    font-size: 2rem;
    line-height: 1;
}

.country-region {
    padding: 6px 10px;
    border-radius: 999px;
    color: #71788b;
    background: #f4f5f8;
    font-size: .62rem;
    font-weight: 700;
}

.country-card h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 1.48rem;
    font-weight: 800;
    letter-spacing: -.045em;
}

.country-type {
    margin: 2px 0 18px;
    color: var(--muted);
    font-size: .78rem;
}

.country-price {
    margin-bottom: 17px;
    color: var(--navy-900);
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.country-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
    color: #777e91;
    font-size: .68rem;
}

.country-meta i {
    width: 18px;
    color: var(--card-accent);
}

.country-link,
.program-link {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: 0;
    border: 0;
    color: var(--navy-900);
    background: transparent;
    font-size: .76rem;
    font-weight: 800;
    text-align: left;
}

.country-link i,
.program-link i {
    transition: transform .2s ease;
}

.country-link:hover i,
.program-link:hover i {
    transform: translateX(4px);
}

.countries-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
    padding: 23px 26px;
    border: 1px solid #e1e4ec;
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
}

.countries-note > i {
    color: var(--blue-600);
    font-size: 1.8rem;
}

.countries-note > span {
    display: flex;
    flex: 1;
    flex-direction: column;
    color: var(--muted);
    font-size: .75rem;
}

.countries-note strong {
    color: var(--navy-900);
    font-size: .9rem;
}

.section-residence {
    padding-top: 0;
    background: var(--surface);
}

.residence-shell {
    position: relative;
    padding: 72px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 95% 0%, rgba(77, 111, 255, .28), transparent 30%),
        linear-gradient(145deg, #0d173b, #16275d);
    box-shadow: var(--shadow-lg);
}

.residence-shell::before {
    content: "";
    position: absolute;
    top: -210px;
    left: -160px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .02), 0 0 0 120px rgba(255, 255, 255, .015);
}

.section-heading-light h2,
.section-heading-light p {
    color: var(--white);
}

.section-heading-light p {
    opacity: .66;
}

.section-heading-light .eyebrow {
    color: #91a5ff;
}

.residence-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 345px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    color: var(--white);
    background: rgba(255, 255, 255, .075);
    backdrop-filter: blur(12px);
    transition: background .3s ease, transform .3s ease;
}

.residence-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-7px);
}

.residence-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.program-flag {
    font-size: 2.4rem;
}

.program-tag {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: rgba(255, 255, 255, .7);
    font-size: .6rem;
    font-weight: 700;
}

.residence-card small {
    margin-bottom: 2px;
    color: #91a5ff;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.residence-card h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.residence-card p {
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
}

.program-meta {
    margin-top: auto;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #ffd08a;
    font-size: .72rem;
    font-weight: 700;
}

.program-link {
    color: var(--white);
}

.section-process {
    position: relative;
}

.process-grid {
    position: relative;
}

.process-line {
    position: relative;
    top: 61px;
    width: 75%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, #ccd1df 10%, #ccd1df 90%, transparent);
}

.process-step {
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.step-number {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 26px;
    border: 8px solid var(--white);
    border-radius: 50%;
    color: var(--blue-600);
    background: #eef1ff;
    box-shadow: 0 0 0 1px #dfe3f0;
    font-size: .76rem;
    font-weight: 800;
}

.process-step:nth-child(2n) .step-number {
    color: var(--coral-500);
    background: #fff0ed;
}

.process-step p,
.why-card p {
    color: var(--muted);
    font-size: .78rem;
}

.section-prices {
    background: #f8f8fb;
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.price-card-featured {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
    box-shadow: 0 25px 70px rgba(17, 27, 67, .24);
    transform: translateY(-10px);
}

.price-label {
    align-self: flex-start;
    margin-bottom: 25px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--blue-600);
    background: #eef1ff;
    font-size: .63rem;
    font-weight: 800;
}

.price-card-featured .price-label {
    color: #ffe4df;
    background: rgba(255, 108, 95, .18);
}

.price-card h3 {
    margin-bottom: 12px;
    color: var(--navy-950);
    font-size: 1.25rem;
    font-weight: 800;
}

.price-card-featured h3 {
    color: var(--white);
}

.price-value {
    margin-bottom: 14px;
    color: var(--navy-900);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.055em;
}

.price-value small {
    font-size: .72rem;
    font-weight: 600;
}

.price-card-featured .price-value {
    color: #ff8a7c;
}

.price-card > p {
    min-height: 52px;
    color: var(--muted);
    font-size: .78rem;
}

.price-card-featured > p {
    color: rgba(255, 255, 255, .62);
}

.price-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 30px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    list-style: none;
    color: #565e74;
    font-size: .76rem;
}

.price-card-featured ul {
    color: rgba(255, 255, 255, .72);
    border-color: rgba(255, 255, 255, .12);
}

.price-card li i {
    margin-right: 8px;
    color: var(--green-500);
}

.price-card .btn {
    margin-top: auto;
}

.price-disclaimer {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: .7rem;
    text-align: center;
}

.price-disclaimer i {
    margin-right: 6px;
    color: var(--blue-600);
}

.price-disclaimer code {
    color: var(--navy-900);
}

.why-shell {
    padding: 70px;
    border-radius: var(--radius-lg);
    background: #f4f6ff;
}

.why-shell h2 {
    margin-bottom: 22px;
}

.why-lead {
    margin-bottom: 28px;
    color: var(--muted);
}

.why-card {
    height: 100%;
    padding: 26px;
    border: 1px solid rgba(77, 111, 255, .1);
    border-radius: 19px;
    background: rgba(255, 255, 255, .8);
}

.why-card > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 13px;
    color: var(--blue-600);
    background: #e7ebff;
    font-size: 1.1rem;
}

.why-card h3 {
    font-size: .98rem;
}

.why-card p {
    margin: 0;
}

.section-faq {
    padding-top: 70px;
}

.sticky-heading {
    position: sticky;
    top: 130px;
}

.faq-accordion {
    border-top: 1px solid var(--line);
}

.faq-accordion .accordion-item {
    border-color: var(--line);
}

.faq-accordion .accordion-button {
    padding: 25px 5px;
    color: var(--navy-950);
    background: transparent;
    box-shadow: none;
    font-size: .96rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--blue-600);
}

.faq-accordion .accordion-body {
    padding: 0 44px 28px 5px;
    color: var(--muted);
    font-size: .84rem;
}

.final-cta {
    padding-top: 25px;
}

.final-cta-shell {
    position: relative;
    padding: 70px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(125deg, var(--blue-600), #724ad1 72%, #934ac8);
    box-shadow: 0 28px 75px rgba(54, 92, 245, .27);
}

.final-cta h2 {
    margin-bottom: 16px;
    color: var(--white);
}

.final-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.eyebrow-light {
    color: #dce3ff;
}

.final-cta-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.orbit-one {
    top: -170px;
    right: -60px;
    width: 410px;
    height: 410px;
}

.orbit-two {
    right: 50px;
    bottom: -240px;
    width: 540px;
    height: 540px;
}

.site-footer {
    margin-top: 30px;
    padding: 80px 0 26px;
    color: rgba(255, 255, 255, .62);
    background: var(--navy-950);
}

.footer-brand {
    margin-bottom: 22px;
}

.site-footer p {
    max-width: 420px;
    font-size: .78rem;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a,
.site-footer li button {
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, .56);
    background: transparent;
    font-size: .72rem;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer li button:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .62rem;
}

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px 9px 9px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--coral-500);
    box-shadow: 0 12px 35px rgba(255, 108, 95, .35);
    font-size: .7rem;
    font-weight: 800;
}

.floating-contact i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
}

.lead-modal .modal-dialog {
    max-width: 930px;
}

.lead-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 28px;
    box-shadow: 0 35px 120px rgba(5, 11, 34, .35);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 35px;
    height: 35px;
    padding: 9px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .8);
}

.modal-aside {
    position: relative;
    min-height: 620px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 108, 95, .28), transparent 31%),
        linear-gradient(150deg, var(--navy-950), var(--navy-800));
}

.modal-aside::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -140px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 48px rgba(255, 255, 255, .025), 0 0 0 96px rgba(255, 255, 255, .018);
}

.modal-aside-content {
    position: relative;
    z-index: 1;
    padding: 70px 38px 42px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 35px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-size: .62rem;
    font-weight: 700;
}

.modal-aside h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.055em;
}

.modal-aside p {
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
}

.modal-aside ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .76);
    font-size: .76rem;
}

.modal-aside li i {
    margin-right: 8px;
    color: #7be2b9;
}

.modal-form-wrap {
    min-height: 620px;
    padding: 48px;
    background: var(--white);
}

.form-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-bottom: 36px;
}

.form-progress span {
    height: 4px;
    border-radius: 999px;
    background: #e8eaf0;
    transition: background .25s ease;
}

.form-progress span.active {
    background: var(--coral-500);
}

.form-step {
    display: none;
    animation: formStepIn .3s ease both;
}

.form-step.active {
    display: block;
}

@keyframes formStepIn {
    from { opacity: 0; transform: translateX(8px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-step-label {
    color: var(--blue-600);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-step h3,
.form-success h3 {
    margin: 7px 0 27px;
    color: var(--navy-950);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -.045em;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.choice-card {
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: #555e73;
    background: #fafbfc;
    font-size: .72rem;
    font-weight: 700;
    transition: all .2s ease;
}

.choice-card span i {
    color: var(--blue-600);
    font-size: 1rem;
}

.choice-card input:checked + span {
    color: var(--navy-900);
    border-color: var(--blue-500);
    background: #f0f3ff;
    box-shadow: 0 0 0 3px rgba(77, 111, 255, .09);
}

.choice-card input:focus-visible + span {
    outline: 3px solid rgba(77, 111, 255, .24);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 28px;
}

.form-actions .btn-link {
    color: var(--muted);
    text-decoration: none;
}

.form-label {
    margin-bottom: 6px;
    color: var(--navy-900);
    font-size: .7rem;
    font-weight: 700;
}

.form-label span {
    color: #9ba0af;
    font-weight: 500;
}

.form-control,
.form-select {
    min-height: 50px;
    padding: .7rem .9rem;
    border-color: #dfe2e9;
    border-radius: 12px;
    color: var(--navy-900);
    font-size: .8rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(77, 111, 255, .1);
}

textarea.form-control {
    min-height: 85px;
    resize: vertical;
}

.consent-check {
    margin-top: 3px;
    color: var(--muted);
    font-size: .65rem;
    line-height: 1.45;
}

.consent-check a {
    color: var(--blue-600);
}

.form-check-input:checked {
    border-color: var(--blue-600);
    background-color: var(--blue-600);
}

.is-invalid {
    border-color: #df4a4a !important;
}

.choice-card.is-invalid span {
    border-color: #df4a4a;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
}

.form-success {
    display: none;
    padding-top: 45px;
    text-align: center;
}

.form-success.active {
    display: block;
}

.success-icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    border-radius: 50%;
    color: var(--white);
    background: var(--green-500);
    box-shadow: 0 15px 35px rgba(38, 169, 120, .23);
    font-size: 1.8rem;
}

.form-success p {
    margin: -14px auto 26px;
    color: var(--muted);
    font-size: .8rem;
}

@media (max-width: 1199.98px) {
    .hero h1 { font-size: 4.6rem; }
    .hero-bottom { grid-template-columns: repeat(3, 1fr); }
    .hero-consultant { display: none; }
    .residence-shell { padding: 55px; }
}

@media (max-width: 991.98px) {
    .site-header { background: rgba(9, 18, 47, .65); backdrop-filter: blur(12px); }
    .navbar-collapse { margin-top: 12px; padding: 17px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-lg); }
    .site-header .nav-link { margin: 0; color: #555e78; }
    .site-header .nav-link:hover { color: var(--navy-900); }
    .site-header .header-cta { width: 100%; margin-top: 10px; color: var(--white); background: var(--navy-900); }
    .navbar-toggler { border: 0; background: var(--white); }
    .hero { min-height: 800px; }
    .hero-media { background-position: 61% center; opacity: .78; }
    .hero-vignette { background: linear-gradient(90deg, rgba(6, 12, 34, .96), rgba(8, 15, 42, .56)), linear-gradient(0deg, rgba(6, 12, 34, .94), transparent 45%); }
    .hero-content { padding-top: 100px; }
    .hero h1 { max-width: 690px; font-size: clamp(3.4rem, 9vw, 5rem); }
    .hero-bottom { grid-template-columns: repeat(3, 1fr); }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .section { padding: 85px 0; }
    .section-heading .col-lg-5 p { margin-top: 20px; }
    .residence-shell, .why-shell, .final-cta-shell { padding: 48px 36px; }
    .process-line { display: none; }
    .price-card-featured { transform: none; }
    .sticky-heading { position: static; }
    .modal-aside { display: none; }
    .modal-form-wrap { min-height: 600px; }
}

@media (max-width: 767.98px) {
    .hero { min-height: 850px; }
    .hero-media { background-position: 66% center; }
    .hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-points { align-items: flex-start; flex-direction: column; gap: 8px; }
    .hero-bottom { grid-template-columns: 1fr; bottom: 18px; }
    .hero-stat { min-height: auto; padding: 13px 18px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
    .hero-stat:nth-child(3) { border-bottom: 0; }
    .hero-stat strong { font-size: .95rem; }
    .hero-stat span { font-size: .62rem; }
    .trust-item { padding: 16px; }
    .trust-item > i { font-size: 1.2rem; }
    .trust-item strong { font-size: .7rem; }
    .trust-item small { display: none; }
    .section { padding: 72px 0; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2, .why-shell h2, .final-cta h2 { font-size: 2.4rem; }
    .service-card { min-height: 280px; }
    .country-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .filter-btn { flex: 0 0 auto; }
    .countries-note { align-items: flex-start; flex-wrap: wrap; }
    .countries-note .btn { width: 100%; }
    .residence-shell, .why-shell, .final-cta-shell { padding: 38px 22px; border-radius: 25px; }
    .residence-card { min-height: 320px; }
    .process-step { padding: 12px 10px; }
    .price-card { min-height: 440px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .floating-contact span { display: none; }
    .floating-contact { right: 14px; bottom: 14px; padding: 7px; }
    .modal-dialog { margin: 10px; }
    .lead-modal .modal-content { border-radius: 21px; }
    .modal-form-wrap { min-height: 640px; padding: 45px 22px 25px; }
    .choice-grid { grid-template-columns: 1fr; gap: 8px; }
    .choice-card span { min-height: 50px; }
}

@media (max-width: 430px) {
    .brand-copy small { display: none; }
    .brand-mark { width: 39px; height: 39px; }
    .hero h1 { font-size: 2.85rem; }
    .hero-lead { font-size: .94rem; }
    .section-heading h2, .why-shell h2, .final-cta h2 { font-size: 2.08rem; }
    .country-card { min-height: 330px; padding: 24px; }
    .form-actions { align-items: stretch; flex-direction: column-reverse; }
    .form-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

