/* ============================================
   Red Extranjería — Landing Page (BOLD v2)
   Más presencia de color, alternancia de fondos
   ============================================ */

:root {
    --primary: #3e506e;
    --primary-dark: #2d3a4f;
    --primary-darker: #1f2a3a;
    --primary-light: #5a6c7d;
    --primary-pale: rgba(62, 80, 110, 0.08);

    --accent: #a5394a;
    --accent-dark: #8d2f3d;
    --accent-light: #c4516a;
    --accent-pale: rgba(165, 57, 74, 0.08);

    --text: #2d3748;
    --text-muted: #718096;
    --text-soft: #a0aec0;

    --bg: #ffffff;
    --bg-burgundy: #fdf4f5;
    --bg-burgundy-2: #fbeaec;
    --bg-slate: #eef1f5;
    --bg-slate-2: #e3e9f1;
    --bg-cream: #faf6f3;
    --bg-dark: #2d3a4f;

    --border: #e2e8f0;
    --border-burgundy: rgba(165, 57, 74, 0.18);
    --border-slate: rgba(62, 80, 110, 0.18);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 4px rgba(45, 55, 72, 0.06);
    --shadow: 0 6px 18px rgba(45, 55, 72, 0.10);
    --shadow-lg: 0 16px 40px rgba(45, 55, 72, 0.16);
    --shadow-burgundy: 0 12px 28px rgba(165, 57, 74, 0.25);
    --shadow-slate: 0 12px 28px rgba(62, 80, 110, 0.25);

    --transition: 0.25s ease;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
    color: var(--text);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1em; }

ul { padding-left: 1.2em; }

/* ============ Layout ============ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.container-narrow { max-width: 820px; }

.section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

/* Section variants */
.section-light {
    background: var(--bg-burgundy);
}
.section-light::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-pale) 0%, transparent 70%);
    pointer-events: none;
}

.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    color: white;
    padding: 80px 0;
}
.section-dark::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(165, 57, 74, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.section-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}
.section-cta::before,
.section-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.section-cta::before {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}
.section-cta::after {
    bottom: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(45, 58, 79, 0.4) 0%, transparent 70%);
}
.section-cta h2 { color: white; }

/* New: alternating colored section variants */
.section-slate {
    background: var(--bg-slate);
    position: relative;
}
.section-slate::before {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-pale) 0%, transparent 70%);
    pointer-events: none;
}

.section-process {
    background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}
.section-process::before {
    content: "";
    position: absolute;
    top: 50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(165, 57, 74, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.section-process .section-head h2,
.section-process .section-head .eyebrow {
    color: white;
}
.section-process .section-head .eyebrow {
    color: var(--accent-light);
}
.section-process .section-head p {
    color: rgba(255, 255, 255, 0.8);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 2;
}
.section-head .eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: var(--accent-pale);
    border-radius: 999px;
}
.section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.section-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 48px;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}
.section-note i { color: var(--accent); margin-right: 6px; }

.text-center { text-align: center; }

.grid {
    display: grid;
    gap: 24px;
    position: relative;
    z-index: 2;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .section-head { margin-bottom: 48px; }
}

/* ============ Header ============ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(45, 55, 72, 0.08);
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    transition: opacity var(--transition);
}
.logo:hover { color: var(--text); opacity: 0.85; }

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}
.logo-footer .logo-img {
    height: 48px;
    margin-bottom: 4px;
}

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

.site-nav {
    display: flex;
    gap: 28px;
    margin: 0 auto 0 24px;
}
.site-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}
.site-nav a:hover { color: var(--accent); }

.header-actions {
    display: flex;
    gap: 10px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 0 auto;
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 960px) {
    .site-nav, .header-actions { display: none; }
    .nav-toggle { display: flex; }
    .site-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 24px 24px 12px;
        gap: 18px;
        margin: 0;
        box-shadow: var(--shadow);
        z-index: 99;
    }
    .header-actions.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 12px 24px 24px;
        gap: 12px;
        z-index: 99;
        box-shadow: var(--shadow);
        margin-top: 230px;
        border-top: 1px solid var(--border);
    }
}

/* ============ Buttons ============ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-lg { padding: 15px 26px; font-size: 1rem; }
.btn-xl { padding: 18px 34px; font-size: 1.1rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: var(--shadow-burgundy);
}
.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(165, 57, 74, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-link {
    background: transparent;
    color: var(--text);
    padding-left: 0;
    padding-right: 0;
}
.btn-link:hover { color: var(--accent); }

/* ============ Hero — full bg gradient ============ */

.hero {
    padding: 96px 0 112px;
    background:
        linear-gradient(135deg, var(--bg-burgundy) 0%, var(--bg-slate) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(165, 57, 74, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(62, 80, 110, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--shadow-burgundy);
}

.hero h1 {
    margin-bottom: 20px;
}
.hero h1 .highlight {
    color: var(--accent);
    position: relative;
    white-space: nowrap;
}
.hero h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 8px;
    background: var(--accent-light);
    opacity: 0.25;
    border-radius: 4px;
    z-index: -1;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 560px;
    margin-bottom: 30px;
    opacity: 0.85;
}
.hero-sub strong {
    color: var(--accent);
    font-weight: 800;
    background: rgba(165, 57, 74, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.hero-bullets li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}
.hero-bullets i {
    color: white;
    background: var(--accent);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Hero stats card — now slate-blue solid */
.hero-stats-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}
.hero-stats-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 0;
    border-radius: var(--radius-lg);
}
.hero-stats-card .stat {
    background: transparent;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-stats-card .stat strong {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}
.hero-stats-card .stat:nth-child(odd) strong {
    background: linear-gradient(135deg, white 0%, #ffd9e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stats-card .stat span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

@media (max-width: 960px) {
    .hero { padding: 64px 0 80px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats-card .stat strong { font-size: 2.1rem; }
}

/* ============ Cards ============ */

.card-feature {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.card-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.card-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.card-feature:hover::before { transform: scaleX(1); }
.card-feature h3 { margin-bottom: 10px; }
.card-feature p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Saturated icons (solid color, white glyph) */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    color: white;
}
.icon-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-slate);
}
.icon-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow: var(--shadow-burgundy);
}

/* ============ Steps ============ */

.steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: start;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 28px 32px;
    transition: var(--transition);
}
.step:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-light);
    transform: translateX(6px);
}
.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    box-shadow: var(--shadow-burgundy);
}
.step-body h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: white;
}
.step-body p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

@media (max-width: 600px) {
    .step { padding: 22px; gap: 16px; grid-template-columns: 52px 1fr; }
    .step-num { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* ============ Trámites cards ============ */

.card-tramites {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.card-tramites::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-pale) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition);
}
.card-tramites:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-burgundy);
}
.card-tramites:hover::after {
    width: 200px;
    height: 200px;
}
.card-tramites h3 { margin-bottom: 16px; position: relative; z-index: 2; }
.card-tramites ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}
.card-tramites li {
    color: var(--text);
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.card-tramites li:last-child { border-bottom: none; }
.card-tramites li::before {
    content: "›";
    color: var(--accent);
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
}

/* ============ Stats row ============ */

.stats-row .stat-big {
    text-align: center;
    position: relative;
    z-index: 2;
}
.stats-row .stat-big strong {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    color: white;
    background: linear-gradient(135deg, white 0%, #ffd9e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stats-row .stat-big span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ============ Testimonials ============ */

.card-testimonial {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}
.card-testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.card-testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.quote-mark {
    color: var(--accent);
    opacity: 0.25;
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 12px;
}
.card-testimonial p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 26px;
    font-size: 0.98rem;
}
.card-testimonial footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-slate);
}
.card-testimonial footer strong { display: block; color: var(--text); font-size: 0.95rem; }
.card-testimonial footer span { color: var(--text-muted); font-size: 0.85rem; }

/* ============ FAQ ============ */

.faq {
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 2;
}
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 60px 22px 26px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    user-select: none;
    transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: var(--accent);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 400;
    transition: transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}
.faq-item summary:hover { background: var(--bg-burgundy); }
.faq-body {
    padding: 0 26px 24px;
    color: var(--text-muted);
}

/* ============ CTA ============ */

.cta-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.2rem;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}
.cta-actions {
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}
.section-cta .btn-primary {
    background: white;
    color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.section-cta .btn-primary:hover {
    color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.cta-foot {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    z-index: 2;
}
.cta-foot a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}
.cta-foot a:hover { color: white; opacity: 0.85; }

/* ============ Footer ============ */

.site-footer {
    background: linear-gradient(180deg, var(--primary-darker) 0%, #15202e 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 32px;
    font-size: 0.9rem;
}
.site-footer .logo { color: white; margin-bottom: 18px; }
.site-footer .logo:hover { color: white; }
.site-footer p { color: rgba(255, 255, 255, 0.7); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-company {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-company strong { color: rgba(255, 255, 255, 0.8); }
.footer-copy {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ Animations ============ */

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}
