:root {
    --ink: #173042;
    --muted: #647985;
    --teal: #0f766e;
    --teal-dark: #095f59;
    --aqua: #dff5f0;
    --sand: #f5efe4;
    --coral: #ef7d62;
    --white: #ffffff;
    --line: rgba(23, 48, 66, .12);
    --shadow: 0 20px 60px rgba(15, 57, 66, .12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: #fbfcfa;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

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

.section {
    padding: 104px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.08;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(48px, 6vw, 82px);
}

h2 {
    font-size: clamp(36px, 4vw, 58px);
}

h3 {
    font-size: 22px;
}

p {
    margin: 0;
}

.section-head {
    max-width: 710px;
    margin-bottom: 48px;
}

.section-head p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

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

.btn-primary {
    color: #fff;
    background: var(--teal);
    box-shadow: 0 12px 28px rgba(15, 118, 110, .25);
}

.btn-primary:hover {
    background: var(--teal-dark);
}

.btn-light {
    color: var(--ink);
    background: #fff;
}

.btn-outline {
    border-color: var(--line);
    background: rgba(255, 255, 255, .7);
}

.arrow {
    transition: transform .25s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 0;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
    padding: 11px 0;
    background: rgba(251, 252, 250, .91);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 35px rgba(26, 56, 65, .08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 19px;
}

.logo-mark {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
}

.logo-mark svg {
    width: 21px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 600;
    font-size: 14px;
}

.nav-links a {
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

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

.menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: #fff;
}

.hero {
    min-height: 820px;
    padding: 148px 0 65px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(223, 245, 240, .95), transparent 31%),
        radial-gradient(circle at 90% 85%, rgba(245, 239, 228, .9), transparent 32%);
    z-index: -2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 62px;
    align-items: center;
}

.hero-copy p {
    max-width: 620px;
    margin: 25px 0 34px;
    color: var(--muted);
    font-size: 19px;
}

.hero-copy h1 span {
    color: var(--teal);
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    color: #526975;
    font-size: 14px;
    font-weight: 600;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--aqua);
    color: var(--teal);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 570px;
}

.hero-image {
    position: absolute;
    inset: 0 0 0 54px;
    overflow: hidden;
    border-radius: 42px 42px 170px 42px;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 40, 48, .2), transparent 48%);
}

.floating-card {
    position: absolute;
    z-index: 2;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(13, 60, 67, .14);
}

.floating-card strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
}

.floating-card small {
    color: var(--muted);
}

.float-one {
    left: 0;
    top: 74px;
}

.float-two {
    right: -16px;
    bottom: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.float-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--aqua);
    color: var(--teal);
    font-size: 21px;
}

.value-strip {
    padding-bottom: 30px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(25, 59, 68, .06);
}

.value-item {
    padding: 26px 28px;
    border-right: 1px solid var(--line);
}

.value-item:last-child {
    border: 0;
}

.value-item strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
}

.value-item span {
    color: var(--muted);
    font-size: 14px;
}

.services {
    background: #fff;
}

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

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

.service-card:hover {
    transform: translateY(-7px);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border-radius: 15px;
    color: var(--teal);
    background: var(--aqua);
    font-size: 23px;
}

.service-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
    background: var(--sand);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
    background: #eef6f8;
}

.experience-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

.experience-images {
    min-height: 590px;
    position: relative;
}

.experience-main {
    position: absolute;
    width: 76%;
    height: 88%;
    left: 0;
    top: 0;
    overflow: hidden;
    border-radius: 32px 32px 120px 32px;
}

.experience-main img,
.experience-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-small {
    position: absolute;
    width: 48%;
    height: 43%;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border: 10px solid #fbfcfa;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.experience-copy>p {
    margin: 22px 0 32px;
    color: var(--muted);
    font-size: 18px;
}

.benefits {
    display: grid;
    gap: 22px;
}

.benefit {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
}

.benefit-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--teal);
    font-weight: 800;
}

.benefit p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 15px;
}

.journeys {
    background: var(--ink);
    color: #fff;
}

.journeys .section-head p {
    color: rgba(255, 255, 255, .65);
}

.journeys .eyebrow {
    color: #8ee2d6;
}

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

.journey-card {
    height: 430px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.journey-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.journey-card:hover img {
    transform: scale(1.06);
}

.journey-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 24, 34, .85), transparent 62%);
}

.journey-content {
    position: absolute;
    z-index: 2;
    left: 23px;
    right: 23px;
    bottom: 22px;
}

.journey-content span {
    display: inline-block;
    margin-bottom: 9px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #b8ece5;
}

.journey-content p {
    margin-top: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: step;
}

.process-item {
    position: relative;
    padding: 28px;
    border-top: 1px solid var(--line);
}

.process-item::before {
    counter-increment: step;
    content: "0" counter(step);
    display: block;
    margin-bottom: 46px;
    color: var(--teal);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.process-item:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 20px;
    right: -8px;
    color: #9aadb4;
    font-size: 22px;
}

.process-item p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.support-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--aqua);
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-content p {
    margin: 22px 0 28px;
    color: #506d73;
    font-size: 18px;
}

.support-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 22px;
    margin-bottom: 32px;
}

.support-list span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 14px;
}

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

.lead-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: var(--sand);
}

.lead-card::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    right: -150px;
    top: -220px;
}

.lead-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    padding: 75px;
    align-items: center;
}

.lead-copy p {
    margin-top: 20px;
    max-width: 490px;
    color: var(--muted);
    font-size: 17px;
}

.lead-note {
    margin-top: 26px;
    display: flex;
    gap: 10px;
    color: #607782;
    font-size: 14px;
}

.lead-form {
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

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

.field {
    display: grid;
    gap: 7px;
}

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

.field label {
    font-size: 13px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dce4e5;
    border-radius: 12px;
    background: #fbfcfc;
    color: var(--ink);
    outline: 0;
    padding: 14px 15px;
    transition: border .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, .1);
}

.field textarea {
    min-height: 92px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    margin-top: 16px;
    border: 0;
}

.form-disclaimer {
    margin-top: 12px;
    color: #819199;
    font-size: 11px;
    text-align: center;
}

.form-success {
    display: none;
    padding: 30px 10px;
    text-align: center;
}

.success-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--aqua);
    color: var(--teal);
    font-size: 28px;
}

.faq-wrap {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
}

.faq-intro p {
    margin-top: 20px;
    color: var(--muted);
}

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

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: none;
    color: var(--ink);
    text-align: left;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.faq-plus {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--aqua);
    color: var(--teal);
    transition: transform .3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--muted);
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 50px 24px 0;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

footer {
    padding: 35px 0;
    border-top: 1px solid var(--line);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: var(--muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .experience-grid,
    .support-card,
    .lead-grid,
    .faq-wrap {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 125px;
    }

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

    .hero-visual {
        min-height: 540px;
    }

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

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

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

    .process-item:nth-child(2)::after {
        display: none;
    }

    .experience-grid {
        gap: 45px;
    }

    .support-image {
        min-height: 430px;
    }

    .support-content,
    .lead-grid {
        padding: 55px;
    }

    .faq-wrap {
        gap: 45px;
    }
}

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

    .section {
        padding: 76px 0;
    }

    .site-header {
        padding: 12px 0;
    }

    .nav-actions .btn {
        display: none;
    }

    .menu-btn {
        display: grid;
        place-items: center;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 45;
        padding: 100px 28px 35px;
        background: #fbfcfa;
        transform: translateX(100%);
        transition: transform .35s ease;
    }

    .mobile-menu.open {
        transform: none;
    }

    .mobile-menu a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-family: "Manrope", sans-serif;
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-menu .btn {
        margin-top: 28px;
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 45px;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-copy p {
        font-size: 17px;
    }

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

    .hero-visual {
        min-height: 430px;
    }

    .hero-image {
        inset: 0 0 0 20px;
        border-radius: 28px 28px 95px 28px;
    }

    .float-one {
        top: 28px;
        left: -3px;
    }

    .float-two {
        right: -5px;
        bottom: 25px;
    }

    .floating-card {
        padding: 13px;
    }

    .value-grid,
    .service-grid,
    .journey-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .journey-card {
        height: 370px;
    }

    .process-item::after {
        display: none;
    }

    .experience-images {
        min-height: 430px;
    }

    .support-content,
    .lead-grid {
        padding: 36px 24px;
    }

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

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

    .lead-card {
        border-radius: 26px;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
    }
}

.travel-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.travel-modal.open {
    visibility: visible;
    opacity: 1;
}

.travel-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.travel-modal__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 42px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.25s ease;
}

.travel-modal.open .travel-modal__content {
    transform: translateY(0) scale(1);
}

.travel-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.travel-modal__close:hover {
    background: #e2e8f0;
    transform: rotate(5deg);
}

.travel-modal__header {
    margin-bottom: 28px;
    padding-right: 30px;
}

.travel-modal__header h2 {
    margin: 10px 0 12px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
}

.travel-modal__header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.travel-modal__form {
    display: grid;
    gap: 18px;
}

.travel-modal__form .form-submit {
    width: 100%;
    margin-top: 4px;
}

.travel-modal__success {
    display: none;
    padding: 30px 0 10px;
    text-align: center;
}

.travel-modal__success p {
    margin-top: 8px;
    color: var(--muted);
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .travel-modal {
        align-items: flex-end;
        padding: 0;
    }

    .travel-modal__content {
        max-width: none;
        max-height: 92vh;
        padding: 36px 22px 26px;
        border-radius: 26px 26px 0 0;
        transform: translateY(100%);
    }

    .travel-modal.open .travel-modal__content {
        transform: translateY(0);
    }

    .travel-modal__header {
        margin-bottom: 22px;
    }
}

.operator-error {
    display: block;
    min-height: 20px;
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
    line-height: 1.4;
}

.form-error {
    display: none;
    margin: 0;
    color: #dc2626;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.form-error.show {
    display: block;
}

.field input.input-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}