/* ── Local Font: Plus Jakarta Sans ────────────────────── */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/PlusJakartaSans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/PlusJakartaSans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/PlusJakartaSans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/PlusJakartaSans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/PlusJakartaSans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/PlusJakartaSans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/PlusJakartaSans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/PlusJakartaSans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
    --primary: #0085db;
    --secondary: #46caeb;
    --success: #4bd08b;
    --danger: #fb977d;
    --warning: #f8c076;
    --body-bg: #111C2D;
    --card-bg: #15263A;
    --text: #7C8FAC;
    --heading: #EAEFF4;
    --border: rgba(189, 200, 240, 0.2);
    --card-radius: 18px;
    --btn-radius: 30px;
}

/* ── CSS Reset ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--body-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
    list-style: none;
}

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

/* ── Navigation ────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: 72px;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav__logo-img {
    height: 28px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
}

.nav__links a:hover {
    color: var(--heading);
}

.nav__links a.nav__link--active {
    color: var(--primary);
}

.nav__cta {
    flex-shrink: 0;
}

.nav__cta a {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--btn-radius);
    transition: background 0.2s ease, transform 0.15s ease;
}

.nav__cta a:hover {
    background: #0074c4;
    transform: translateY(-1px);
}

/* ── Hamburger (CSS-only checkbox hack) ────────────────── */
.nav__toggle {
    display: none;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animation when open */
.nav__toggle:checked ~ .nav__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle:checked ~ .nav__hamburger span:nth-child(2) {
    opacity: 0;
}

.nav__toggle:checked ~ .nav__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav overlay ────────────────────────────────── */
.nav__overlay {
    display: none;
}

/* ── Responsive: below 768px ───────────────────────────── */
@media (max-width: 768px) {
    .nav__hamburger {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--card-bg);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 88px 32px 32px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav__links a {
        font-size: 1.05rem;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav__cta {
        display: none;
    }

    .nav__links .nav__cta--mobile {
        display: block;
        margin-top: 24px;
        padding: 12px 28px;
        background: var(--primary);
        color: #fff;
        font-size: 0.938rem;
        font-weight: 600;
        border-radius: var(--btn-radius);
        text-align: center;
        width: 100%;
    }

    /* Overlay backdrop */
    .nav__overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }

    /* Open state */
    .nav__toggle:checked ~ .nav__links {
        transform: translateX(0);
    }

    .nav__toggle:checked ~ .nav__overlay {
        opacity: 1;
        visibility: visible;
    }
}

/* ── Page body offset for fixed nav ────────────────────── */
.page {
    padding-top: 72px;
}

/* ── Button Styles ────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.938rem;
    border-radius: var(--btn-radius);
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #0074c4;
    border-color: #0074c4;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}

/* ── Hero Section ─────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 24px 48px;
    position: relative;
}

.hero__shader {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hero__headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    visibility: hidden;
}

.hero__word {
    display: inline-block;
    white-space: nowrap;
}

.hero__char {
    display: inline-block;
    opacity: 0;
    animation: heroCharFadeIn 0.3s ease-in-out forwards;
}

@keyframes heroCharFadeIn {
    from {
        opacity: 0;
        transform: translateY(-2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__subheadline {
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 540px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

/* ── Hero Visual ──────────────────────────────────────── */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero__diagram {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__file-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 160px;
    border-radius: var(--card-radius);
    position: relative;
    overflow: hidden;
}

.hero__file-icon--docx {
    background: linear-gradient(135deg, #1a5fb4 0%, #3584e4 100%);
    box-shadow: 0 8px 32px rgba(0, 133, 219, 0.3);
}

.hero__file-icon--pdf {
    background: linear-gradient(135deg, #c01c28 0%, #e66100 100%);
    box-shadow: 0 8px 32px rgba(251, 151, 125, 0.3);
}

.hero__file-icon--html {
    background: linear-gradient(135deg, #e66100 0%, #f5c211 100%);
    box-shadow: 0 8px 32px rgba(245, 194, 17, 0.3);
}

.hero__outputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero__output-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__file-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.hero__file-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero__arrow-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    position: relative;
}

.hero__arrow-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid var(--secondary);
}

.hero__arrow-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Hero Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 48px;
        min-height: auto;
    }

    .hero__content {
        align-items: center;
    }

    .hero__subheadline {
        max-width: 100%;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__visual {
        order: 2;
    }

    .hero__diagram {
        gap: 16px;
    }

    .hero__file-icon {
        width: 100px;
        height: 130px;
    }

    .hero__file-icon svg {
        width: 36px;
        height: 36px;
    }

    .hero__arrow-line {
        width: 40px;
    }

    .hero__output-row {
        gap: 16px;
    }

    .hero__outputs {
        gap: 12px;
    }
}

/* ── Pain Points Section ─────────────────────────────── */
.pain-points {
    padding: 80px 24px;
}

.pain-points__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.pain-points__heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--heading);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.pain-points__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-points__card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 32px;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-points__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pain-points__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-points__icon svg {
    width: 28px;
    height: 28px;
}

.pain-points__icon--danger {
    background: #402739;
}

.pain-points__icon--warning {
    background: #403937;
}

.pain-points__icon--primary {
    background: #0E3150;
}

.pain-points__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 12px;
}

.pain-points__card-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pain-points__grid {
        grid-template-columns: 1fr;
    }
}

/* ── How It Works Section ──────────────────────────────── */
.how-it-works {
    padding: 80px 24px;
}

.how-it-works__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.how-it-works__heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--heading);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.how-it-works__diagram {
    display: block;
    max-width: 100%;
    margin: 0 auto 48px;
    border: 2px solid #fff;
    border-radius: var(--card-radius);
}

.how-it-works__steps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
}

.how-it-works__step {
    text-align: center;
    max-width: 300px;
    position: relative;
}

.how-it-works__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 40px);
    width: calc(100% - 32px);
    height: 2px;
    border-top: 2px dashed var(--border);
}

.how-it-works__badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.how-it-works__icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 16px;
}

.how-it-works__icons .how-it-works__icon {
    margin: 0;
}

.how-it-works__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-it-works__icon svg {
    width: 48px;
    height: 48px;
}

.how-it-works__step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 12px;
}

.how-it-works__step-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-it-works__steps {
        flex-direction: column;
        align-items: center;
    }

    .how-it-works__step:not(:last-child)::after {
        display: none;
    }
}

/* ── Features Section ────────────────────────────────────── */
.features {
    padding: 80px 24px;
}

.features__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.features__heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--heading);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

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

.features__card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.features__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.features__icon svg {
    width: 24px;
    height: 24px;
}

.features__icon--primary {
    background: #0E3150;
}

.features__icon--secondary {
    background: #292A50;
}

.features__icon--success {
    background: #103E3D;
}

.features__icon--warning {
    background: #403937;
}

.features__icon--danger {
    background: #402739;
}

.features__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 12px;
}

.features__card-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ── CTA Section ───────────────────────────────────────── */
.cta {
    padding: 96px 24px;
    background: linear-gradient(180deg, #0E3150 0%, var(--body-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta__inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta__subtext {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 32px;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.cta__secondary {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s ease;
}

.cta__secondary:hover {
    color: var(--secondary);
}


/* ── Pricing Page Styles ───────────────────────────────── */
.pricing-hero {
    padding: 80px 24px 48px;
    text-align: center;
}

.pricing-hero__heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.pricing-hero__subheading {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.7;
}

/* ── Billing Toggle ────────────────────────────────────── */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 48px;
}

.billing-toggle__label {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
}

.billing-toggle__label--active {
    color: var(--heading);
    font-weight: 600;
}

.billing-toggle__switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.billing-toggle__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-toggle__slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.billing-toggle__slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.billing-toggle__input:checked + .billing-toggle__slider {
    background: var(--primary);
}

.billing-toggle__input:checked + .billing-toggle__slider::before {
    transform: translateX(24px);
}

/* ── Price Toggle Display ──────────────────────────────── */
.pricing-grid.yearly .price-monthly { display: none; }
.pricing-grid.yearly .price-yearly { display: block; }
.pricing-grid:not(.yearly) .price-monthly { display: block; }
.pricing-grid:not(.yearly) .price-yearly { display: none; }

/* ── Pricing Grid ──────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ── Pricing Card ──────────────────────────────────────── */
.pricing-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card--popular {
    border: 2px solid var(--primary);
    box-shadow: 0 0 32px rgba(0, 133, 219, 0.2);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-card__icon svg {
    width: 28px;
    height: 28px;
}

.pricing-card__icon--secondary {
    background: #292A50;
}

.pricing-card__icon--primary {
    background: #0E3150;
}

.pricing-card__icon--success {
    background: #103E3D;
}

.pricing-card__icon--warning {
    background: #403937;
}

.pricing-card__plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.pricing-card__price {
    margin-bottom: 24px;
}

.pricing-card__amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.1;
}

.pricing-card__period {
    font-size: 0.938rem;
    color: var(--text);
    font-weight: 400;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    color: var(--text);
}

.pricing-card__feature svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-card__feature--included svg {
    color: var(--success);
}

.pricing-card__feature--excluded {
    opacity: 0.5;
}

.pricing-card__feature--excluded svg {
    color: var(--text);
}

.pricing-card__cta {
    margin-top: auto;
}

.pricing-card__cta .btn {
    width: 100%;
}

/* ── Legal Page Layout ─────────────────────────────────── */
.legal {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}

.legal__header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.legal__subtitle {
    font-size: 1rem;
    color: var(--text);
}

.legal__updated {
    font-size: 0.875rem;
    color: var(--text);
}

.legal__section {
    margin-bottom: 40px;
}

.legal__section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.legal__subsection-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
    margin: 24px 0 12px;
}

.legal__text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal__list {
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal__list li {
    position: relative;
    padding-left: 20px;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.legal__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.legal__basis {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 14px;
    background: rgba(0, 133, 219, 0.1);
    border: 1px solid rgba(0, 133, 219, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--secondary);
}

.legal__contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 24px 28px;
    margin: 12px 0;
}

.legal__contact-card p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.legal__contact-card strong {
    color: var(--heading);
    font-weight: 600;
}

.legal__contact-card a {
    color: var(--primary);
    transition: color 0.2s ease;
}

.legal__contact-card a:hover {
    color: var(--secondary);
}

.legal__rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.legal__right-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
}

.legal__right-item strong {
    display: block;
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 2px;
}

.legal__right-item span {
    font-size: 0.85rem;
    color: var(--text);
}

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

/* ── Docs Page Styles ─────────────────────────────────── */
.docs-hero {
    padding: 80px 24px 48px;
    text-align: center;
}

.docs-hero__heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.docs-hero__subheading {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Docs Layout */
.docs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 96px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

/* Sidebar */
.docs__sidebar {
    position: sticky;
    top: 96px;
}

.docs__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.docs__nav-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 16px 12px 6px;
}

.docs__nav-heading:first-child {
    padding-top: 0;
}

.docs__nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.docs__nav-link:hover {
    color: var(--heading);
    background: rgba(189, 200, 240, 0.06);
}

/* Content */
.docs__content {
    min-width: 0;
}

.docs__section {
    margin-bottom: 56px;
    scroll-margin-top: 96px;
}

.docs__section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.docs__subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
    margin: 28px 0 12px;
}

.docs__text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.docs__link {
    color: var(--primary);
    transition: color 0.2s ease;
}

.docs__link:hover {
    color: var(--secondary);
}

.docs__code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875em;
    background: rgba(0, 133, 219, 0.1);
    border: 1px solid rgba(0, 133, 219, 0.15);
    border-radius: 4px;
    padding: 2px 6px;
    color: var(--secondary);
}

/* Code Block */
.docs__code-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 12px 0 20px;
}

.docs__code-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.15);
}

.docs__pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    color: var(--heading);
    padding: 16px;
    margin: 0;
    overflow-x: auto;
    line-height: 1.6;
    white-space: pre;
}

/* Roles */
.docs__roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0 24px;
}

.docs__role {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 24px;
}

.docs__role-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.docs__role-icon svg {
    width: 24px;
    height: 24px;
}

.docs__role-icon--primary {
    background: #0E3150;
    color: var(--primary);
}

.docs__role-icon--secondary {
    background: #292A50;
    color: var(--secondary);
}

.docs__role-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.docs__role-desc {
    font-size: 0.938rem;
    color: var(--text);
    line-height: 1.6;
}

/* Steps */
.docs__steps {
    padding-left: 20px;
    margin-bottom: 20px;
    counter-reset: step;
    list-style: none;
}

.docs__step {
    position: relative;
    padding-left: 24px;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
    counter-increment: step;
}

.docs__step::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docs__step strong {
    color: var(--heading);
}

/* List */
.docs__list {
    padding-left: 24px;
    margin-bottom: 16px;
}

.docs__list li {
    position: relative;
    padding-left: 20px;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.docs__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* Callout */
.docs__callout {
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.938rem;
    color: var(--text);
    line-height: 1.7;
    margin: 16px 0 20px;
}

.docs__callout--info {
    background: rgba(0, 133, 219, 0.08);
    border: 1px solid rgba(0, 133, 219, 0.2);
}

.docs__callout--warning {
    background: rgba(248, 192, 118, 0.08);
    border: 1px solid rgba(248, 192, 118, 0.2);
}

.docs__callout strong {
    color: var(--heading);
}

/* Params (inline) */
.docs__params {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 12px 0 20px;
}

.docs__param {
    display: flex;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}

.docs__param:last-child {
    border-bottom: none;
}

.docs__param-name {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--heading);
    min-width: 80px;
    flex-shrink: 0;
}

.docs__param-desc {
    font-size: 0.875rem;
    color: var(--text);
}

/* Table */
.docs__table-wrap {
    overflow-x: auto;
    margin: 12px 0 20px;
}

.docs__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.docs__table th {
    text-align: left;
    font-weight: 600;
    color: var(--heading);
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid var(--border);
}

.docs__table td {
    padding: 10px 16px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.docs__table tbody tr:last-child td {
    border-bottom: none;
}

.docs__table {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

/* CTA Card */
.docs__cta-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
}

.docs__cta-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading);
}

.docs__cta-desc {
    font-size: 0.938rem;
    color: var(--text);
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .docs {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .docs__sidebar {
        position: static;
        border-bottom: 1px solid var(--border);
        padding-bottom: 24px;
        margin-bottom: 32px;
    }

    .docs__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .docs__nav-heading {
        width: 100%;
        padding: 12px 8px 4px;
    }

    .docs__nav-link {
        font-size: 0.813rem;
        padding: 4px 10px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 20px;
    }

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

    .docs__cta-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ── API Page Styles ──────────────────────────────────── */
.api-hero {
    padding: 80px 24px 48px;
    text-align: center;
}

.api-hero__heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.api-hero__subheading {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.api-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.api-hero__badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 133, 219, 0.1);
    border: 1px solid rgba(0, 133, 219, 0.2);
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--primary);
}

.api-hero__regions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
    display: inline-flex;
}

.api-hero__region {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: none;
    border-radius: 7px;
    padding: 6px 20px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.api-hero__region:hover {
    color: var(--heading);
}

.api-hero__region--active {
    background: var(--primary);
    color: #fff;
}

.api-hero__region--active:hover {
    color: #fff;
}

.api-hero__base-url {
    display: block;
    margin-top: 12px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    color: var(--secondary);
}

.api-hero__swagger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--btn-radius);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 133, 219, 0.3);
}

.api-hero__swagger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 133, 219, 0.45);
    color: #fff;
}

.api-hero__swagger-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.api-hero__back-link {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--primary);
    transition: color 0.2s ease;
}

.api-hero__back-link:hover {
    color: var(--secondary);
}

/* Swagger Container */
.swagger-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 96px;
}

/* API Content */
.api {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 96px;
}

.api__section {
    margin-bottom: 56px;
}

.api__section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.api__text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.api__text--small {
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.api__link {
    color: var(--primary);
    transition: color 0.2s ease;
}

.api__link:hover {
    color: var(--secondary);
}

.api__code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875em;
    background: rgba(0, 133, 219, 0.1);
    border: 1px solid rgba(0, 133, 219, 0.15);
    border-radius: 4px;
    padding: 2px 6px;
    color: var(--secondary);
}

.api__code-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 12px 0 16px;
}

.api__code-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.15);
}

.api__pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    color: var(--heading);
    padding: 16px;
    margin: 0;
    overflow-x: auto;
    line-height: 1.6;
    white-space: pre;
}

/* Endpoint Card */
.api__endpoint {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 28px;
    margin-bottom: 24px;
}

.api__endpoint-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.api__method {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.api__method--get {
    background: rgba(75, 208, 139, 0.15);
    color: var(--success);
    border: 1px solid rgba(75, 208, 139, 0.3);
}

.api__method--post {
    background: rgba(0, 133, 219, 0.15);
    color: var(--primary);
    border: 1px solid rgba(0, 133, 219, 0.3);
}

.api__path {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.938rem;
    color: var(--heading);
    word-break: break-all;
}

.api__endpoint-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 12px;
}

/* Parameters */
.api__param-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading);
    margin: 24px 0 12px;
}

.api__required {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--danger);
    text-transform: uppercase;
}

.api__params {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.api__param {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.api__param:last-child {
    border-bottom: none;
}

.api__param-name {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.api__type {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--secondary);
    background: rgba(70, 202, 235, 0.1);
    border-radius: 4px;
    padding: 2px 8px;
}

.api__param-desc {
    font-size: 0.938rem;
    color: var(--text);
    line-height: 1.6;
}

/* Responses */
.api__responses {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.api__response {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.api__response:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.api__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Courier New', Courier, monospace;
}

.api__status--success {
    background: rgba(75, 208, 139, 0.15);
    color: var(--success);
    border: 1px solid rgba(75, 208, 139, 0.3);
}

.api__status--error {
    background: rgba(251, 151, 125, 0.15);
    color: var(--danger);
    border: 1px solid rgba(251, 151, 125, 0.3);
}

.api__response-title {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--heading);
}

.api__response-desc {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.6;
    margin-top: 2px;
}

/* Schema */
.api__schema {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 28px;
}

.api__schema-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
    font-family: 'Courier New', Courier, monospace;
}

@media (max-width: 768px) {
    .api__endpoint {
        padding: 20px 16px;
    }

    .api__path {
        font-size: 0.813rem;
    }

    .api__response {
        flex-direction: column;
        gap: 6px;
    }
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
    background: #0a1520;
    border-top: 1px solid var(--border);
    padding: 48px 24px 0;
}

.footer__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.footer__columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__brand-icon {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.footer__brand-logo {
    height: 22px;
    width: auto;
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 0.938rem;
    color: var(--text);
    line-height: 1.6;
}

.footer__col-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.938rem;
    color: var(--text);
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--heading);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}

.footer__copyright {
    font-size: 0.813rem;
    color: var(--text);
}

.footer__cookie-settings {
    font-size: 0.813rem;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.footer__cookie-settings:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .footer__columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
