@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-v18-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-v18-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/assets/fonts/space-grotesk-v16-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/assets/fonts/space-grotesk-v16-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --clr-deep: #0A6580;
    --clr-ocean: #098496;
    --clr-aqua: #7BB3B3;
    --clr-mist: #ECF5F7;
    --clr-light: #FAF8F5;
    --clr-dim: #5A5A5A;
    --clr-border: #D4D9D5;
    --clr-text: #2A2A2A;
    --shd-soft: 0 3px 10px rgba(0, 0, 0, 0.08);
    --shd-medium: 0 6px 20px rgba(10, 101, 128, 0.15);
    --rad-sm: 0.625rem;
    --rad-md: 1.125rem;
    --gap-xs: 0.625rem;
    --gap-sm: 1rem;
    --gap-md: 1.75rem;
    --gap-lg: 2.75rem;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #2A2A2A;
    background: linear-gradient(165deg, #D4E3ED 0%, #E8F0F5 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

img, picture, video {
    display: block;
    max-width: 100%;
    height: auto;
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--clr-text);
    margin-bottom: var(--gap-md);
}

h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--clr-text);
    margin-bottom: var(--gap-md);
}

h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.625rem, 2.8vw, 2.5rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.018em;
    color: var(--clr-text);
    margin-bottom: var(--gap-sm);
}

p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--clr-dim);
    margin-bottom: var(--gap-sm);
}

.cs-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--gap-sm);
    width: 100%;
}

.v-space > * + * {
    margin-top: var(--gap-md);
}

.h-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
    align-items: center;
}

.cs-grid {
    display: grid;
    gap: var(--gap-md);
}

@media (min-width: 48rem) {
    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.txt-label {
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-aqua);
}

.txt-micro {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--clr-dim);
}

label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-text);
    margin-bottom: 0.625rem;
}

.cs-input {
    width: 100%;
    padding: 1rem 1.375rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--clr-text);
    background: #FFFFFF;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--rad-sm);
    transition: all 0.3s ease;
}

.cs-input:focus {
    outline: none;
    border-color: var(--clr-ocean);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(9, 132, 150, 0.1);
}

.cs-input::placeholder {
    color: rgba(90, 90, 90, 0.5);
}

.hint-txt {
    font-size: 0.875rem;
    color: var(--clr-dim);
    margin-top: 0.5rem;
}

.error-msg {
    font-size: 0.9375rem;
    color: #FF7878;
    margin-top: 0.625rem;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9375rem 2.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(26, 58, 79, 0.2);
}

.cs-btn--wave {
    background: linear-gradient(135deg, #0A6580 0%, #1A7A8F 100%);
    color: #FFFFFF;
}

.cs-btn--wave:hover {
    background: linear-gradient(135deg, #085266 0%, #156B7A 100%);
    box-shadow: 0 8px 24px rgba(26, 58, 79, 0.3);
    transform: translateY(-2px);
}

.cs-btn--wave:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(26, 58, 79, 0.25);
}

.cs-btn--outline {
    background: rgba(255, 255, 255, 0.5);
    color: #1A3A4F;
}

.cs-btn--outline:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #0A6580;
}

.cs-btn--compact {
    padding: 0.8125rem 2rem;
    font-size: 0.875rem;
}

.cs-btn--expand {
    padding: 1.125rem 2.75rem;
    font-size: 1rem;
}

.cs-card {
    background: linear-gradient(135deg, #F0F6FA 0%, #FFFFFF 100%);
    border-radius: var(--rad-md);
    padding: var(--gap-md);
    box-shadow: 0 8px 24px rgba(26, 58, 79, 0.12);
}

.hd-bar {
    background: #E8F0F5;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 4px 16px rgba(26, 58, 79, 0.1);
}

.hd-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.hd-bar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
}

.hd-bar__mark {
    width: 36px;
    height: 36px;
}

.hd-bar__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1A3A4F;
    letter-spacing: 0.02em;
}

.hd-bar__menu {
    display: none;
    align-items: center;
    gap: 2.25rem;
}

@media (min-width: 62rem) {
    .hd-bar__menu {
        display: flex;
    }
}

.hd-bar__item {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4A6A7F;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    cursor: pointer;
}

.hd-bar__item:hover {
    color: #1A3A4F;
}

.hd-bar__action {
    display: none;
    padding: 0.625rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A3A4F;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.375rem;
    text-decoration: none;
    letter-spacing: 0.015em;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(26, 58, 79, 0.08);
}

@media (min-width: 62rem) {
    .hd-bar__action {
        display: inline-block;
    }
}

.hd-bar__action:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #0A6580;
    box-shadow: 0 4px 12px rgba(26, 58, 79, 0.15);
}

.hd-bar__toggle {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    background: none;
    border: none;
    padding: 0.375rem;
    cursor: pointer;
}

@media (min-width: 62rem) {
    .hd-bar__toggle {
        display: none;
    }
}

.hd-bar__toggle span {
    width: 22px;
    height: 1.5px;
    background: #1A3A4F;
    border-radius: 1px;
}

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
}

.mobile-panel.is-open {
    pointer-events: auto;
}

.mobile-panel__shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
}

.mobile-panel.is-open .mobile-panel__shade {
    background: rgba(0, 0, 0, 0.4);
}

.mobile-panel__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 84%;
    max-width: 300px;
    height: 100%;
    background: linear-gradient(145deg, #E0EDF5 0%, #E8F0F5 100%);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(26, 58, 79, 0.2);
}

.mobile-panel.is-open .mobile-panel__content {
    transform: translateX(0);
}

.mobile-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.375rem 1.5rem;
    box-shadow: 0 2px 8px rgba(26, 58, 79, 0.08);
}

.mobile-panel__label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1A3A4F;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-panel__exit {
    background: none;
    border: none;
    padding: 0.375rem;
    cursor: pointer;
    color: #4A6A7F;
}

.mobile-panel__links {
    flex: 1;
    padding: 1.25rem 0;
}

.mobile-panel__link {
    display: block;
    padding: 1rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4A6A7F;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-panel__link:hover {
    color: #1A3A4F;
    background: rgba(255, 255, 255, 0.3);
}

.mobile-panel__bottom {
    padding: 1.5rem;
    box-shadow: 0 -2px 8px rgba(26, 58, 79, 0.08);
}

.mobile-panel__bottom .cs-btn {
    width: 100%;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.age-gate.is-active {
    opacity: 1;
    pointer-events: auto;
}

.age-gate__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 79, 0.75);
    backdrop-filter: blur(4px);
}

.age-gate__modal {
    position: relative;
    width: 100%;
    max-width: 540px;
    background: linear-gradient(135deg, #F0F6FA 0%, #FFFFFF 100%);
    border-radius: 1rem;
    box-shadow: 0 0 0 1px rgba(184, 212, 227, 0.2) inset, 0 20px 60px rgba(26, 58, 79, 0.35);
    padding: 2.5rem 2rem;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.age-gate.is-active .age-gate__modal {
    transform: scale(1);
}

@media (max-width: 26rem) {
    .age-gate__modal {
        padding: 1.75rem 1.5rem;
    }
}

.age-gate__number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #B8B6B3;
    letter-spacing: 0.05em;
}

.age-gate__header {
    margin-bottom: 1.75rem;
}

.age-gate__badge {
    width: auto;
    height: 48px;
    display: block;
}

.age-gate__content {
    margin-bottom: 1.5rem;
}

.age-gate__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 0.625rem;
}

@media (max-width: 26rem) {
    .age-gate__title {
        font-size: 1.5rem;
    }
}

.age-gate__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #4A4A4A;
    letter-spacing: 0.005em;
    line-height: 1.4;
    margin-bottom: 1rem;
}

@media (max-width: 26rem) {
    .age-gate__subtitle {
        font-size: 0.9375rem;
    }
}

.age-gate__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #6B6B6B;
    line-height: 1.65;
    letter-spacing: 0.005em;
}

@media (max-width: 26rem) {
    .age-gate__text {
        font-size: 0.875rem;
    }
}

.age-gate__divider {
    height: 2px;
    background: linear-gradient(90deg, rgba(184, 212, 227, 0.6) 0%, rgba(212, 227, 237, 0.3) 100%);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.age-gate__actions {
    text-align: center;
}

.age-gate__btn {
    width: 100%;
    padding: 0.875rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #FAF8F5;
    background: #0A6580;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(10, 101, 128, 0.3);
}

.age-gate__btn:hover {
    background: #085266;
    box-shadow: 0 6px 20px rgba(10, 101, 128, 0.4);
    transform: translateY(-1px);
}

.age-gate__btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(10, 101, 128, 0.25);
}

@media (max-width: 26rem) {
    .age-gate__btn {
        padding: 0.8125rem 1.75rem;
        font-size: 0.875rem;
    }
}

.age-gate__legal {
    margin-top: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #8B8B8B;
    line-height: 1.5;
}

.age-gate__legal a {
    color: #0A6580;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.age-gate__legal a:hover {
    color: #085266;
}

.hero-block {
    padding: 4rem 0 5rem;
    background: linear-gradient(165deg, #D4E3ED 0%, #E8F0F5 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 48rem) {
    .hero-block {
        padding: 3rem 0 4rem;
    }
}

.hero-block__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/pattern-hero.webp');
    background-position: center center;
    background-repeat: repeat;
    opacity: 0.40;
    filter: blur(1.5px);
    mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    pointer-events: none;
}

.hero-block__frame {
    border-radius: 1.5rem;
    padding: 4rem;
    background: linear-gradient(145deg, rgba(200, 221, 233, 0.5) 0%, rgba(217, 232, 240, 0.4) 100%);
    position: relative;
    box-shadow: 0 16px 64px rgba(26, 58, 79, 0.18);
}

@media (max-width: 48rem) {
    .hero-block__frame {
        padding: 2.5rem 1.75rem;
    }
}

.hero-block__number {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(122, 154, 176, 0.4);
    letter-spacing: 0.2em;
}

@media (max-width: 48rem) {
    .hero-block__number {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 0.8125rem;
    }
}

.hero-block__grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 62rem) {
    .hero-block__grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        gap: 4.5rem;
    }
}

.hero-block__content {
    border-radius: 1rem;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 246, 250, 0.9) 100%);
    position: relative;
    box-shadow: 0 12px 40px rgba(26, 58, 79, 0.15);
}

@media (max-width: 48rem) {
    .hero-block__content {
        padding: 2.5rem 2rem;
    }
}

.hero-block__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-block__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #1A3A4F;
    margin-bottom: 1.5rem;
}

.hero-block__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4A6A7F;
    margin-bottom: 2.5rem;
}

@media (max-width: 48rem) {
    .hero-block__text {
        font-size: 0.9375rem;
    }
}

.hero-block__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-block__visual {
    position: relative;
}

.hero-block__image {
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
    box-shadow: 0 20px 60px rgba(26, 58, 79, 0.25);
}

.hero-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-block__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(26, 58, 79, 0.75) 0%, rgba(26, 58, 79, 0.3) 60%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-block__caption {
    position: absolute;
    bottom: 2.25rem;
    left: 2.25rem;
    right: 2.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 250, 0.96) 100%);
    backdrop-filter: blur(16px);
    border-radius: 0.875rem;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 12px 40px rgba(26, 58, 79, 0.3);
    z-index: 3;
}

@media (max-width: 48rem) {
    .hero-block__caption {
        position: static;
        margin-top: 1.25rem;
    }
}

.hero-block__caption-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.hero-block__caption-text {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1A3A4F;
    line-height: 1.5;
}

.standard-block {
    padding: 5rem 0 6rem;
    background: linear-gradient(165deg, #E8F0F5 0%, #F0F6FA 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 48rem) {
    .standard-block {
        padding: 4rem 0 5rem;
    }
}

.standard-block__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/pattern-grid.webp');
    background-position: center top;
    background-repeat: repeat;
    opacity: 0.40;
    filter: blur(1.5px);
    mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
    pointer-events: none;
}

.standard-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
    position: relative;
}

@media (max-width: 48rem) {
    .standard-block__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 3rem;
    }
}

.standard-block__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 101, 128, 0.3) 0%, rgba(10, 101, 128, 0.1) 50%, rgba(10, 101, 128, 0.3) 100%);
}

.standard-block__label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.standard-block__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.1em;
}

.standard-block__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A3A4F;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.standard-block__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 48rem) {
    .standard-block__meta {
        gap: 1rem;
    }
}

.standard-block__meta span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4A6A7F;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.standard-block__grid {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 62rem) {
    .standard-block__grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 5rem;
    }
}

.standard-block__visual {
    position: relative;
}

@media (max-width: 62rem) {
    .standard-block__visual {
        display: flex;
        flex-direction: column;
    }
}

.standard-block__main-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 58, 79, 0.2);
    width: 100%;
}

.standard-block__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.standard-block__strip-image {
    position: absolute;
    left: 2rem;
    bottom: 3rem;
    width: 220px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 58, 79, 0.35);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.2rem;
}

@media (max-width: 62rem) {
    .standard-block__strip-image {
        position: static;
        width: 100%;
        max-width: 300px;
        margin-top: 1rem;
    }
}

.standard-block__strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 2 / 3;
    border-radius: 0.625rem;
}

.standard-block__caption {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-style: italic;
    color: #4A6A7F;
    line-height: 1.6;
    margin-top: 2.5rem;
}

.standard-block__content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 246, 250, 0.9) 100%);
    border-radius: 1.25rem;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 12px 48px rgba(26, 58, 79, 0.15);
}

@media (max-width: 48rem) {
    .standard-block__content {
        padding: 2.5rem 2rem;
    }
}

.standard-block__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #1A3A4F;
    margin-bottom: 1.25rem;
}

.standard-block__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4A6A7F;
    margin-bottom: 2rem;
}

@media (max-width: 48rem) {
    .standard-block__text {
        font-size: 0.9375rem;
    }
}

.standard-block__principles {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.standard-block__principle {
    position: relative;
    padding-left: 3rem;
}

.standard-block__principle-index {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.standard-block__principle-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A3A4F;
    margin-bottom: 0.375rem;
}

.standard-block__principle-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4A6A7F;
}

.standard-block__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.standard-block__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4A6A7F;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
    cursor: pointer;
}

.standard-block__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.standard-block__link:hover {
    color: #1A3A4F;
}

.standard-block__link:hover::after {
    opacity: 1;
}

.standard-block__legal {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #7A9AB0;
}
.vibe-block {
    padding: 6rem 0 7rem;
    background: radial-gradient(ellipse at top, #E0EDF5 0%, #E8F0F5 50%, #F0F6FA 100%);
    position: relative;
}

@media (max-width: 48rem) {
    .vibe-block {
        padding: 4rem 0 5rem;
    }
}

.vibe-block__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    position: relative;
}

@media (max-width: 48rem) {
    .vibe-block__header {
        margin-bottom: 2.5rem;
    }
}

.vibe-block__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 101, 128, 0.3) 0%, transparent 100%);
}

.vibe-block__label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vibe-block__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.1em;
}

.vibe-block__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A3A4F;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vibe-block__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

@media (max-width: 48rem) {
    .vibe-block__intro {
        margin-bottom: 3rem;
    }
}

.vibe-block__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A3A4F;
    margin-bottom: 1rem;
}

.vibe-block__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4A6A7F;
}

.vibe-block__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
}

@media (min-width: 48rem) {
    .vibe-block__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 48rem) {
    .vibe-block__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        margin-bottom: 4rem;
        padding-bottom: 1rem;
    }

    .vibe-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
}

.vibe-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 250, 0.95) 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(26, 58, 79, 0.12);
    transition: all 0.4s ease;
}

.vibe-card:hover {
    box-shadow: 0 16px 48px rgba(26, 58, 79, 0.2);
    transform: translateY(-4px);
}

.vibe-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vibe-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A3A4F;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.vibe-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0.625rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #F0F6FA 0%, #FFFFFF 100%);
    box-shadow: 0 4px 16px rgba(26, 58, 79, 0.08) inset;
}

.vibe-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
    transition: transform 0.4s ease;
}

.vibe-card:hover .vibe-card__image img {
    transform: scale(1.05);
}

.vibe-card__marker {
    font-size: 0.875rem;
    color: #0A6580;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.vibe-card:hover .vibe-card__marker {
    opacity: 1;
    transform: scale(1.2);
}

.vibe-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.vibe-card__features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4A6A7F;
}

.vibe-card__features li:not(:last-child)::after {
    content: '•';
    margin-left: 0.5rem;
    color: #B8D4E3;
}

.vibe-card__micro {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-style: italic;
    color: #7A9AB0;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.vibe-card__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0A6580;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.vibe-card__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0A6580;
    transition: width 0.3s ease;
}

.vibe-card:hover .vibe-card__link::after {
    width: 100%;
}

.vibe-card__link:hover {
    color: #085266;
}

.vibe-block__closing {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.vibe-block__tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: #1A3A4F;
}
.perks-block {
    padding: 6rem 0 7rem;
    background: #FAF8F5;
    position: relative;
}

@media (max-width: 48rem) {
    .perks-block {
        padding: 4rem 0 5rem;
    }
}

.perks-block__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    position: relative;
}

@media (max-width: 48rem) {
    .perks-block__header {
        margin-bottom: 2.5rem;
    }
}

.perks-block__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 101, 128, 0.3) 0%, transparent 100%);
}

.perks-block__label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.perks-block__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.1em;
}

.perks-block__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A3A4F;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.perks-block__intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4.5rem;
}

@media (max-width: 48rem) {
    .perks-block__intro {
        margin-bottom: 3.5rem;
    }
}

.perks-block__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A3A4F;
    margin-bottom: 1.25rem;
}

.perks-block__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #4A6A7F;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 48rem) {
    .perks-block__text {
        font-size: 1rem;
    }
}

.perks-block__grid {
    display: grid;
    gap: 3rem 2.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 48rem) and (max-width: 75rem) {
    .perks-block__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 75rem) {
    .perks-block__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.perk-item {
    text-align: center;
}

.perk-item__icon {
    font-size: 2.5rem;
    color: #0A6580;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.perk-item__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #1A3A4F;
    margin-bottom: 0.875rem;
}

.perk-item__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4A6A7F;
}
.cta-block {
    padding: 7rem 0 8rem;
    background: #FAF8F5;
    position: relative;
}

@media (max-width: 48rem) {
    .cta-block {
        padding: 5rem 0 6rem;
    }
}

.cta-block__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-block__label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(10, 101, 128, 0.2);
}

@media (max-width: 48rem) {
    .cta-block__label {
        margin-bottom: 2.5rem;
    }
}

.cta-block__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.1em;
}

.cta-block__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A3A4F;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-block__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A3A4F;
    margin-bottom: 1.5rem;
}

.cta-block__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.65;
    color: #4A6A7F;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 48rem) {
    .cta-block__text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

.cta-block__action {
    margin-bottom: 3rem;
}

@media (max-width: 48rem) {
    .cta-block__action {
        margin-bottom: 2.5rem;
    }
}

.cta-block__button {
    display: inline-block;
    padding: 1.125rem 3rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A6580 0%, #1A7A8F 100%);
    border-radius: 0.5rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(10, 101, 128, 0.25);
    cursor: pointer;
}

@media (max-width: 48rem) {
    .cta-block__button {
        display: block;
        padding: 1rem 2rem;
    }
}

.cta-block__button:hover {
    background: linear-gradient(135deg, #085266 0%, #156B7A 100%);
    box-shadow: 0 12px 32px rgba(10, 101, 128, 0.35);
    transform: translateY(-2px);
}

.cta-block__path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    position: relative;
}

@media (max-width: 48rem) {
    .cta-block__path {
        gap: 1rem;
        flex-wrap: nowrap;
        margin-bottom: 2rem;
    }
}

.cta-block__path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 101, 128, 0.2) 20%, rgba(10, 101, 128, 0.2) 80%, transparent 100%);
    z-index: 0;
}

.cta-block__path-step {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A3A4F;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #FAF8F5;
    padding: 0 0.75rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 48rem) {
    .cta-block__path-step {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }
}

.cta-block__path-arrow {
    font-size: 1rem;
    color: #0A6580;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-block__legal {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #7A9AB0;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 48rem) {
    .cta-block__legal {
        font-size: 0.75rem;
    }
}
.contact-block {
    padding: 6rem 0 7rem;
    background: linear-gradient(165deg, #E8F0F5 0%, #D4E3ED 100%);
    position: relative;
}

@media (max-width: 48rem) {
    .contact-block {
        padding: 4rem 0 5rem;
    }
}

.contact-block__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    position: relative;
}

@media (max-width: 48rem) {
    .contact-block__header {
        margin-bottom: 2.5rem;
    }
}

.contact-block__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 101, 128, 0.3) 0%, transparent 100%);
}

.contact-block__label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-block__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.1em;
}

.contact-block__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A3A4F;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-block__grid {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
}

@media (min-width: 62rem) {
    .contact-block__grid {
        grid-template-columns: 45fr 55fr;
        gap: 5rem;
    }
}

@media (max-width: 48rem) {
    .contact-block__grid {
        margin-bottom: 3rem;
    }
}

.contact-block__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1A3A4F;
    margin-bottom: 1.25rem;
}

.contact-block__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #4A6A7F;
    margin-bottom: 2rem;
}

@media (max-width: 48rem) {
    .contact-block__text {
        font-size: 1rem;
    }
}

.contact-block__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.contact-block__features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1A3A4F;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.contact-block__features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0A6580;
    font-weight: 700;
}

.contact-block__email {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #4A6A7F;
}

.contact-block__email a {
    color: #0A6580;
    text-decoration: none;
    font-weight: 500;
}

.contact-block__email a:hover {
    text-decoration: underline;
}

.contact-block__form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 250, 0.95) 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(26, 58, 79, 0.12);
    position: relative;
    min-height: 450px;
}

@media (max-width: 48rem) {
    .contact-block__form-wrapper {
        padding: 2rem 1.5rem;
        min-height: 400px;
    }
}

.contact-form__field {
    margin-bottom: 1.25rem;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 0.9375rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1A3A4F;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid #D8E7F0;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #0A6580;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(10, 101, 128, 0.15);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__button {
    width: 100%;
    padding: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A6580 0%, #1A7A8F 100%);
    border: none;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(10, 101, 128, 0.2);
    margin-bottom: 1rem;
}

.contact-form__button:hover {
    background: linear-gradient(135deg, #085266 0%, #156B7A 100%);
    box-shadow: 0 8px 24px rgba(10, 101, 128, 0.3);
    transform: translateY(-2px);
}

.contact-form__button:active {
    transform: translateY(0);
}

.contact-form__legal {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #7A9AB0;
    text-align: center;
}

.contact-thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 350px;
}

.contact-thank-you__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 101, 128, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: #0A6580;
    margin-bottom: 1.5rem;
}

.contact-thank-you__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1A3A4F;
    margin-bottom: 0.75rem;
}

.contact-thank-you__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4A6A7F;
    margin-bottom: 2rem;
    max-width: 400px;
}

.contact-thank-you__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0A6580;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.contact-thank-you__link:hover {
    color: #085266;
}

.contact-block__age-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 48rem) {
    .contact-block__age-notice {
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
}

.contact-block__age-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A3A4F;
    color: #FFFFFF;
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
}

@media (max-width: 48rem) {
    .contact-block__age-icon {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
}

.contact-block__age-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4A6A7F;
    margin: 0;
}

@media (max-width: 48rem) {
    .contact-block__age-text {
        font-size: 0.8125rem;
    }
}
.footer {
    background: #FAF8F5;
}

.footer__disclaimer {
    background: linear-gradient(135deg, var(--clr-ocean) 0%, var(--clr-aqua) 100%);
    padding: 3rem 0;
    text-align: center;
}

@media (max-width: 48rem) {
    .footer__disclaimer {
        padding: 2.5rem 0;
    }
}

.footer__disclaimer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.footer__disclaimer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 1100px;
    margin: 0 auto 1.25rem;
}

.footer__disclaimer-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 48rem) {
    .footer__disclaimer-text {
        font-size: 0.875rem;
    }
}

.footer__strip {
    background: rgba(10, 101, 128, 0.04);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(10, 101, 128, 0.1);
}

.footer__strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (max-width: 62rem) {
    .footer__strip-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

.footer__strip-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A3A4F;
    letter-spacing: 0.05em;
}

.footer__strip-legal {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #7A9AB0;
}

@media (max-width: 48rem) {
    .footer__strip-legal {
        font-size: 0.75rem;
    }
}

.footer__main {
    padding: 4.5rem 0 4rem;
}

@media (max-width: 48rem) {
    .footer__main {
        padding: 3.5rem 0 3rem;
    }
}

.footer__grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 48rem) and (max-width: 75rem) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2.5rem;
    }
}

@media (min-width: 75rem) {
    .footer__grid {
        grid-template-columns: 3fr 2fr 2fr 1.5fr;
        gap: 4rem;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer__logo img {
    display: block;
}

.footer__logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A3A4F;
    letter-spacing: -0.01em;
}

.footer__description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4A6A7F;
    margin-bottom: 1.25rem;
    max-width: 42ch;
}

.footer__est {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0A6580;
    letter-spacing: 0.1em;
}

.footer__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A3A4F;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4A6A7F;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #0A6580;
    text-decoration: underline;
}

.footer__link--email {
    font-weight: 500;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__response {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #7A9AB0;
    margin: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(10, 101, 128, 0.1);
    padding: 1.75rem 0;
}

@media (max-width: 48rem) {
    .footer__bottom {
        padding: 1.5rem 0;
    }
}

.footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (max-width: 62rem) {
    .footer__bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.footer__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #7A9AB0;
}

@media (max-width: 48rem) {
    .footer__copyright {
        font-size: 0.8125rem;
    }
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer__legal-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #7A9AB0;
    text-decoration: none;
    transition: color 0.2s ease;
}

@media (max-width: 48rem) {
    .footer__legal-link {
        font-size: 0.8125rem;
    }
}

.footer__legal-link:hover {
    color: #0A6580;
    text-decoration: underline;
}

.footer__legal-sep {
    color: #B8D4E3;
    font-size: 0.875rem;
}