﻿@charset "UTF-8";

/* ─── Dokuzgen anasayfa — modern light shell ─── */
.home-page {
    --home-bg: #fafbff;
    --home-surface: #ffffff;
    --home-text: #0f172a;
    --home-muted: #64748b;
    --home-line: rgba(15, 23, 42, 0.08);
    --home-accent: #2563eb;
    --home-accent-2: #7c3aed;
    --home-teal: #0d9488;
    --home-radius-lg: 1.35rem;
    --home-shadow: 0 22px 50px rgba(15, 23, 42, 0.07);
    --home-font: "Poppins", system-ui, -apple-system, sans-serif;
}

.home-page,
.home-page h1,
.home-page h2,
.home-page h3 {
    font-family: var(--home-font);
}

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

/* ─── Hero ─── */
.home-hero {
    position: relative;
    padding: clamp(4.5rem, 10vw, 6.25rem) 0 clamp(5rem, 12vw, 7rem);
    overflow: hidden;
    background: linear-gradient(165deg, #eef4ff 0%, #f5f8ff 42%, #fafbff 100%);
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.home-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.85;
}

.home-hero__orb--1 {
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 68%);
    top: -18%;
    left: -12%;
}

.home-hero__orb--2 {
    width: min(440px, 80vw);
    height: min(440px, 80vw);
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 70%);
    bottom: -8%;
    right: -10%;
}

.home-hero__orb--3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
    top: 42%;
    left: 45%;
}

.home-hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 75% 70% at 50% 35%, black 15%, transparent 72%);
}

.home-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.home-hero__scanlines {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(37, 99, 235, 0.04) 2px,
        rgba(37, 99, 235, 0.04) 3px
    );
    pointer-events: none;
    mix-blend-mode: multiply;
}

.home-hero .container {
    z-index: 2;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1e40af;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.home-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.home-hero__title {
    font-size: clamp(2.05rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--home-text);
    margin-bottom: 1.15rem;
}

.home-hero__title-gradient {
    background: linear-gradient(105deg, #2563eb 0%, #7c3aed 48%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero__lead {
    font-size: clamp(0.95rem, 1.55vw, 1.08rem);
    line-height: 1.75;
    color: var(--home-muted);
    max-width: 30rem;
    margin-bottom: 1.75rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.88rem 1.65rem;
    border-radius: 0.85rem;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 55%, #0891b2 100%);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
    border: none;
}

.home-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.33);
}

.home-btn--ghost {
    color: #1e293b;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--home-line);
    backdrop-filter: blur(10px);
}

.home-btn--ghost:hover {
    border-color: rgba(37, 99, 235, 0.35);
    color: #1d4ed8;
    transform: translateY(-2px);
}

.home-hero__ticks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.35rem;
}

.home-hero__ticks li {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.home-hero__microtrust {
    margin: 1.15rem 0 0;
    font-size: 0.74rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 32rem;
    line-height: 1.5;
}

.home-hero__microtrust i {
    color: #2563eb;
    font-size: 0.9rem;
}

.home-hero__ticks i {
    color: #22c55e;
    font-size: 0.75rem;
}

/* Hero panel */
.home-hero__panel {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--home-radius-lg);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.home-hero__panel-head {
    padding: 1.25rem 1.35rem 1rem;
    border-bottom: 1px solid var(--home-line);
}

.home-hero__panel-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 0.35rem;
}

.home-ai-rail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.35rem;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.08), transparent 55%);
    border-bottom: 1px solid var(--home-line);
}

.home-ai-rail__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
    animation: home-ai-pulse 1.9s ease-in-out infinite;
}

@keyframes home-ai-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(0.92);
    }
}

.home-ai-rail__label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.03em;
}

.home-hero__panel-head strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--home-text);
}

.home-hero__panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1.1rem;
}

.home-mini-stat {
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid var(--home-line);
    border-radius: 1rem;
    padding: 1rem 0.85rem;
    text-align: center;
}

.home-mini-stat__icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 0.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
}

.home-mini-stat__icon--blue {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.home-mini-stat__icon--violet {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.home-mini-stat__icon--teal {
    background: linear-gradient(135deg, #0d9488, #2dd4bf);
}

.home-mini-stat__icon--amber {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.home-mini-stat__num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--home-text);
    line-height: 1.15;
}

.home-mini-stat__lbl {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-top: 0.2rem;
}

.home-hero__panel-foot {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    background: rgba(248, 250, 252, 0.95);
    border-top: 1px solid var(--home-line);
}

.home-hero__panel-foot i {
    color: #2563eb;
}

.home-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}

.home-hero__wave svg {
    width: 100%;
    height: clamp(56px, 8vw, 88px);
}

/* Scroll reveal */
.home-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.home-reveal--delay {
    transition-delay: 0.12s;
}

.home-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ─── Trust strip ─── */
.home-trust {
    background: var(--home-bg);
    padding: 1.35rem 0 2.25rem;
    margin-top: -1px;
}

.home-trust__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .home-trust__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.home-trust__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    border-radius: 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.home-trust__item i {
    color: var(--home-accent);
    font-size: 1rem;
}

/* ─── Three pillars (öğrenci / veli / teknoloji) ─── */
.home-pillars {
    padding: 3rem 0 3.75rem;
    background: linear-gradient(180deg, #fafbff 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.home-pillars .home-section-head {
    max-width: 760px;
}

.home-pillars__grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 1fr;
    max-width: 1120px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .home-pillars__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

.home-pillar {
    background: var(--home-surface);
    border-radius: 1.2rem;
    border: 1px solid var(--home-line);
    padding: 1.5rem 1.45rem;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.09);
}

.home-pillar__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.home-pillar__badge--purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.home-pillar__badge--cyan {
    background: linear-gradient(135deg, #059669, #06b6d4);
}

.home-pillar h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--home-text);
    margin: 0 0 0.55rem;
    letter-spacing: -0.02em;
}

.home-pillar p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.72;
    color: var(--home-muted);
}

.home-pillar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.52rem;
}

.home-pillar li {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    line-height: 1.45;
}

.home-pillar li i {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 0.12rem;
    font-size: 0.75rem;
}

/* ─── Section headings ─── */
.home-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.home-section-head__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.home-section-head__title {
    font-size: clamp(1.75rem, 3.8vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--home-text);
    margin: 0 0 0.65rem;
    line-height: 1.18;
}

.home-section-head__sub {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--home-muted);
}

.home-section-head--on-dark .home-section-head__title {
    color: #f8fafc;
}

.home-section-head--on-dark .home-section-head__sub {
    color: rgba(226, 232, 240, 0.85);
}

.home-section-head--on-dark .home-section-head__eyebrow {
    color: #93c5fd;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.home-section-head__eyebrow--outline {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    color: #e2e8f0 !important;
    background: rgba(15, 23, 42, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

/* ─── Packages (JSON kartları — sınıf adları korunur) ─── */
.pkt-section.home-pkts {
    background: var(--home-bg);
    padding: 4rem 0 5rem;
}

.home-pkts__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 2rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--home-line);
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.pkt-tab {
    border: none;
    background: transparent;
    color: #475569;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pkt-tab:hover {
    color: #1e40af;
}

.pkt-tab.is-active {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    color: #fff;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.28);
}

.home-pkts__grid.pkt-grid {
    display: grid;
    width: 100%;
    gap: clamp(0.75rem, 2vw, 1.15rem);
    grid-template-columns: 1fr;
    align-items: stretch;
}

/* Geniş ekranda dört paket tek satırda */
@media (min-width: 992px) {
    .home-pkts__grid.pkt-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Tablet: iki sütun */
@media (min-width: 576px) and (max-width: 991.98px) {
    .home-pkts__grid.pkt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.home-pkts__note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--home-muted);
    margin-top: 2rem;
    margin-bottom: 0;
}

.home-pkts__note a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.home-pkts__note a:hover {
    text-decoration: underline;
}

/* Package cards (anasayfa paket bölümü — tam genişlik ızgaraya uyum) */
.pkt-section.home-pkts .pkt-card {
    width: 100%;
    max-width: none;
    min-width: 0;
    background: var(--home-surface);
    border-radius: 1.25rem;
    border: 1px solid var(--home-line);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pkt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.11);
}

.pkt-card.is-hidden {
    display: none;
}

.pkt-card__header {
    padding: 1.35rem 1.25rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    position: relative;
}

.pkt-card__header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 1.25rem 1.25rem 0 0;
}

.pkt-card--blue .pkt-card__header::after {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.pkt-card--purple .pkt-card__header::after {
    background: linear-gradient(90deg, #7c3aed, #c084fc);
}

.pkt-card--teal .pkt-card__header::after {
    background: linear-gradient(90deg, #0d9488, #34d399);
}

.pkt-card--orange .pkt-card__header::after {
    background: linear-gradient(90deg, #ea580c, #fbbf24);
}

.pkt-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.22rem;
    color: #fff;
    flex-shrink: 0;
}

.pkt-card--blue .pkt-card__icon {
    background: linear-gradient(145deg, #2563eb, #38bdf8);
}

.pkt-card--purple .pkt-card__icon {
    background: linear-gradient(145deg, #7c3aed, #a855f7);
}

.pkt-card--teal .pkt-card__icon {
    background: linear-gradient(145deg, #0d9488, #34d399);
}

.pkt-card--orange .pkt-card__icon {
    background: linear-gradient(145deg, #ea580c, #fbbf24);
}

.pkt-card__badge {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.pkt-card__name {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--home-text);
    margin: 0 0 0.15rem;
    line-height: 1.25;
}

.pkt-card__year {
    font-size: 0.74rem;
    font-weight: 700;
    color: #94a3b8;
}

.pkt-card__features {
    list-style: none;
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.pkt-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.45;
}

.pkt-card--blue .pkt-card__features i {
    color: #2563eb;
}

.pkt-card--purple .pkt-card__features i {
    color: #7c3aed;
}

.pkt-card--teal .pkt-card__features i {
    color: #0d9488;
}

.pkt-card--orange .pkt-card__features i {
    color: #ea580c;
}

.pkt-card__price {
    padding: 0 1.25rem 0.85rem;
}

.pkt-card__price-current {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--home-text);
}

.pkt-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0 1.25rem 1.25rem;
}

.pkt-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 0.65rem;
    border-radius: 0.72rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.pkt-card__btn:active {
    transform: scale(0.98);
}

.pkt-card__btn--detail {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
}

.pkt-card__btn--detail:hover {
    background: #e8f0fe;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.pkt-card__btn--buy {
    color: #fff;
}

.pkt-card--blue .pkt-card__btn--buy {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.pkt-card--purple .pkt-card__btn--buy {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.pkt-card--teal .pkt-card__btn--buy {
    background: linear-gradient(135deg, #0d9488, #34d399);
}

.pkt-card--orange .pkt-card__btn--buy {
    background: linear-gradient(135deg, #ea580c, #fbbf24);
}

/* ─── Modules (modern dark shelf) ─── */
.home-modules {
    padding: 4.85rem 0 5.5rem;
    background: radial-gradient(ellipse 140% 80% at 50% -20%, rgba(56, 189, 248, 0.12), transparent),
        linear-gradient(168deg, #050a14 0%, #0c1426 42%, #101b38 100%);
    position: relative;
    overflow: hidden;
}

.home-modules__glow {
    pointer-events: none;
    position: absolute;
    inset: -40% -30% auto;
    height: 85%;
    background: radial-gradient(ellipse at 22% 30%, rgba(99, 102, 241, 0.45), transparent 52%),
        radial-gradient(ellipse at 82% 60%, rgba(14, 165, 233, 0.3), transparent 48%);
    filter: blur(2px);
    opacity: 0.75;
}

.home-modules .container {
    position: relative;
    z-index: 2;
}

.home-modules__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .home-modules__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-mod--span2 {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1100px) {
    .home-modules__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.15rem;
    }

    .home-mod--span2 {
        grid-column: span 2;
    }
}

.home-mod {
    position: relative;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    padding: 1.35rem 1.4rem 1.45rem;
    backdrop-filter: blur(16px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.home-mod::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.28s ease;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), transparent 56%);
}

.home-mod:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 211, 252, 0.45);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(56, 189, 248, 0.12);
}

.home-mod:hover::before {
    opacity: 1;
}

.home-mod--span2 {
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.2) 0%,
        rgba(15, 23, 42, 0.35) 45%,
        rgba(14, 165, 233, 0.12) 100%
    );
    border-color: rgba(165, 180, 252, 0.32);
}

.home-mod--accent {
    background: linear-gradient(148deg, rgba(13, 148, 136, 0.22), rgba(15, 23, 42, 0.5));
    border-color: rgba(45, 212, 191, 0.35);
}

.home-mod__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #c7d2fe;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(199, 210, 254, 0.35);
    background: rgba(15, 23, 42, 0.45);
    margin-bottom: 0.75rem;
}

.home-mod__tag i {
    color: #93c5fd;
}

.home-mod__ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4);
}

.home-mod__ico--invert {
    background: linear-gradient(145deg, #0d9488, #0891b2);
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.42);
}

.home-mod h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 0.5rem;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.home-mod--span2 h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.42rem);
}

.home-mod p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.75;
    color: rgba(226, 232, 240, 0.89);
}

/* ─── Counter band ─── */
.counter-section.home-counter {
    position: relative;
    padding: 3.75rem 0;
    background: var(--home-bg);
}

.counter-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #eff6ff 0%, #f5f3ff 45%, #ecfeff 100%);
    opacity: 0.95;
}

.counter-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    text-align: center;
}

.counter-item__num {
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(105deg, #1e40af, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.counter-item__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

@media (min-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ─── Reviews ─── */
.review-section.home-reviews {
    background: var(--home-surface);
    padding: 4.5rem 0;
    border-top: 1px solid var(--home-line);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

.review-card {
    background: linear-gradient(165deg, #fafbff 0%, #ffffff 100%);
    border: 1px solid var(--home-line);
    border-radius: 1.15rem;
    padding: 1.55rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-card--featured {
    background: linear-gradient(165deg, #f5f3ff 0%, #ffffff 55%);
    border-color: rgba(124, 58, 237, 0.22);
}

.review-card--parent {
    background: linear-gradient(165deg, #ecfeff 0%, #ffffff 62%);
    border-color: rgba(13, 148, 136, 0.25);
}

.review-card__stars {
    display: flex;
    gap: 0.15rem;
    color: #f59e0b;
    font-size: 0.88rem;
}

.review-card__text {
    font-size: 0.89rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    flex: 1;
}

.review-card__footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
}

.review-card__avatar--blue {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.review-card__avatar--purple {
    background: linear-gradient(135deg, #7c3aed, #c084fc);
}

.review-card__avatar--orange {
    background: linear-gradient(135deg, #ea580c, #fbbf24);
}

.review-card__avatar--teal {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
}

.review-card__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--home-text);
}

.review-card__type {
    font-size: 0.74rem;
    color: #94a3b8;
}

@media (min-width: 576px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .review-grid--quad {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .review-grid--quad {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ─── CTA ─── */
.cta-section.home-cta {
    position: relative;
    padding: 4.75rem 0;
    overflow: hidden;
    background: var(--home-bg);
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(37, 99, 235, 0.14), transparent 55%),
        linear-gradient(180deg, #fafbff 0%, #f1f5f9 100%);
}

.home-cta__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4338ca;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.cta-section__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--home-text);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.cta-section__desc {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--home-muted);
    margin-bottom: 2rem;
}

.home-cta__inline-link {
    color: #2563eb;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-cta__inline-link:hover {
    color: #1e40af;
}

.cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.cta-section__btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.95rem 2rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #6366f1);
    box-shadow: 0 14px 34px rgba(79, 70, 229, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-section__btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(79, 70, 229, 0.33);
}

.cta-section__btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.95rem 2rem;
    border-radius: 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--home-surface);
    border: 1px solid var(--home-line);
    color: #334155;
}

.cta-section__btn-outline:hover {
    border-color: rgba(37, 99, 235, 0.35);
    color: #1d4ed8;
}
