/* ==========================================================================
   TURBO TRACKERS — Stylesheet
   Brand colors: #0052CC (Royal Blue) | #3DC9E0 (Cyan)
   ========================================================================== */

/* -------------------------------------- RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.2; color: var(--c-heading); letter-spacing: -0.02em; }

/* -------------------------------------- VARIABLES */
:root {
    --c-primary: #0052CC;
    --c-primary-dark: #003D99;
    --c-primary-darker: #002766;
    --c-accent: #3DC9E0;
    --c-accent-dark: #20B3CC;

    --c-text: #475569;
    --c-heading: #0B1733;
    --c-muted: #6B7A99;

    --c-bg: #FFFFFF;
    --c-bg-soft: #F4F7FB;
    --c-bg-mid: #EAF1F9;
    --c-border: #E3EAF5;

    --shadow-sm: 0 2px 8px rgba(11, 23, 51, 0.04);
    --shadow-md: 0 8px 28px rgba(11, 23, 51, 0.08);
    --shadow-lg: 0 24px 60px rgba(0, 82, 204, 0.18);
    --shadow-xl: 0 30px 80px rgba(0, 82, 204, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --container: 1200px;
    --header-h: 80px;
}

/* -------------------------------------- LAYOUT HELPERS */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--c-accent); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-primary);
    background: rgba(0, 82, 204, 0.08);
    padding: 8px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.eyebrow--accent { color: var(--c-primary); background: rgba(61, 201, 224, 0.18); }
.eyebrow--light { color: #fff; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.18); }

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--c-heading);
    margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-lead { font-size: 17px; line-height: 1.7; color: var(--c-muted); max-width: 640px; }
.section-lead--light { color: rgba(255, 255, 255, 0.78); }

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* -------------------------------------- BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 100px;
    transition: all .3s cubic-bezier(.2, .9, .3, 1);
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 17px 30px; font-size: 16px; }

.btn--primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.28);
}
.btn--primary:hover {
    background: var(--c-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.4);
}
.btn--ghost {
    background: rgba(0, 82, 204, 0.06);
    color: var(--c-primary);
    border: 1.5px solid rgba(0, 82, 204, 0.15);
}
.btn--ghost:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.btn--white { background: #fff; color: var(--c-primary); box-shadow: var(--shadow-md); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* -------------------------------------- PULSE DOT */
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 0 0 rgba(61, 201, 224, 0.6);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(61, 201, 224, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(61, 201, 224, 0); }
    100% { box-shadow: 0 0 0 0 rgba(61, 201, 224, 0); }
}

/* -------------------------------------- TOPBAR */
.topbar {
    background: linear-gradient(90deg, var(--c-primary-darker) 0%, var(--c-primary) 100%);
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
    position: relative;
    z-index: 60;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; opacity: 0.92; transition: opacity .2s; }
.topbar__item:hover { opacity: 1; color: var(--c-accent); }
.topbar__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}
.topbar__login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--c-accent);
    color: var(--c-primary-darker);
    padding: 6px 14px;
    border-radius: 100px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    transition: all .25s;
}
.topbar__login:hover { background: #fff; color: var(--c-primary); transform: translateY(-1px); }

@media (max-width: 700px) {
    .topbar__item--hide-sm { display: none; }
    .topbar__badge { display: none; }
}

/* -------------------------------------- HEADER / NAV */
.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all .3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.98); }

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h);
    gap: 20px;
}
.header__brand img { height: 56px; width: auto; }

.nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Sora', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--c-heading);
    padding: 10px 16px;
    border-radius: 100px;
    transition: all .25s;
    position: relative;
}
.nav__link:hover, .nav__link--active { color: var(--c-primary); background: rgba(0, 82, 204, 0.06); }

.nav__has-children { position: relative; }
.nav__dropdown, .nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s;
    z-index: 100;
}
.nav__has-children:hover > .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown li, .nav__sub li { position: relative; }
.nav__dropdown a, .nav__sub a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    color: var(--c-heading);
    border-radius: 8px;
    transition: all .2s;
}
.nav__dropdown a:hover, .nav__sub a:hover { background: var(--c-bg-soft); color: var(--c-primary); }

.nav__has-children-deep > .nav__sub {
    top: 0;
    left: 100%;
    margin-left: 4px;
}
.nav__has-children-deep:hover > .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__mobile-only { display: none; }

.header__actions { display: flex; align-items: center; gap: 12px; }

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-heading);
    border-radius: 2px;
    transition: all .3s;
}

@media (max-width: 980px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        padding: 80px 24px 32px;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
        transition: right .35s cubic-bezier(.2, .9, .3, 1);
        overflow-y: auto;
        z-index: 200;
    }
    .nav.is-open { right: 0; }
    .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
    .nav__link { padding: 14px 16px; justify-content: space-between; }
    .nav__dropdown, .nav__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--c-bg-soft);
        margin-top: 4px;
        margin-left: 16px;
    }
    .nav__mobile-only { display: block; }
    .header__toggle { display: flex; }
    .header__actions .btn { display: none; }

    body.nav-open { overflow: hidden; }
    body.nav-open::after {
        content: '';
        position: fixed; inset: 0;
        background: rgba(11, 23, 51, 0.5);
        z-index: 150;
        animation: fadeIn .25s;
    }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
}

@media (max-width: 600px) {
    .header__brand img { height: 44px; }
}

/* -------------------------------------- HERO */
.hero {
    position: relative;
    padding: 70px 0 90px;
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-soft) 100%);
    overflow: hidden;
}
.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 82, 204, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}
.hero__bg-grid::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(61, 201, 224, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}
.hero__bg-grid::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--c-heading);
}
.hero__lead { font-size: 18px; line-height: 1.7; color: var(--c-muted); max-width: 540px; margin-bottom: 36px; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 32px;
    border-top: 1px solid var(--c-border);
    max-width: 540px;
}
.hero__stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--c-heading);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.hero__stat-num span { color: var(--c-accent); font-size: 0.7em; }
.hero__stat-label { font-size: 13px; color: var(--c-muted); }

/* hero visual */
.hero__visual {
    position: relative;
    height: 100%;
    min-height: 460px;
}

.map-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
    transition: transform .5s cubic-bezier(.2, .9, .3, 1);
    position: relative;
    z-index: 2;
}
.map-card:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(1deg) translateY(-4px); }

.map-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-border);
}
.map-card__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--c-heading);
}
.map-card__time {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    color: var(--c-primary);
    background: rgba(0, 82, 204, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}

.map-card__map {
    background: linear-gradient(135deg, #F4F7FB 0%, #E8F1FB 100%);
    aspect-ratio: 5/4;
    position: relative;
}
.map-svg { width: 100%; height: 100%; display: block; }

.map-card__footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 20px;
    background: #fff;
}
.map-card__metric { display: flex; flex-direction: column; gap: 2px; }
.map-card__metric-label { font-size: 11px; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.map-card__metric-val {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--c-heading);
}
.map-card__metric-val small { font-size: 11px; font-weight: 500; color: var(--c-muted); }
.map-card__metric-val--ok { color: #16A34A; }

.floating-card {
    position: absolute;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.floating-card--alert {
    top: -12px;
    left: -28px;
    animation-delay: 0.5s;
}
.floating-card--success {
    bottom: -20px;
    right: -20px;
    animation-delay: 1.5s;
}
.floating-card__icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.floating-card--alert .floating-card__icon { background: #FEF2E5; color: #E08300; }
.floating-card--success .floating-card__icon { background: #E5F6EC; color: #16A34A; }
.floating-card__title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px; color: var(--c-heading); }
.floating-card__sub { font-size: 12px; color: var(--c-muted); }

@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; gap: 50px; }
    .hero__visual { min-height: 380px; }
    .map-card { transform: none; }
    .map-card:hover { transform: translateY(-4px); }
}
@media (max-width: 600px) {
    .hero { padding: 50px 0 60px; }
    .hero__cta { gap: 10px; }
    .hero__cta .btn { flex: 1 1 auto; }
    .hero__stats { grid-template-columns: 1fr 1fr; }
    .floating-card--alert { left: -10px; top: -8px; padding: 10px 14px; }
    .floating-card--success { right: -10px; bottom: -16px; padding: 10px 14px; }
    .floating-card__title { font-size: 12px; }
    .floating-card__sub { font-size: 11px; }
}

/* -------------------------------------- TRUST STRIP */
.trust {
    background: var(--c-primary-darker);
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}
.trust__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust__label {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-accent);
    font-weight: 600;
}
.trust__items { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; font-weight: 500; }
.trust__items span:nth-child(even) { color: var(--c-accent); opacity: 0.5; }

/* -------------------------------------- ABOUT */
.about { padding: 100px 0; }
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.about__visual { position: relative; }
.about__image-wrap {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08) 0%, rgba(61, 201, 224, 0.12) 100%);
    border-radius: var(--radius-xl);
    display: grid;
    place-items: center;
    padding: 60px;
    overflow: hidden;
}
.about__image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 82, 204, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}
.about__image-wrap img {
    position: relative;
    max-width: 70%;
    filter: drop-shadow(0 20px 40px rgba(0, 82, 204, 0.18));
}
.about__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--c-primary);
    color: #fff;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}
.about__badge-num {
    font-family: 'Sora', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: var(--c-accent);
}
.about__badge-text { font-size: 13px; line-height: 1.3; font-weight: 500; }

.about__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 32px;
}
.about__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--c-heading);
    font-weight: 500;
}
.check {
    width: 24px; height: 24px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .about { padding: 70px 0; }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .about__image-wrap { aspect-ratio: 4/3; padding: 40px; max-width: 500px; margin: 0 auto; }
    .about__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .about__list { grid-template-columns: 1fr; }
    .about__badge { padding: 14px 18px; }
    .about__badge-num { font-size: 30px; }
}

/* -------------------------------------- PRODUCTS */
.products {
    padding: 100px 0;
    background: var(--c-bg-soft);
    position: relative;
    overflow: hidden;
}
.products::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 300px;
    background: radial-gradient(ellipse, rgba(61, 201, 224, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--c-border);
    transition: all .35s cubic-bezier(.2, .9, .3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-card:hover::after { transform: scaleX(1); }

.product-card__icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1) 0%, rgba(61, 201, 224, 0.15) 100%);
    color: var(--c-primary);
    border-radius: var(--radius-md);
    display: grid; place-items: center;
    margin-bottom: 22px;
    transition: all .3s;
}
.product-card:hover .product-card__icon {
    background: var(--c-primary);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}
.product-card__title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--c-heading);
}
.product-card__desc {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
}
.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: gap .25s;
}
.product-card:hover .product-card__cta { gap: 14px; }

@media (max-width: 1100px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .products__grid { grid-template-columns: 1fr; } .products { padding: 70px 0; } }

/* -------------------------------------- FEATURES */
.features {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--c-primary-darker) 0%, var(--c-primary) 60%, var(--c-primary-dark) 100%);
    color: #fff;
    overflow: hidden;
}
.features__bg {
    position: absolute;
    inset: 0;
    background-image:
        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: 50px 50px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.features::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(61, 201, 224, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}
.feature {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}
.feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(61, 201, 224, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .35s;
}
.feature:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(61, 201, 224, 0.4);
    transform: translateY(-4px);
}
.feature:hover::before { opacity: 1; }

.feature__num {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    position: relative;
}
.feature__icon {
    width: 50px; height: 50px;
    background: rgba(61, 201, 224, 0.15);
    color: var(--c-accent);
    border-radius: var(--radius-md);
    display: grid; place-items: center;
    margin-bottom: 18px;
    position: relative;
    transition: all .3s;
}
.feature:hover .feature__icon {
    background: var(--c-accent);
    color: var(--c-primary-darker);
}
.feature h3 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
}
.feature p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    position: relative;
}

@media (max-width: 900px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
    .features { padding: 70px 0; }
    .features__grid { grid-template-columns: 1fr; }
}

/* -------------------------------------- BENEFITS */
.benefits { padding: 100px 0; background: var(--c-bg); }
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--c-bg-soft);
    border: 1px solid transparent;
    transition: all .35s ease;
    position: relative;
}
.benefit:hover {
    background: #fff;
    border-color: var(--c-primary);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.12);
    transform: translateY(-4px);
}
.benefit__icon-wrap {
    width: 56px; height: 56px;
    background: #fff;
    color: var(--c-primary);
    border-radius: var(--radius-md);
    display: grid; place-items: center;
    margin-bottom: 22px;
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.08);
    transition: all .3s;
}
.benefit:hover .benefit__icon-wrap {
    background: var(--c-primary);
    color: #fff;
}
.benefit h3 { font-size: 19px; margin-bottom: 10px; color: var(--c-heading); }
.benefit p { font-size: 15px; color: var(--c-muted); line-height: 1.65; }

@media (max-width: 900px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
    .benefits { padding: 70px 0; }
    .benefits__grid { grid-template-columns: 1fr; }
}

/* -------------------------------------- TESTIMONIAL */
.testimonial { padding: 80px 0; background: var(--c-bg-soft); }
.testimonial__inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial__quote {
    color: var(--c-accent);
    opacity: 0.4;
    margin-bottom: 24px;
}
.testimonial__text {
    font-family: 'Sora', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.5;
    color: var(--c-heading);
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}
.testimonial__author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.testimonial__avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
    color: #fff;
    display: grid; place-items: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.testimonial__name { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--c-heading); font-size: 16px; }
.testimonial__role { font-size: 13px; color: var(--c-muted); }

/* -------------------------------------- CTA */
.cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--c-primary-darker) 0%, var(--c-primary) 100%);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(61, 201, 224, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.cta__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 880px) {
    .cta__inner { grid-template-columns: 1fr; gap: 30px; }
    .cta__actions { justify-content: flex-start; }
}

/* -------------------------------------- FOOTER */
.footer {
    background: #0A1124;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand { display: inline-block; margin-bottom: 20px; }
.footer__brand img {
    height: 70px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.footer__col p { font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; }
.footer__col h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 12px;
}
.footer__col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--c-accent);
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { font-size: 14px; transition: all .25s; }
.footer__col ul a:hover { color: var(--c-accent); padding-left: 4px; }

.footer__contact-block { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer__contact-block strong { color: var(--c-accent); font-family: 'Sora', sans-serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.footer__contact-block a:hover { color: var(--c-accent); }

.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: grid; place-items: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all .25s;
}
.footer__socials a:hover {
    background: var(--c-accent);
    color: var(--c-primary-darker);
    transform: translateY(-2px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.heart { color: var(--c-accent); }

@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
    .footer { padding: 60px 0 0; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

/* -------------------------------------- ENTRANCE ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
