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

:root {
    --bg-main: #ffffff;
    --bg-surface: #f7f9fc;
    --bg-card: #ffffff;
    --primary: #004fb6;
    --primary-hover: #003d91;
    --primary-light: #e8f1fd;
    --primary-ghost: rgba(0, 79, 182, 0.06);
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --bg-dark: #0f172a;
    --text-dark-primary: #f1f5f9;
    --text-dark-secondary: #94a3b8;
    --border: #e2e8f0;
    --border-light: #edf2f7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,79,182,0.10);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
    --container-max: 1140px;
    --header-height: 80px;
    --radius: 12px;
    --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========== LAYOUT ========== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-surface { background-color: var(--bg-surface); }

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

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .section { padding: 3.5rem 0; }
}

/* ========== TYPOGRAPHY ========== */

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}
h1 { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; }
h2 { font-size: 2.2rem; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
p { color: var(--text-secondary); }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
}

.text-highlight {
    color: var(--primary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========== BADGE ========== */

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

/* ========== BUTTONS ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}
.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}
.btn-block { width: 100%; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,79,182,0.3);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,79,182,0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-ghost);
}

/* ========== DARK HEADER ========== */

.dark-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-dark);
    transition: all 0.35s ease;
}
.dark-header.scrolled {
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.dark-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo-container {
    height: 38px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-container img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-dark-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
    padding: 0.6rem 1.25rem !important;
    font-size: 0.85rem !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1.5rem 2rem 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .nav-links.active { display: flex; }
    .nav-cta { display: none !important; }
    .hamburger { display: flex; }
}

/* ========== HERO ========== */

.hero {
    padding: calc(var(--header-height) + 3.5rem) 0 4rem;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 79, 182, 0.12), transparent 42%),
        radial-gradient(circle at 85% 10%, rgba(15, 23, 42, 0.1), transparent 38%),
        linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: center;
}
.hero-copy {
    position: relative;
    z-index: 2;
}
.hero-badge {
    margin-bottom: 1rem;
}
.hero-copy h1 {
    margin-bottom: 1rem;
}
.hero-sub {
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin: 0 0 0.6rem;
    max-width: 560px;
}
.hero-sub-note {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 1.5rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}
.hero-microcopy {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.hero-microcopy i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}
.hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.1rem;
    margin-bottom: 1rem;
}
.hero-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    color: var(--text-muted);
}
.hero-trust-line i {
    width: 15px;
    height: 15px;
    color: var(--primary);
}
.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    padding: 0.45rem 0.85rem;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
}
.hero-urgency i {
    width: 15px;
    height: 15px;
    color: var(--primary);
}

.hero-visual {
    position: relative;
    min-height: 380px;
}
.hero-screen {
    background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe5f3;
    border-radius: 20px;
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.16);
    padding: 1rem;
    position: relative;
    z-index: 2;
}
.hero-screen-head {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    margin-bottom: 1rem;
}
.hero-screen-head p {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.hero-screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}
.hero-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
}
.hero-kpi {
    background: #f1f5ff;
    border: 1px solid #d9e6ff;
    border-radius: 14px;
    padding: 0.8rem;
}
.hero-kpi strong {
    display: block;
    color: #0f172a;
    font-size: 1.1rem;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}
.hero-kpi span {
    color: var(--text-muted);
    font-size: 0.78rem;
}
.hero-orders {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.65rem;
}
.hero-orders p {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #334155;
    margin-bottom: 0.4rem;
}
.hero-orders p:last-child {
    margin-bottom: 0;
}
.hero-orders i {
    width: 14px;
    height: 14px;
    color: #0f9d6a;
}

.hero-float {
    position: absolute;
    z-index: 1;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
}
.hero-float-left {
    left: -24px;
    top: 58%;
}
.hero-float-right {
    right: -12px;
    top: 10%;
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-copy {
        text-align: center;
    }
    .hero-sub,
    .hero-sub-note {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas,
    .hero-trust-line {
        justify-content: center;
    }
    .hero-visual {
        width: min(560px, 100%);
        margin: 0 auto;
        min-height: 350px;
    }
    .hero-float-left {
        left: 8px;
        top: 60%;
    }
    .hero-float-right {
        right: 8px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + 2.2rem);
    }
    .hero-ctas {
        flex-direction: column;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .hero-kpi-grid {
        grid-template-columns: 1fr;
    }
    .hero-float {
        position: static;
        margin-top: 0.6rem;
        display: inline-block;
    }
}

/* ========== PAIN SECTION ========== */

.pain-grid {
    max-width: 700px;
    margin: 0 auto;
}
.pain-text h2 {
    margin-bottom: 2rem;
}
.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.pain-list i {
    color: #e53e3e;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.pain-resolution {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 1.25rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}
.pain-cta {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.pain-cta:hover {
    text-decoration: underline;
}

/* ========== FEATURE CARDS (Qué hacemos) ========== */

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,79,182,0.15);
}
.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.icon-wrapper i {
    width: 22px;
    height: 22px;
    color: var(--primary);
}
.feature-card h3 {
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== SERVICE CARDS (Post-lanzamiento) ========== */

.service-grid { gap: 1.5rem; }

.service-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon i {
    width: 22px;
    height: 22px;
    color: var(--primary);
}
.service-content h3 { margin-bottom: 0.5rem; }
.service-content p { font-size: 0.95rem; margin-bottom: 1rem; }

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.check-list i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .service-card { flex-direction: column; gap: 1rem; }
}

/* ========== PRICING ========== */

.pricing-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.pricing-grid {
    margin-top: 0.5rem;
}
.pricing-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.9rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}
.pricing-card-featured {
    border-color: #93c5fd;
    box-shadow: 0 16px 34px rgba(0, 79, 182, 0.16);
    transform: translateY(-4px);
}
.pricing-tag {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 0.24rem 0.75rem;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}
.pricing-price {
    margin-top: 0.5rem;
    margin-bottom: 0.9rem;
    font-size: 1rem;
    color: #334155;
}
.pricing-price strong {
    font-size: 1.3rem;
    color: #0f172a;
}
.pricing-card ul {
    margin-top: auto;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}
.pricing-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.pricing-card li i {
    width: 15px;
    height: 15px;
    color: var(--primary);
    margin-top: 2px;
}
.pricing-note {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========== STEPS TIMELINE ========== */

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 23px;
    width: 2px;
    height: calc(100% - 60px);
    background: var(--border);
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}
.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,79,182,0.25);
}
.step-content h3 { margin-bottom: 0.4rem; }
.step-content p { font-size: 0.95rem; }

/* ========== STATS ========== */

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}
.stat {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.stat-suffix {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .stats-bar { flex-direction: column; gap: 1.5rem; }
    .stat-number, .stat-suffix { font-size: 2rem; }
}

/* ========== TESTIMONIALS ========== */

.testimonial-grid { margin-top: 0; }

.testimonial-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}
.testimonial-impact {
    display: inline-block;
    margin-bottom: 0.7rem;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    width: fit-content;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== CONTACT SECTION ========== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.contact-left > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.contact-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.contact-benefits i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-light);
}
textarea.form-control {
    min-height: 100px;
    resize: vertical;
}
.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}
.form-guarantee {
    margin-top: 0.8rem;
    text-align: center;
    color: #0f172a;
    font-size: 0.84rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.form-guarantee i {
    width: 15px;
    height: 15px;
    color: #0f9d6a;
}
.form-disclaimer a {
    color: var(--primary);
    text-decoration: none;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}
.form-success i {
    width: 56px;
    height: 56px;
    color: #38a169;
    margin-bottom: 1rem;
}
.form-success h3 {
    color: #38a169;
    margin-bottom: 0.5rem;
}

.btn-loading { display: inline-flex; align-items: center; gap: 0.5rem; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form-wrapper { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
}

/* ========== DARK FOOTER ========== */

.dark-footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo-container {
    height: 36px;
    margin-bottom: 1rem;
}
.footer-brand .logo-container img { height: 100%; width: auto; }
.footer-brand p {
    color: var(--text-dark-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--text-dark-primary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: var(--text-dark-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: var(--text-dark-secondary);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ========== REVEAL ANIMATION ========== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
