/*
Theme Name: Inaveit Theme
Author: Inaveit
Version: 1.0
*/

:root {
    --page-width: 1280px;
    --content-width: 1180px;
    --brand-blue: #103D92;
    --brand-blue-dark: #0F3B90;
    --brand-blue-light: #113E94;
    --brand-blue-bright: #2f76ff;
    --brand-cyan: #7dc8ff;
    --brand-ink: #06152f;
    --brand-ink-soft: #1f335f;
    --surface-glass: rgba(255, 255, 255, 0.2);
    --surface-glass-strong: rgba(255, 255, 255, 0.28);
    --surface-line: rgba(255, 255, 255, 0.35);
    --surface-shadow: 0 24px 60px rgba(6, 21, 47, 0.18);
    --surface-shadow-soft: 0 12px 30px rgba(16, 61, 146, 0.14);
    --glass-surface: rgba(255, 255, 255, 0.16);
    --glass-surface-strong: rgba(255, 255, 255, 0.22);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-outline: rgba(255, 255, 255, 0.18);
    --text-main: #0d1b34;
    --text-muted: #4f648e;
    --success-bg: rgba(22, 163, 74, 0.16);
    --success-border: rgba(34, 197, 94, 0.35);
    --error-bg: rgba(220, 38, 38, 0.12);
    --error-border: rgba(248, 113, 113, 0.35);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-pill: 999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at top left, rgba(125, 200, 255, 0.16), transparent 26%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 25%),
                linear-gradient(180deg, #0e2247 0%, #122e66 40%, #0b244d 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.35;
    pointer-events: none;
}

::selection {
    background: rgba(47, 118, 255, 0.18);
    color: var(--text-main);
}

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

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

/* ─── Layout ─────────────────────────────────────── */
.site-frame {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(var(--page-width), calc(100% - 2rem));
    margin: 0 auto;
}

.site-main__inner {
    width: min(var(--content-width), calc(100% - 2rem));
    margin: 0 auto;
}

.site-main {
    flex: 1;
}

/* ─── Header ─────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(16, 61, 146, 0.1);
    background: #ffffff;
}
/* Top Bar */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 61, 146, 0.08);
}

.top-bar__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

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

.logo img {
    height: 100px;
    width: auto;
}

.top-bar__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: nowrap;
}

.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-blue);
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.top-bar__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-blue-bright);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.top-bar__link:hover {
    color: var(--brand-blue-bright);
}

.top-bar__link:hover::after {
    width: 100%;
}

.top-bar__icon {
    display: inline-flex;
    align-items: center;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}
.top-bar__icon svg {
    width: 18px;
    height: 18px;
}

.top-bar__link:hover .top-bar__icon {
    opacity: 1;
}

/* Main Nav */
.main-header {
    background: var(--brand-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin: 0;
    padding: 0.3rem;
    list-style: none;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

/* ─── Buttons ─────────────────────────────────────── */
.button,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue-bright) 100%);
    box-shadow: 0 8px 24px rgba(16, 61, 146, 0.28);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(16, 61, 146, 0.36);
}

.button--secondary {
    color: var(--brand-blue);
    background: rgba(16, 61, 146, 0.06);
    border: 1.5px solid rgba(16, 61, 146, 0.18);
    box-shadow: none;
}

.button--secondary:hover {
    background: rgba(16, 61, 146, 0.1);
    box-shadow: none;
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to left,
        rgba(6, 21, 47, 0.82) 20%,
        rgba(6, 21, 47, 0.15) 75%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5rem 0;
    width: 100%;
}

.hero__right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: right;
    max-width: 600px;
    padding-right: 10rem;
}

.hero__tagline {
    margin: 0;
    color: var(--brand-cyan);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-end;
}

.hero__title span {
    display: block;
    color: #ffffff;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    white-space: nowrap;
}

.hero__title span:nth-child(2) {
    color: var(--brand-cyan);
}

.hero__title span:nth-child(3) {
    color: rgba(255, 255, 255, 0.7);
}

.hero__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ─── Commitment Section ─────────────────────────── */
.commitment {
    background: #ffffff;
    padding: 6rem 0;
}

.commitment__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.commitment__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-blue-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.commitment__title {
    margin: 0 0 1.5rem;
    color: var(--brand-ink);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.commitment__copy {
    margin: 0 0 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.commitment__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.commitment__contact {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.commitment__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue-bright));
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(16, 61, 146, 0.25);
}

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

.commitment__contact strong {
    color: var(--brand-ink);
    font-size: 0.95rem;
    font-weight: 700;
}

.commitment__contact span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.commitment__right {
    display: flex;
    flex-direction: column;
}

.commitment__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(16, 61, 146, 0.08);
}

.commitment__item:first-child {
    padding-top: 0;
}

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

.commitment__number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue-bright));
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 61, 146, 0.2);
}

.commitment__item-label {
    margin: 0 0 0.4rem;
    color: var(--brand-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.commitment__item-copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.75;
}

/* ─── Page Panels ─────────────────────────────────── */
.page-shell {
    display: grid;
    gap: 1.5rem;
    padding: 2.5rem 0 4rem;
}

.page-panel {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 61, 146, 0.1);
    box-shadow: var(--surface-shadow-soft);
    border-radius: var(--radius-xl);
    padding: clamp(1.6rem, 3vw, 3.25rem);
}

.page-panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(16, 61, 146, 0.03), transparent 36%);
    pointer-events: none;
}

/* ─── Cards ─────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 61, 146, 0.1);
    box-shadow: var(--surface-shadow-soft);
    border-radius: 26px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(16, 61, 146, 0.16);
}

.feature-card__eyebrow {
    margin: 0 0 1rem;
    color: var(--brand-blue-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.feature-card__title {
    margin: 0 0 0.85rem;
    color: var(--brand-ink);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.feature-card__copy {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ─── Metrics ─────────────────────────────────────── */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.metric-card {
    display: grid;
    gap: 0.55rem;
    padding: 1.1rem;
    border-radius: var(--radius-lg);
    background: rgba(16, 61, 146, 0.05);
    border: 1px solid rgba(16, 61, 146, 0.1);
    box-shadow: var(--surface-shadow-soft);
}

.metric-card strong {
    color: var(--brand-ink);
}

.metric-card span {
    color: var(--text-muted);
}

/* ─── Entry Content ─────────────────────────────── */
.entry-header {
    margin-bottom: 1.4rem;
}

.entry-title {
    margin: 0;
    color: var(--brand-ink);
    font-size: clamp(2.1rem, 5vw, 4.25rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.entry-content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.entry-content > * { max-width: 74ch; }
.entry-content > :first-child { margin-top: 0; }
.entry-content > :last-child { margin-bottom: 0; }

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content figure,
.entry-content table {
    margin: 0 0 1.35rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 2.2rem 0 0.9rem;
    color: var(--brand-ink);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.entry-content h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.entry-content h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }

.entry-content a {
    color: var(--brand-blue-bright);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(47, 118, 255, 0.35);
    text-underline-offset: 0.22em;
}

.entry-content a:hover {
    color: var(--brand-blue);
}

.entry-content blockquote {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(16, 61, 146, 0.04);
    border-left: 4px solid var(--brand-blue-bright);
}

.entry-content img {
    border-radius: 24px;
    border: 1px solid rgba(16, 61, 146, 0.1);
    box-shadow: var(--surface-shadow-soft);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 18px;
    overflow: hidden;
}

.entry-content th,
.entry-content td {
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(16, 61, 146, 0.08);
}

.entry-content th {
    background: rgba(16, 61, 146, 0.06);
    color: var(--brand-ink);
    font-weight: 700;
}

.entry-content td {
    background: rgba(16, 61, 146, 0.02);
}

/* ─── Forms ─────────────────────────────────────── */
input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
textarea,
select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1.5px solid rgba(16, 61, 146, 0.14);
    background: #ffffff;
    color: var(--text-main);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--brand-blue-bright);
    box-shadow: 0 0 0 4px rgba(47, 118, 255, 0.1);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

button,
input[type="submit"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1.4rem;
    border: none;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue-bright) 100%);
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(16, 61, 146, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(16, 61, 146, 0.32);
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
    margin-top: auto;
}

.footer__bar {
    background: var(--brand-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
    padding: 1.5rem 0;
}

.footer__panel {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.88rem;
}

.footer__panel p {
    margin: 0;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1080px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .commitment__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 720px) {
    .container {
        width: calc(100% - 1.5rem);
    }

    .top-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        gap: 0.8rem;
        min-height: auto;
    }

    .top-bar__nav {
        gap: 0.8rem 1.2rem;
        flex-wrap: wrap;
    }

    .main-header__inner {
        padding: 0.4rem 0;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 480px;
    }

    .hero__content {
        justify-content: center;
        padding: 3rem 0;
    }

    .hero__right {
        text-align: center;
        align-items: center;
        padding-right: 0;
        padding: 0 1rem;
    }

    .hero__title {
        align-items: center;
    }

    .hero__title span {
        font-size: clamp(2rem, 10vw, 3.2rem);
        white-space: normal;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

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

    .entry-content > * {
        max-width: 100%;
    }
}

/* ─── Quick Links Section ─────────────────────────── */
.quicklinks {
    background: #f0f4fb;
    padding: 4rem 0;
}

.quicklinks__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.quicklinks__line {
    flex: 1;
    height: 1px;
    background: rgba(16, 61, 146, 0.15);
}

.quicklinks__tagline {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

.quicklinks__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.quicklinks__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 1.8rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(16, 61, 146, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(16, 61, 146, 0.06);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quicklinks__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 61, 146, 0.14);
    border-color: rgba(16, 61, 146, 0.2);
}

.quicklinks__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 61, 146, 0.08), rgba(47, 118, 255, 0.12));
    color: var(--brand-blue);
    transition: background 0.2s ease, color 0.2s ease;
}

.quicklinks__card:hover .quicklinks__icon {
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue-bright));
    color: #ffffff;
}

.quicklinks__label {
    margin: 0;
    color: var(--brand-ink);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
}

.quicklinks__card:hover .quicklinks__label {
    color: var(--brand-blue);
}

/* Responsive */
@media (max-width: 1080px) {
    .quicklinks__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .quicklinks__header {
        gap: 0.8rem;
    }

    .quicklinks__tagline {
        white-space: normal;
        font-size: 0.82rem;
    }
}

/* ─── Reasons Section ─────────────────────────────── */
.reasons {
    background: #ffffff;
    padding: 6rem 0;
}

.reasons__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(16, 61, 146, 0.08);
}

.reasons__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-blue-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.reasons__title {
    margin: 0;
    color: var(--brand-ink);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.reasons__intro {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.reasons__card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.8rem;
    background: #f0f4fb;
    border: 1px solid rgba(16, 61, 146, 0.08);
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.reasons__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 61, 146, 0.12);
    border-color: rgba(16, 61, 146, 0.18);
    background: #ffffff;
}

.reasons__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 61, 146, 0.08), rgba(47, 118, 255, 0.12));
    color: var(--brand-blue);
    transition: background 0.2s ease, color 0.2s ease;
}

.reasons__card:hover .reasons__icon {
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue-bright));
    color: #ffffff;
}

.reasons__card-title {
    margin: 0 0 0.5rem;
    color: var(--brand-ink);
    font-size: 1rem;
    font-weight: 700;
}

.reasons__card-copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.reasons__footer {
    margin-top: 3.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.reasons__footer p {
    margin: 0;
}

.reasons__footer-link {
    color: var(--brand-blue-bright);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(47, 118, 255, 0.35);
    text-underline-offset: 0.2em;
    transition: color 0.2s ease;
}

.reasons__footer-link:hover {
    color: var(--brand-blue);
}

/* Responsive */
@media (max-width: 1080px) {
    .reasons__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .reasons__header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

/* ─── How It Works Section ───────────────────────── */
.howitworks {
    background: var(--brand-blue);
    padding: 6rem 0;
    overflow: hidden;
}

.howitworks__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.howitworks__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.howitworks__title {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.howitworks__subtitle {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 54ch;
}

/* Carousel */
.howitworks__carousel {
    overflow: hidden;
}

.howitworks__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.howitworks__slide {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.howitworks__slide:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.howitworks__slide-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(125, 200, 255, 0.15);
    color: var(--brand-cyan);
    border: 1px solid rgba(125, 200, 255, 0.2);
}

.howitworks__slide-number {
    color: rgba(255, 255, 255, 0.2);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.howitworks__slide-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
}

.howitworks__slide-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.93rem;
    line-height: 1.78;
}

/* Controls */
.howitworks__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.howitworks__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.howitworks__btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.howitworks__dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.howitworks__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.howitworks__dot.active {
    background: var(--brand-cyan);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1080px) {
    .howitworks__slide {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 600px) {
    .howitworks__slide {
        flex: 0 0 100%;
    }
}

/* Fix carousel buttons — override global button styles */
.howitworks__btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-height: unset !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.howitworks__btn:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: none !important;
    box-shadow: none !important;
}

.howitworks__dot {
    width: 8px !important;
    height: 8px !important;
    min-height: unset !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.howitworks__dot.active {
    background: var(--brand-cyan) !important;
    transform: scale(1.35) !important;
}


/* ─── Contact Form Section ───────────────────────── */
.contactform {
    background: #f0f4fb;
    padding: 6rem 0;
}

.contactform__inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

/* Left */
.contactform__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-blue-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contactform__title {
    margin: 0 0 1.2rem;
    color: var(--brand-ink);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.contactform__copy {
    margin: 0 0 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.contactform__info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contactform__info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contactform__info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue-bright));
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(16, 61, 146, 0.22);
}

.contactform__info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contactform__info-item strong {
    color: var(--brand-ink);
    font-size: 0.95rem;
    font-weight: 700;
}

.contactform__info-item span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* Right — Form */
.contactform__right {
    background: #ffffff;
    border: 1px solid rgba(16, 61, 146, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(16, 61, 146, 0.08);
}

.contactform__form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contactform__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contactform__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contactform__label {
    color: var(--brand-ink);
    font-size: 0.85rem;
    font-weight: 700;
}

.contactform__field input,
.contactform__field select,
.contactform__field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1.5px solid rgba(16, 61, 146, 0.12);
    background: #f8faff;
    color: var(--text-main);
    font: inherit;
    font-size: 0.93rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contactform__field input:focus,
.contactform__field select:focus,
.contactform__field textarea:focus {
    border-color: var(--brand-blue-bright);
    box-shadow: 0 0 0 4px rgba(47, 118, 255, 0.1);
    background: #ffffff;
}

/* Checkboxes */
.contactform__checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.contactform__checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.contactform__checkbox input[type="checkbox"] {
    display: none;
}

.contactform__checkbox-box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(16, 61, 146, 0.2);
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contactform__checkbox input:checked + .contactform__checkbox-box {
    background: var(--brand-blue-bright);
    border-color: var(--brand-blue-bright);
}

.contactform__checkbox input:checked + .contactform__checkbox-box::after {
    content: "";
    width: 5px;
    height: 9px;
    border: 2px solid #ffffff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}

.contactform__checkbox-label {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
}

.contactform__checkbox:hover .contactform__checkbox-box {
    border-color: var(--brand-blue-bright);
}

/* Submit */
.contactform__submit {
    margin-top: 0.5rem;
}

.contactform__btn {
    display: inline-end !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.9rem 2rem !important;
    border-radius: var(--radius-pill) !important;
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue-bright)) !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 8px 24px rgba(16, 61, 146, 0.28) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    min-height: unset !important;
}

.contactform__btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 32px rgba(16, 61, 146, 0.36) !important;
}

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

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

/* ─── Testimonials Section ───────────────────────── */
.testimonials {
    background: var(--brand-blue);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Background pattern */
.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(125, 200, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(47, 118, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.testimonials__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.testimonials__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonials__card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.testimonials__card:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-4px);
}

.testimonials__quote {
    color: var(--brand-cyan);
    opacity: 0.5;
    line-height: 1;
}

.testimonials__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.85;
    flex: 1;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(125, 200, 255, 0.4);
    flex-shrink: 0;
}

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

.testimonials__author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonials__author-info strong {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonials__author-info span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 720px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Awards Section ─────────────────────────────── */
.awards {
    background: #ffffff;
    padding: 6rem 0;
}

.awards__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.awards__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-blue-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.awards__title {
    margin: 0 0 0.75rem;
    color: var(--brand-ink);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.awards__subtitle {
    margin: 0 0 1rem;
    color: var(--brand-blue);
    font-size: 1rem;
    font-weight: 600;
}

.awards__copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.8;
}

/* Rows */
.awards__row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.awards__row--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.awards__row--2 .awards__img-wrap {
    aspect-ratio: 3 / 4;
}

/* Row 2 — 3 wide landscape cards */
.awards__row--3 {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1.5rem;
}

.awards__row--3 .awards__img-wrap {
    aspect-ratio: 16 / 9;
}

/* Card */
.awards__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f0f4fb;
    border: 1px solid rgba(16, 61, 146, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.awards__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 61, 146, 0.12);
}

.awards__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(16, 61, 146, 0.04);
}

.awards__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.awards__card:hover .awards__img-wrap img {
    transform: scale(1.04);
}

.awards__card-label {
    margin: 0;
    padding: 0 1.2rem 1.2rem;
    color: var(--brand-ink);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

/* Footer */
.awards__footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.awards__footer .button--secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-blue);
    background: rgba(16, 61, 146, 0.06);
    border: 1.5px solid rgba(16, 61, 146, 0.18);
    box-shadow: none;
    min-height: unset;
    padding: 0.75rem 1.5rem;
    font-size: 0.92rem;
}

.awards__footer .button--secondary:hover {
    background: rgba(16, 61, 146, 0.1);
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 900px) {
    .awards__row--2,
    .awards__row--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .awards__row--2,
    .awards__row--3 {
        grid-template-columns: 1fr;
    }
}

/* ─── Page Hero ──────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--brand-ink) 0%, var(--brand-blue) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(47, 118, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.page-hero__title {
    margin: 0 0 1.2rem;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.page-hero__copy {
    margin: 0 0 1.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.85;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.page-hero__breadcrumb a {
    color: var(--brand-cyan);
    font-weight: 600;
    transition: color 0.2s ease;
}

.page-hero__breadcrumb a:hover {
    color: #ffffff;
}

.support-hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.support-search-form {
    margin-top: 2.5rem;
    width: min(100%, 760px);
}

.support-search-form__row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-search-form__input {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(16, 61, 146, 0.16);
    border-radius: var(--radius-pill);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--text-main);
    background: #ffffff;
    box-shadow: inset 0 16px 40px rgba(16, 61, 146, 0.05);
}

.support-search-form__input:focus {
    outline: none;
    border-color: var(--brand-blue-bright);
    box-shadow: 0 0 0 4px rgba(47, 118, 255, 0.12);
}

.support-search-form__button {
    min-width: 160px;
}

.support-search__no-results {
    margin-top: 1.5rem;
    color: var(--brand-ink);
    font-weight: 700;
}

.hero__title {
    position: relative;
    min-height: 5rem;
}

.hero__title span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero__title span.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.contactform__status {
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(47, 118, 255, 0.95);
}

.contactform__checkbox.selected .contactform__checkbox-box {
    background: var(--brand-blue-bright);
    border-color: var(--brand-blue-bright);
}

.contactform__checkbox.selected .contactform__checkbox-label {
    color: var(--brand-blue-dark);
}

.support-content {
    padding: 4.5rem 0 6rem;
}

.support-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
    align-items: flex-start;
}

.support-sidebar {
    position: sticky;
    top: 110px;
}

.faq-intro__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-blue-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.faq-intro__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.05;
}

.faq-intro__copy {
    margin: 0 0 2rem;
    color: var(--text-muted);
    max-width: 60ch;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(16, 61, 146, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--surface-shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-ink);
}

.faq-item__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--brand-blue-bright);
    background: rgba(47, 118, 255, 0.1);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.85;
    border-top: 1px solid rgba(16, 61, 146, 0.06);
}

.support-contact-cta {
    margin-top: 2rem;
    padding: 1.6rem 1.6rem;
    background: rgba(47, 118, 255, 0.08);
    border: 1px solid rgba(16, 61, 146, 0.15);
    border-radius: var(--radius-xl);
}

.support-contact-cta p {
    margin: 0;
    font-size: 1rem;
    color: var(--brand-ink);
    font-weight: 700;
}

.support-contact-cta a {
    color: var(--brand-blue);
}

.widget {
    background: #ffffff;
    border: 1px solid rgba(16, 61, 146, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--surface-shadow-soft);
}

.widget__title {
    margin: 0 0 1rem;
    color: var(--brand-ink);
    font-size: 1.05rem;
    font-weight: 700;
}

.widget__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.widget__list li {
    display: grid;
    gap: 0.35rem;
}

.widget__list a {
    color: var(--brand-blue-dark);
    font-weight: 600;
}

.widget__meta {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.blog-content {
    padding: 4.5rem 0 6rem;
}

.blog-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
    align-items: flex-start;
}

.blog-list {
    display: grid;
    gap: 1.5rem;
}

.post-card {
    background: #ffffff;
    border: 1px solid rgba(16, 61, 146, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--surface-shadow-soft);
    overflow: hidden;
}

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

.post-card__body {
    padding: 1.7rem;
}

.post-card__meta {
    margin-bottom: 0.85rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.post-card__title {
    margin: 0 0 1rem;
    font-size: 1.55rem;
    line-height: 1.1;
}

.post-card__title a {
    color: var(--brand-ink);
}

.post-card__excerpt {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.post-card__readmore {
    font-weight: 700;
    color: var(--brand-blue);
}

.pagination-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: flex-end;
}

.blog-sidebar {
    position: sticky;
    top: 110px;
}

@media (max-width: 960px) {
    .support-content__grid,
    .blog-content__grid {
        grid-template-columns: 1fr;
    }

    .support-sidebar,
    .blog-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 680px) {
    .support-search-form__row {
        flex-direction: column;
    }

    .support-search-form__button {
        width: 100%;
    }
}

/* ─── Partners Section ───────────────────────────── */
.partners {
    background: #f0f4fb;
    padding: 6rem 0;
}

.partners__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.partners__kicker {
    margin: 0 0 0.75rem;
    color: var(--brand-blue-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.partners__title {
    margin: 0;
    color: var(--brand-ink);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.partners__carousel {
    overflow: hidden;
    margin-bottom: 3rem;
}

.partners__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners__slide {
    flex: 0 0 calc((100% - 6rem) / 5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid rgba(16, 61, 146, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partners__slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 61, 146, 0.12);
}

.partners__logo-wrap {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__logo-wrap img {
    max-width: 120px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter 0.2s ease;
}

.partners__slide:hover .partners__logo-wrap img {
    filter: grayscale(0%);
}

.partners__name {
    margin: 0;
    color: var(--brand-ink);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

.partners__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.partners__btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-height: unset !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(16, 61, 146, 0.2) !important;
    background: #ffffff !important;
    color: var(--brand-blue) !important;
    box-shadow: 0 4px 12px rgba(16, 61, 146, 0.1) !important;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease !important;
}

.partners__btn:hover {
    background: var(--brand-blue) !important;
    color: #ffffff !important;
    transform: none !important;
    box-shadow: 0 8px 20px rgba(16, 61, 146, 0.22) !important;
}

.partners__dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.partners__dot {
    width: 8px !important;
    height: 8px !important;
    min-height: unset !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(16, 61, 146, 0.2) !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.partners__dot.active {
    background: var(--brand-blue-bright) !important;
    transform: scale(1.35) !important;
}

/* CTA */
.partners__cta {
    background: var(--brand-blue);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

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

.partners__cta-title {
    margin: 0 0 0.5rem;
    color: #ffffff;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.partners__cta-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.97rem;
}

.partners__cta-btn {
    background: #ffffff !important;
    color: var(--brand-blue) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.partners__cta-btn:hover {
    background: #f0f4fb !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 1080px) {
    .partners__slide {
        flex: 0 0 calc((100% - 3rem) / 3);
    }
}

@media (max-width: 720px) {
    .partners__slide {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }

    .partners__cta-inner {
        flex-direction: column;
        text-align: center;
    }
}
