@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #08090b;
    --panel: #101216;
    --text: #f3f5f7;
    --muted: #a8b0bb;
    --brand: #db1f1a;
    --brand-soft: #ff5b56;
    --stroke: #21252d;
    --ink: #0d2540;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 133, 111, 0.85) rgba(16, 41, 64, 0.2);
}

body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: #08090b;
}

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: rgba(16, 41, 64, 0.26);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff856f 0%, #db1f1a 100%);
    border-radius: 999px;
    border: 2px solid rgba(16, 41, 64, 0.26);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff9b89 0%, #e63b36 100%);
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: transparent;
    border-bottom: 0;
    transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-over-text {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(16, 41, 64, 0.08);
}

.site-header .container {
    width: 100%;
    margin: 0;
    padding-inline: 28px;
}

.nav-wrapper {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.32rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.brand img {
    width: 34px;
    height: 34px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.96rem;
    transition: color 180ms ease;
}

.main-nav a:hover {
    color: #173961;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 44px;
    border: 1px solid rgba(13, 37, 64, 0.45);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.36);
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    border-radius: 999px;
    background: #102940;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
    top: 13px;
}

.nav-toggle span:nth-child(2) {
    top: 21px;
}

.nav-toggle span:nth-child(3) {
    top: 29px;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-cta {
    display: none !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 11px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

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

.btn-primary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(13, 37, 64, 0.7);
    box-shadow: none;
}

.btn-outline {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.01);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.scroll-story {
    position: relative;
    background: linear-gradient(90deg, rgba(255, 241, 233, 0.86) 0%, rgba(255, 241, 233, 0.62) 38%, rgba(255, 241, 233, 0.14) 65%),
        url("../img/background_hero.png") center bottom / cover no-repeat fixed;
}

.hero-scene {
    background: transparent;
}

.hero-scene-second .hero-content {
    width: min(1220px, calc(100% - 56px));
    max-width: 1220px;
    padding-left: 28px;
    padding-right: 28px;
}

.hero-scene-second {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.hero-scene-second .hero-content {
    position: relative;
    top: auto;
    padding-top: 16vh;
    padding-bottom: clamp(150px, 18vh, 220px);
}

.hero-scene-second .hero-actions {
    display: none;
}

.hero-scene-second .hero-subtitle {
    max-width: 900px;
}

.section-three {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    background: #ffffff;
    color: #11283f;
    margin-top: 0;
    padding: 210px 28px 210px;
    --parachute-opacity: 0;
    --parachute-drop: 0;
}

.section-three::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -210px;
    height: 280px;
    pointer-events: none;
    background:
        radial-gradient(95px 64px at 2% 42%, #ffffff 0 74%, transparent 75%),
        radial-gradient(150px 90px at 10% 38%, #ffffff 0 74%, transparent 75%),
        radial-gradient(118px 74px at 20% 46%, #ffffff 0 74%, transparent 75%),
        radial-gradient(178px 102px at 30% 36%, #ffffff 0 74%, transparent 75%),
        radial-gradient(108px 72px at 41% 45%, #ffffff 0 74%, transparent 75%),
        radial-gradient(188px 108px at 52% 35%, #ffffff 0 74%, transparent 75%),
        radial-gradient(114px 74px at 63% 44%, #ffffff 0 74%, transparent 75%),
        radial-gradient(174px 102px at 73% 37%, #ffffff 0 74%, transparent 75%),
        radial-gradient(106px 70px at 83% 46%, #ffffff 0 74%, transparent 75%),
        radial-gradient(156px 94px at 92% 40%, #ffffff 0 74%, transparent 75%),
        radial-gradient(88px 60px at 99% 44%, #ffffff 0 74%, transparent 75%),
        linear-gradient(to bottom, transparent 0 44%, #ffffff 45% 100%);
}

.section-three::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -210px;
    height: 280px;
    pointer-events: none;
    z-index: 12;
    background:
        radial-gradient(95px 64px at 2% 58%, #ffffff 0 74%, transparent 75%),
        radial-gradient(150px 90px at 10% 62%, #ffffff 0 74%, transparent 75%),
        radial-gradient(118px 74px at 20% 54%, #ffffff 0 74%, transparent 75%),
        radial-gradient(178px 102px at 30% 64%, #ffffff 0 74%, transparent 75%),
        radial-gradient(108px 72px at 41% 55%, #ffffff 0 74%, transparent 75%),
        radial-gradient(188px 108px at 52% 65%, #ffffff 0 74%, transparent 75%),
        radial-gradient(114px 74px at 63% 56%, #ffffff 0 74%, transparent 75%),
        radial-gradient(174px 102px at 73% 63%, #ffffff 0 74%, transparent 75%),
        radial-gradient(106px 70px at 83% 54%, #ffffff 0 74%, transparent 75%),
        radial-gradient(156px 94px at 92% 61%, #ffffff 0 74%, transparent 75%),
        radial-gradient(88px 60px at 99% 57%, #ffffff 0 74%, transparent 75%),
        linear-gradient(to bottom, #ffffff 0 56%, transparent 57% 100%);
}

.section-three-content {
    width: min(1120px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.section-three-kicker {
    margin: 0 0 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #36506b;
}

.section-three h3 {
    margin: 0;
    max-width: 920px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: #102940;
}

.services-grid {
    margin-top: 34px;
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    min-height: 190px;
    background: #ff856f;
    border: 2px solid #102940;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 26px rgba(16, 41, 64, 0.12);
}

.service-card h4 {
    margin: 0;
    color: #102940;
    font-size: 1.18rem;
    line-height: 1.25;
}

.service-card p {
    margin: 12px 0 0;
    color: #163855;
    font-size: 1rem;
    line-height: 1.52;
    max-width: 44ch;
}

.service-card-media {
    padding: 0;
    min-height: 234px;
    background: #111;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 350ms ease;
}

.service-card-media h4 {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    margin: 0;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(16, 41, 64, 0.86);
    color: #fff;
    font-size: 1rem;
}

.service-card-price {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(16, 41, 64, 0.2);
    color: #102940;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    background: linear-gradient(to top, rgba(16, 41, 64, 0.86) 12%, rgba(16, 41, 64, 0.1) 68%, rgba(16, 41, 64, 0));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.service-card-overlay p {
    margin: 0;
    color: #f6f9fc;
}

.service-card-media:hover img {
    transform: scale(1.045);
}

.service-card-media:hover .service-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.section-three-parachute {
    position: absolute;
    right: clamp(14px, 2.4vw, 38px);
    top: 16px;
    width: clamp(170px, 17vw, 270px);
    max-width: 32%;
    z-index: 1;
    pointer-events: none;
    opacity: var(--parachute-opacity);
    transform: translate3d(0, calc(var(--parachute-drop) * 82vh), 0);
    transition: opacity 180ms linear;
}

.contact-story {
    position: relative;
    z-index: 6;
    background: url("../img/background_contact.png") center center / cover no-repeat fixed;
}

.section-four-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 27, 43, 0.35) 0%, rgba(12, 27, 43, 0.18) 45%, rgba(12, 27, 43, 0.12) 100%);
}

.section-four-wind {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.section-four-wind span {
    position: absolute;
    left: -18%;
    width: clamp(90px, 12vw, 180px);
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(245, 250, 255, 0.58) 45%, rgba(255, 255, 255, 0) 100%);
    filter: blur(0.6px);
    opacity: 0;
    animation: wind-flow linear infinite;
}

.section-four-wind span:nth-child(1) {
    top: 19%;
    animation-duration: 11s;
    animation-delay: -1s;
}

.section-four-wind span:nth-child(2) {
    top: 31%;
    width: clamp(110px, 14vw, 210px);
    animation-duration: 9.5s;
    animation-delay: -4s;
}

.section-four-wind span:nth-child(3) {
    top: 45%;
    animation-duration: 12.5s;
    animation-delay: -6s;
}

.section-four-wind span:nth-child(4) {
    top: 57%;
    width: clamp(100px, 13vw, 195px);
    animation-duration: 10s;
    animation-delay: -2s;
}

.section-four-wind span:nth-child(5) {
    top: 68%;
    animation-duration: 13.5s;
    animation-delay: -8s;
}

.section-four-wind span:nth-child(6) {
    top: 78%;
    width: clamp(85px, 10vw, 155px);
    animation-duration: 8.8s;
    animation-delay: -5s;
}

@keyframes wind-flow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    16% {
        opacity: 0.45;
    }

    78% {
        opacity: 0.38;
    }

    100% {
        transform: translateX(132vw);
        opacity: 0;
    }
}

.section-four-content {
    position: relative;
    z-index: 3;
    width: min(1120px, calc(100% - 56px));
    margin: 0 auto;
    color: #f7fbff;
    padding-top: 120px;
}

.section-four,
.section-five {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-four-kicker {
    margin: 0 0 10px;
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 251, 255, 0.88);
}

.section-four h3 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.taurooks-plus-list {
    margin-top: 28px;
    width: min(860px, 100%);
    display: grid;
    gap: 12px;
}

.taurooks-plus-item {
    background: rgba(11, 29, 47, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 14px;
    backdrop-filter: blur(4px);
    padding: 14px 16px;
}

.taurooks-plus-item h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.06rem;
    line-height: 1.3;
}

.taurooks-plus-item p {
    margin: 7px 0 0;
    color: rgba(247, 251, 255, 0.97);
    font-size: 0.97rem;
    line-height: 1.48;
}

.section-five-content {
    position: relative;
    z-index: 3;
    width: min(1120px, calc(100% - 56px));
    margin: 0 auto;
    color: #f7fbff;
}

.section-five h3 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    line-height: 1.1;
}

.contact-form {
    margin-top: 28px;
    width: min(760px, 100%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    padding: 20px;
    display: grid;
    gap: 14px;
}

.contact-feedback {
    margin: 0;
    border-radius: 12px;
    padding: 11px 13px;
    font-size: 0.94rem;
    line-height: 1.45;
}

.contact-feedback-success {
    background: rgba(106, 220, 148, 0.22);
    border: 1px solid rgba(136, 238, 172, 0.62);
    color: #e7fff0;
}

.contact-feedback-error {
    background: rgba(255, 133, 111, 0.22);
    border: 1px solid rgba(255, 165, 146, 0.62);
    color: #fff0ed;
}

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

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

.contact-field label {
    font-size: 0.88rem;
    color: rgba(247, 251, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(13, 37, 64, 0.38);
    border-radius: 12px;
    color: #f7fbff;
    font: inherit;
    padding: 12px 13px;
    outline: none;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(247, 251, 255, 0.68);
}

.contact-field select {
    color: rgba(247, 251, 255, 0.95);
}

.contact-field select option {
    color: #122d46;
    background: #f3f8fc;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.92);
    background: rgba(13, 37, 64, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.contact-submit {
    justify-self: start;
    color: #102940;
    background: #ffffff;
    border-color: rgba(16, 41, 64, 0.22);
    font-weight: 700;
    padding-inline: 24px;
}

.contact-submit:hover {
    background: #f4f7fa;
    border-color: rgba(16, 41, 64, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    text-align: left;
    padding-block: 158px 100px;
    padding-left: 56px;
}

.hero-particles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    top: -12vh;
    width: 14px;
    height: 28px;
    border-radius: 70% 30% 70% 30%;
    background: rgba(13, 37, 64, 0.5);
    filter: blur(0.2px);
    transform-origin: center;
    animation: leaf-fall linear infinite;
}

.hero-particles span:nth-child(1) {
    left: 8%;
    animation-duration: 13s;
    animation-delay: -2s;
}

.hero-particles span:nth-child(2) {
    left: 22%;
    width: 10px;
    height: 22px;
    animation-duration: 10s;
    animation-delay: -6s;
}

.hero-particles span:nth-child(3) {
    left: 36%;
    width: 11px;
    height: 24px;
    animation-duration: 12.5s;
    animation-delay: -1s;
    opacity: 0.7;
}

.hero-particles span:nth-child(4) {
    left: 52%;
    animation-duration: 11s;
    animation-delay: -8s;
}

.hero-particles span:nth-child(5) {
    left: 67%;
    width: 12px;
    height: 26px;
    animation-duration: 14s;
    animation-delay: -3s;
    opacity: 0.65;
}

.hero-particles span:nth-child(6) {
    left: 79%;
    width: 9px;
    height: 20px;
    animation-duration: 9.5s;
    animation-delay: -5s;
}

.hero-particles span:nth-child(7) {
    left: 91%;
    animation-duration: 12s;
    animation-delay: -9s;
}

@keyframes leaf-fall {
    0% {
        transform: translate3d(0, -8vh, 0) rotate(-14deg);
        opacity: 0;
    }

    12% {
        opacity: 0.72;
    }

    30% {
        transform: translate3d(18px, 28vh, 0) rotate(18deg);
    }

    52% {
        transform: translate3d(-12px, 54vh, 0) rotate(-10deg);
    }

    76% {
        transform: translate3d(22px, 150vh, 0) rotate(15deg);
        opacity: 0.68;
    }

    100% {
        transform: translate3d(-8px, 212vh, 0) rotate(-6deg);
        opacity: 0;
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    color: #203a56;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.1rem, 6vw, 56px);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.hero-subtitle {
    margin: 18px 0 0;
    max-width: 380px;
    color: #203a56;
    font-size: 1.08rem;
    line-height: 1.5;
}

.hero-content-centered {
    margin-inline: auto;
    text-align: center;
}

.hero-second-title {
    margin: 0;
    max-width: 1120px;
    color: var(--ink);
    font-size: clamp(1.85rem, 4vw, 3.1rem);
    line-height: 1.2;
    text-wrap: balance;
}

.hero-subtitle-centered {
    margin: 28px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 37, 64, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    color: #173552;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.25;
    padding: 10px 16px;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero {
    color: var(--ink);
    border-color: rgba(13, 37, 64, 0.8);
    background: rgba(255, 255, 255, 0.25);
    font-weight: 700;
}

.btn-hero:hover {
    border-color: rgba(13, 37, 64, 1);
    background: rgba(255, 255, 255, 0.44);
}

@media (max-width: 920px) {
    .nav-wrapper {
        min-height: 76px;
    }

    .site-header {
        width: 100%;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 14px;
        right: 14px;
        margin-top: 8px;
        display: none;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(16, 41, 64, 0.14);
        border-radius: 14px;
        box-shadow: 0 18px 34px rgba(8, 21, 35, 0.16);
        padding: 14px;
    }

    .site-header.menu-open .main-nav {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .main-nav a {
        font-size: 1rem;
    }

    .nav-cta {
        display: inline-flex !important;
        width: 100%;
        margin-top: 12px;
    }

    .hero {
        min-height: 100vh;
    }

    .scroll-story {
        background-attachment: scroll;
    }

    .contact-story {
        background-attachment: scroll;
    }

    .hero-content {
        text-align: left;
        padding-block: 134px 88px;
        padding-left: 20px;
    }

    .hero-scene-second .hero-content {
        width: min(1220px, calc(100% - 40px));
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-scene-second {
        min-height: 100vh;
    }

    .hero-scene-second .hero-content {
        padding-top: 14vh;
        padding-bottom: clamp(145px, 17vh, 210px);
    }

    .hero-particles span {
        opacity: 0.52;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-content-centered {
        text-align: center;
    }

    .section-three {
        padding: 180px 20px 90px;
    }

    .section-three::after {
        bottom: -175px;
        height: 235px;
    }

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

    .section-three-parachute {
        width: clamp(130px, 20vw, 200px);
        right: 14px;
        z-index: 1;
    }

    .section-three-content {
        position: relative;
        z-index: 4;
    }

    .service-card-price {
        top: auto;
        right: auto;
        left: 14px;
        bottom: 14px;
    }

    .section-three::before {
        top: -175px;
        height: 235px;
    }
}

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

    .brand span {
        font-size: 1.08rem;
    }

    .btn {
        width: 100%;
    }

    .hero-kicker {
        font-size: 0.78rem;
    }

    .hero-second-title {
        font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    }

    .pill {
        width: 100%;
    }

    .hero-scene-second {
        min-height: 100vh;
    }

    .hero-scene-second .hero-content {
        padding-top: 12vh;
        padding-bottom: clamp(130px, 16vh, 180px);
    }

    .section-three::before {
        top: -155px;
        height: 205px;
    }

    .section-three::after {
        bottom: -155px;
        height: 205px;
    }

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

    .service-card {
        min-height: 168px;
    }

    .service-card-media {
        min-height: 198px;
    }

    .section-three-parachute {
        width: clamp(110px, 34vw, 164px);
        right: 8px;
        z-index: 1;
    }

    .section-three-content {
        position: relative;
        z-index: 4;
    }

    .section-four-content {
        width: min(1120px, calc(100% - 32px));
        padding-top: 96px;
    }

    .section-five-content {
        width: min(1120px, calc(100% - 32px));
    }

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

.site-footer {
    position: relative;
    z-index: 8;
    background: #0d1f32;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #e9f1fa;
}

.site-footer-inner {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-brand img {
    width: 30px;
    height: 30px;
}

.footer-branding p {
    margin: 14px 0 0;
    max-width: 320px;
    color: rgba(233, 241, 250, 0.85);
    line-height: 1.5;
}

.footer-column h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.footer-column ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-column li,
.footer-column a {
    color: rgba(233, 241, 250, 0.9);
    text-decoration: none;
    line-height: 1.45;
}

.footer-column a:hover {
    color: #ffffff;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 24px 18px;
    text-align: center;
}

.site-footer-bottom p {
    margin: 0;
    color: rgba(233, 241, 250, 0.74);
    font-size: 0.92rem;
}

.footer-legal-trigger {
    margin-left: 12px;
    border: 0;
    background: none;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    font: inherit;
    font-size: 0.92rem;
}

.footer-legal-trigger:hover {
    color: #ffb0a1;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.legal-modal.is-open {
    display: block;
}

.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 27, 0.68);
    backdrop-filter: blur(3px);
}

.legal-modal-panel {
    position: relative;
    width: min(920px, calc(100% - 36px));
    max-height: calc(100vh - 42px);
    margin: 22px auto;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(16, 41, 64, 0.2);
    box-shadow: 0 24px 56px rgba(7, 16, 27, 0.35);
    padding: 24px 24px 28px;
    color: #17314b;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 133, 111, 0.85) rgba(16, 41, 64, 0.2);
}

.legal-modal-panel::-webkit-scrollbar {
    width: 11px;
}

.legal-modal-panel::-webkit-scrollbar-track {
    background: rgba(16, 41, 64, 0.26);
}

.legal-modal-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff856f 0%, #db1f1a 100%);
    border-radius: 999px;
    border: 2px solid rgba(16, 41, 64, 0.26);
}

.legal-modal-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff9b89 0%, #e63b36 100%);
}

.legal-modal-close {
    position: sticky;
    float: right;
    top: 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 41, 64, 0.08);
    color: #17314b;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.legal-modal h2 {
    margin: 0 0 8px;
    color: #102940;
    font-size: 1.8rem;
}

.legal-modal h3 {
    margin: 18px 0 8px;
    color: #102940;
    font-size: 1.12rem;
}

.legal-modal p {
    margin: 0 0 10px;
    line-height: 1.56;
}

.legal-modal ul {
    margin: 0 0 12px;
    padding-left: 18px;
}

.legal-modal li {
    margin-bottom: 6px;
    line-height: 1.5;
}

@media (max-width: 920px) {
    .site-footer-inner {
        width: min(1160px, calc(100% - 32px));
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

@media (max-width: 680px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-legal-trigger {
        display: inline-block;
        margin-left: 0;
        margin-top: 6px;
    }

    .legal-modal-panel {
        width: calc(100% - 20px);
        margin: 10px auto;
        max-height: calc(100vh - 20px);
        padding: 18px 16px 20px;
    }
}
