/* ═══════════════════════════════════════════════════════════════════
   IWAD — Fresh Design System
   Brand: #010268 (navy) · #04449C (blue) · #28DAC2 (teal)
   Aesthetic: Clean tech-luxe — dark hero, generous whitespace, 
   bold typography, floating cards, geometric accents
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

/* ─── VARIABLES ──────────────────────────────────────────────────── */
:root {
    --navy: #010268;
    --blue: #04449C;
    --teal: #28DAC2;
    --teal-glow: rgba(40, 218, 194, 0.15);
    --dark: #020133;
    --darker: #01011f;
    --white: #ffffff;
    --off-white: #f6f7fb;
    --gray-50: #f0f1f8;
    --gray-100: #e3e5f0;
    --gray-200: #caced9;
    --gray-400: #8b90a8;
    --gray-600: #4a4f6d;
    --gray-800: #1e2140;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 3px rgba(1,2,104,0.04), 0 1px 2px rgba(1,2,104,0.06);
    --shadow: 0 4px 20px rgba(1,2,104,0.06);
    --shadow-lg: 0 12px 40px rgba(1,2,104,0.08);
    --shadow-xl: 0 24px 60px rgba(1,2,104,0.1);
    --max-w: 1200px;
}

/* ─── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
}
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ─── NAV ────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(1,2,104,0.06);
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo img { height: 36px; }
.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.25s ease;
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: #fff; }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--gray-600); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active { color: var(--navy); }

.nav__cta {
    padding: 10px 24px;
    background: var(--teal);
    color: var(--navy) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s var(--ease);
}
.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,218,194,0.35);
}
.nav__cta::after { display: none !important; }

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.nav__hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}
.nav.scrolled .nav__hamburger span { background: var(--navy); }

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--darker) 0%, var(--dark) 40%, var(--navy) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40,218,194,0.12) 0%, transparent 70%);
    animation: float 12s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4,68,156,0.15) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Grid pattern overlay */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__content { max-width: 560px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(40,218,194,0.1);
    border: 1px solid rgba(40,218,194,0.2);
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeUp 0.6s var(--ease) 0.1s both;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeUp 0.6s var(--ease) 0.2s both;
}
.hero h1 .gradient {
    background: linear-gradient(135deg, var(--teal), #6eeadb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeUp 0.6s var(--ease) 0.3s both;
}
.hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s var(--ease) 0.4s both;
}

.hero__visual {
    display: flex;
    justify-content: center;
    animation: fadeUp 0.8s var(--ease) 0.5s both;
}
.hero__card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    width: 380px;
}
.hero__card-stat {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.hero__card-stat div {
    text-align: center;
    flex: 1;
}
.hero__card-stat h3 {
    font-size: 1.8rem;
    color: var(--teal);
    font-family: var(--font-display);
}
.hero__card-stat p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.hero__card-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.hero__card-services span {
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    transition: all 0.3s ease;
}
.hero__card-services span:hover {
    background: rgba(40,218,194,0.1);
    border-color: rgba(40,218,194,0.2);
    color: var(--teal);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: none;
}
.btn-primary {
    background: var(--teal);
    color: var(--navy);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(40,218,194,0.35);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--navy);
    color: #fff;
}
.btn-dark:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ─── SECTION HEADERS ────────────────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 580px;
    line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ─── SERVICE CARDS ──────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--teal-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--teal);
    transition: all 0.3s ease;
}
.service-card:hover .service-card__icon {
    background: var(--teal);
    color: var(--navy);
}
.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-800);
}
.service-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.65;
    margin-bottom: 16px;
}
.service-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}
.service-card:hover .service-card__link { gap: 10px; color: var(--teal); }

/* ─── FEATURES ROW ───────────────────────────────────────────────── */
.features {
    background: var(--off-white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-item {
    text-align: center;
    padding: 40px 28px;
}
.feature-item__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-item__icon img { width: 32px; height: 32px; }
.feature-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ─── STATS BAR ──────────────────────────────────────────────────── */
.stats {
    background: var(--navy);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stats-grid h3 {
    font-size: 2.4rem;
    font-family: var(--font-display);
    color: var(--teal);
    margin-bottom: 4px;
}
.stats-grid p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* ─── SPLIT SECTION (text + image) ───────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split__content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 16px;
}
.split__content p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 14px;
}
.split__content h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-top: 24px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-100);
}
.split__visual {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.split__visual img {
    width: 70%;
    object-fit: contain;
}

/* ─── PRICING TABLE ──────────────────────────────────────────────── */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 24px 0;
}
.pricing-table th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
    font-size: 0.9rem;
}
.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--gray-50); }

/* ─── TECH STACK ─────────────────────────────────────────────────── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}
.tech-item {
    padding: 20px 24px;
    background: var(--white);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}
.tech-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}
.tech-item h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.tech-item p { font-size: 0.88rem; color: var(--gray-400); }

/* ─── ICON CARDS (marketing etc) ─────────────────────────────────── */
.icon-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.icon-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: all 0.35s var(--ease);
}
.icon-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}
.icon-card__ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--teal-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--teal);
}
.icon-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.icon-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.6; }

/* ─── REPAIR CARDS ───────────────────────────────────────────────── */
.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.repair-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}
.repair-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.repair-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.repair-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; }

/* ─── CTA BANNER ─────────────────────────────────────────────────── */
.cta {
    background: linear-gradient(135deg, var(--dark), var(--navy));
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(40,218,194,0.06);
}
.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
}
.cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 16px;
}
.cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    line-height: 1.7;
}
.cta .btn-primary { font-size: 1rem; padding: 16px 36px; }

/* ─── CONTACT GRID ───────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}
.contact-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--teal);
}
.contact-card__ico {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--teal-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--teal);
}
.contact-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.contact-card a, .contact-card p { font-size: 0.9rem; color: var(--gray-400); }
.contact-card a:hover { color: var(--teal); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
    background: var(--darker);
    padding: 80px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer__brand img { height: 32px; margin-bottom: 14px; }
.footer__brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    max-width: 280px;
}
.footer h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--teal);
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    transition: all 0.2s ease;
}
.footer ul a:hover {
    color: var(--teal);
    padding-left: 4px;
}
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* ─── WHATSAPP ───────────────────────────────────────────────────── */
.wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-btn img { width: 28px; height: 28px; }

/* ─── PAGE HEADER (inner pages) ──────────────────────────────────── */
.page-header {
    background: linear-gradient(160deg, var(--darker), var(--navy));
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(40,218,194,0.08);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 14px;
}
.page-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    line-height: 1.7;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 968px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero__content { max-width: 100%; }
    .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero__buttons { justify-content: center; }
    .hero__visual { display: none; }
    .services-grid, .icon-cards { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse { direction: ltr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }
}
@media (max-width: 640px) {
    .services-grid, .icon-cards { grid-template-columns: 1fr; }
    section { padding: 64px 0; }
    .hero { padding-top: 100px; min-height: auto; padding-bottom: 64px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stats-grid h3 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
