*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #344767;
    --navy-d: #243352;
    --navy-l: #445a82;
    --accent: #4E9AF1;
    --accent-g: #62b0ff;
    --gold: #F5A623;
    --white: #ffffff;
    --off: #f5f7fb;
    --muted: #6b7a99;
    --border: #dde3f0;
    --text: #1a2340;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(52, 71, 103, .10);
    --shadow-l: 0 12px 48px rgba(52, 71, 103, .16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
}

/* ─── UTILITY ─────────────────────────────────── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(78, 154, 241, .1);
    border-radius: 40px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 13px 28px;
    box-shadow: 0 4px 18px rgba(78, 154, 241, .35);
}

.btn-primary:hover {
    background: var(--accent-g);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(78, 154, 241, .45);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    padding: 14px 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

.reveal-delay-5 {
    transition-delay: .5s;
}

/* ─── NAV ─────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), var(--shadow);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: 40px;
    position: relative;
}

.logo-img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-img .logo-dark,
#navbar.scrolled .logo-img .logo-light {
    opacity: 0;
}

#navbar.scrolled .logo-img .logo-dark {
    opacity: 1;
}


.logo-mark {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background .3s, border-color .3s;
}

nav.scrolled .logo-mark {
    background: var(--navy);
    border-color: transparent;
}

.logo-mark::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    border-right-color: var(--accent);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    letter-spacing: -.02em;
    transition: color .3s;
}

nav.scrolled .logo-text {
    color: var(--navy);
}

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 1);
}

nav.scrolled .nav-links a {
    color: var(--muted);
}

nav.scrolled .nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* "Om os" outline button — white on hero, navy when scrolled */
.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, .85);
    padding: 11px 22px;
    border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    border-color: rgba(255, 255, 255, .7);
}

nav.scrolled .btn-outline {
    color: var(--navy);
    border-color: var(--navy);
}

nav.scrolled .btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .8);
    border-radius: 2px;
    transition: all .3s;
}

nav.scrolled .hamburger span {
    background: var(--navy);
}

/* ─── HERO ────────────────────────────────────── */
#hero {
    min-height: 90vh;
    background: linear-gradient(160deg, var(--navy-d) 0%, var(--navy) 55%, var(--navy-l) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 154, 241, .25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .1) 0%, transparent 70%);
    bottom: 0;
    left: 10%;
    animation: glow-pulse 8s ease-in-out infinite reverse;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.hero-left {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 40px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(78, 154, 241, .6);
    }

    50% {
        opacity: .8;
        box-shadow: 0 0 0 6px rgba(78, 154, 241, 0);
    }
}

.hero-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--accent), #a0d0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .72);
    font-weight: 300;
    max-width: 440px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-note svg {
    width: 14px;
    height: 14px;
}

/* Dashboard mockup */
.hero-right {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.card-bar {
    background: rgba(255, 255, 255, .08);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.card-title-bar {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    font-family: 'Sora', sans-serif;
}

.card-body {
    padding: 24px;
}

.card-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.card-day {
    text-align: center;
}

.card-day-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    letter-spacing: .06em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.card-day-bar {
    height: 52px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden;
}

.card-day-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--accent), rgba(78, 154, 241, .5));
    border-radius: 6px;
    transition: height 1s ease;
}

.card-day-fill.gold {
    background: linear-gradient(180deg, var(--gold), rgba(245, 166, 35, .4));
}

.card-day-hours {
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
    font-weight: 500;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.card-stat {
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.card-stat-val {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.card-stat-val small {
    font-size: 12px;
    opacity: .5;
}

.card-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
}

.hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 5s ease-in-out infinite reverse;
}

.hfb-1 {
    top: -20px;
    left: -30px;
    z-index: 2;
}

.hfb-2 {
    bottom: -40px;
    right: -20px;
    z-index: 2;
}

.hfb-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hfb-txt {
    font-size: 12px;
}

.hfb-txt strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.hfb-txt span {
    color: var(--muted);
}

/* ─── TRUST BAR ───────────────────────────────── */
#trust {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}

.trust-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.trust-txt strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.trust-txt span {
    font-size: 13px;
    color: var(--muted);
}

/* ─── SECTIONS GENERAL ────────────────────────── */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
}

/* ─── MODULES CAROUSEL ────────────────────────── */
#modules {
    background: var(--white);
}

.modules-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 12px 4px 4px;
    /* top padding so hover shadow/transform isn't clipped */
    margin: -12px -4px -4px;
}

.modules-carousel {
    display: flex;
    gap: 20px;
    overflow: visible;
}

/* The sliding track */
.modules-track {
    display: flex;
    gap: 20px;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    align-items: start;
}

.module-card {
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 28px 24px;
    background: var(--white);
    transition: border-color .3s, box-shadow .3s, transform .3s;
    position: relative;
    overflow: hidden;
    /* Fixed width — JS sets how many are visible */
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    transition: background .3s;
}

.module-card:hover {
    border-color: rgba(78, 154, 241, .3);
    box-shadow: var(--shadow-l);
    transform: translateY(-4px);
}

.module-card.core {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-l) 100%);
    border-color: transparent;
    color: var(--white);
}

.module-card.core::before {
    background: var(--accent);
}

.module-card.core:hover {
    transform: translateY(-6px);
}

.module-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 40px;
    padding: 4px 12px;
    margin-bottom: 18px;
}

.badge-core {
    background: rgba(78, 154, 241, .25);
    color: var(--accent-g);
}

.badge-optional {
    background: rgba(52, 71, 103, .08);
    color: var(--navy);
}

.module-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.icon-core {
    background: rgba(255, 255, 255, .12);
}

.icon-opt {
    background: rgba(52, 71, 103, .07);
}

.module-name {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: inherit;
}

.module-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .7);
}

.module-card:not(.core) .module-desc {
    color: var(--muted);
}

.module-list {
    list-style: none;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.module-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
}

.module-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: var(--accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-card:not(.core) .module-list li {
    color: var(--navy);
}

.module-card:not(.core) .module-list li::before {
    background-color: rgba(52, 71, 103, .15);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%23344767' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.module-note {
    margin-top: 28px;
    padding: 16px 20px;
    background: rgba(78, 154, 241, .08);
    border: 1px solid rgba(78, 154, 241, .2);
    border-radius: 10px;
    font-size: 14px;
    color: var(--navy);
}

.module-note strong {
    color: var(--accent);
}

/* Carousel navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all .2s;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: scale(1.08);
}

.carousel-btn:disabled {
    opacity: .35;
    cursor: default;
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--navy);
    width: 22px;
    border-radius: 4px;
}

/* ─── TAILORED ────────────────────────────────── */
#tailored {
    background: var(--off);
}

.tailored-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tailored-visual {
    position: relative;
}

.integration-diagram {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-l);
    border: 1px solid var(--border);
}

.diag-center {
    width: 72px;
    height: 72px;
    background: var(--navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 30px;
}

.diag-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    margin-bottom: 24px;
}

.diag-lines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.diag-node {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    transition: all .3s;
}

.diag-node:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(78, 154, 241, .12);
    transform: scale(1.02);
}

.diag-node-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.connector-line {
    position: absolute;
    background: linear-gradient(90deg, var(--accent), transparent);
    height: 1px;
    opacity: .3;
}

.tailored-content {}

.tailored-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.tp {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all .3s;
}

.tp:hover {
    border-color: rgba(78, 154, 241, .25);
    box-shadow: var(--shadow);
}

.tp-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-l));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tp-txt strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.tp-txt span {
    font-size: 14px;
    color: var(--muted);
}

/* ─── FINAL CTA ───────────────────────────────── */
#cta {
    background: linear-gradient(150deg, var(--navy-d), var(--navy) 50%, var(--navy-l));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#cta .hero-grid {
    opacity: .5;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .65);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-trust {
    margin-top: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust-item svg {
    width: 14px;
    height: 14px;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
    background: var(--navy-d);
    color: rgba(255, 255, 255, .5);
    padding: 36px 24px;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-mark::after {
    content: '';
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    border-right-color: var(--accent);
    animation: spin 4s linear infinite;
}

.footer-brand {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
}

.footer-brand span {
    color: var(--accent);
}

.footer-copy {
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, .8);
}

/* ─── MOBILE ──────────────────────────────────── */
@media (max-width: 1024px) {
    .module-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        display: none;
    }

    .tailored-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .module-card {
        flex: 0 0 calc(50% - 10px);
    }

    .trust-item {
        min-width: 160px;
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .nav-links,
    .nav-cta .btn-outline {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .module-card {
        flex: 0 0 calc(85vw);
    }
}