/* ═══════════════════════════════════════════════════════════════════════════
   RVS Servicios Audiovisuales - Main Stylesheet
   Modern, professional, mobile-first
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* ── CSS Variables ───────────────────────────────────────────────────────── */
:root {
    --black: #0a0a0a;
    --black-2: #111111;
    --black-3: #1a1a1a;
    --dark: #1e1e1e;
    --gray-900: #2a2a2a;
    --gray-800: #333333;
    --gray-700: #4a4a4a;
    --gray-600: #666666;
    --gray-500: #888888;
    --gray-400: #aaaaaa;
    --gray-300: #cccccc;
    --gray-200: #e0e0e0;
    --gray-100: #f0f0f0;
    --gray-50: #f8f8f8;
    --white: #ffffff;
    --accent: #e63946;
    --accent-hover: #c1121f;
    --accent-light: rgba(230, 57, 70, 0.1);
    --accent-glow: rgba(230, 57, 70, 0.3);
    --orange: #f77f00;
    --orange-hover: #e07000;
    --orange-light: rgba(247, 127, 0, 0.1);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;

    --max-width: 1200px;
    --max-width-narrow: 900px;
    --header-height: 70px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 4px 20px rgba(230, 57, 70, 0.3);
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--gray-200);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent-hover);
}

ul, ol {
    list-style: none;
}

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.6;
}

p + p {
    margin-top: 1rem;
}

/* ── Container ─────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-700);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

/* ── Header / Nav ──────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: var(--header-height);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo span:last-child {
    color: var(--gray-400);
    font-weight: 400;
    font-size: 0.8rem;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 0.85rem;
    color: var(--gray-400);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    margin-left: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--accent);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ── Hero Section ──────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 2rem) 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.65) 50%, rgba(10,10,12,0.8) 100%);
    z-index: 1;
}

.hero-bg .gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.hero-bg .gradient-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -200px;
}

.hero-bg .gradient-2 {
    width: 400px;
    height: 400px;
    background: var(--orange);
    bottom: -100px;
    left: -100px;
}

.hero-bg .gradient-3 {
    width: 300px;
    height: 300px;
    background: #4a00e0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--accent-light);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-500);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 700px;
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-value .accent {
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.2rem;
}

/* ── Sections common ──────────────────────────────────────────────────── */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--black-2);
}

.section-darker {
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ── Services Grid (Home) ─────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-card-link:hover {
    gap: 0.7rem;
}

/* ── Why RVS (Ventajas) ────────────────────────────────────────────────── */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
}

.advantage-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.advantage-text p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── Projects ──────────────────────────────────────────────────────────── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: var(--shadow-md);
}

.project-image {
    height: 200px;
    background: var(--black-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.project-image .project-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black-3), var(--dark));
    opacity: 0.5;
}

.project-image .project-emoji {
    position: relative;
    z-index: 1;
}

.project-image.has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.project-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    z-index: 2;
}

.project-tag {
    padding: 0.2rem 0.6rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-300);
}

.project-info {
    padding: 1.5rem;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-bottom: 0.6rem;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── Clients ──────────────────────────────────────────────────────────── */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.client-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: var(--transition);
}

.client-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-3px);
}

.client-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.client-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.client-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── CTA Section ───────────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--black-3), var(--black-2));
    border: 1px solid rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.05), transparent 70%);
}

.cta-section .container-narrow {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ── Contact Info Row ──────────────────────────────────────────────────── */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    padding: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--gray-300);
}

.contact-item a:hover {
    color: var(--accent);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
    background: var(--black-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-top: 0.75rem;
    max-width: 320px;
}

.footer h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.footer-social a:hover {
    color: var(--accent);
}

/* ── Interior Page Hero ────────────────────────────────────────────────── */
.page-hero {
    padding: calc(var(--header-height) + 4rem) 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .gradient-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero .gradient-bg .blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.08;
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

/* Hero image background */
.page-hero.hero-image {
    padding: calc(var(--header-height) + 6rem) 0 5rem;
}

.page-hero.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3) saturate(0.8);
}

.page-hero.hero-image .gradient-bg {
    display: none;
}

.page-hero.hero-image .container {
    position: relative;
    z-index: 1;
}

.page-hero.hero-image h1 {
    color: #fff;
}

.page-hero.hero-image p {
    color: rgba(255,255,255,0.8);
}

.page-hero.hero-image .back-link {
    color: rgba(255,255,255,0.7);
}

.page-hero.hero-image .back-link:hover {
    color: #fff;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Content sections ─────────────────────────────────────────────────── */
.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-visual {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-visual .visual-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.content-text .section-badge {
    margin-bottom: 0.5rem;
}

.content-text h2 {
    margin-bottom: 1rem;
}

.content-text p {
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.content-text .feature-list {
    margin-top: 1.5rem;
}

.content-text .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    color: var(--gray-300);
}

.feature-check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Service Details ──────────────────────────────────────────────────── */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.detail-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.detail-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-3px);
}

.detail-card .detail-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.detail-card h4 {
    margin-bottom: 0.5rem;
}

.detail-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
}

/* ── Timeline / Process ────────────────────────────────────────────────── */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 2rem auto 0;
}

.process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.process-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.process-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.process-text p {
    font-size: 0.88rem;
    color: var(--gray-500);
}

/* ── About page ────────────────────────────────────────────────────────── */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
}

.value-card .value-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ── Contact Form ──────────────────────────────────────────────────────── */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 0.4rem;
}

.form-group label .required {
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.form-control::placeholder {
    color: var(--gray-700);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-info-card .contact-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.92rem;
    color: var(--gray-400);
}

.contact-info-card .contact-line-icon {
    flex-shrink: 0;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.contact-info-card .contact-line a {
    color: var(--gray-300);
}

.contact-info-card .contact-line a:hover {
    color: var(--accent);
}

/* ── Alerts / Flash messages ──────────────────────────────────────────── */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.alert-error {
    background: var(--accent-light);
    border: 1px solid rgba(230, 57, 70, 0.2);
    color: var(--accent);
}

/* ── Blog ──────────────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: var(--shadow-md);
}

.blog-image {
    height: 180px;
    background: var(--black-3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image .blog-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(247, 127, 0, 0.05));
    z-index: 0;
}

.blog-image .blog-emoji {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.blog-image .blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    z-index: 2;
}

.blog-info {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.blog-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blog-info h3 a {
    color: var(--white);
}

.blog-info h3 a:hover {
    color: var(--accent);
}

.blog-info p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Single blog post */
.blog-post-content {
    max-width: 750px;
    margin: 0 auto;
}

.blog-post-content .post-header {
    margin-bottom: 2rem;
}

.blog-post-content .post-header .post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-light);
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.blog-post-content .post-header h1 {
    margin-bottom: 0.5rem;
}

.blog-post-content .post-header .post-date {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.blog-post-content .post-body {
    color: var(--gray-300);
    font-size: 1.02rem;
    line-height: 1.8;
}

.blog-post-content .post-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-post-content .post-body h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.blog-post-content .post-body p {
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.blog-post-content .post-body .post-cta {
    background: var(--black-2);
    border-left: 3px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--gray-400);
}

/* ── Filter buttons ───────────────────────────────────────────────────── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid var(--gray-800);
    border-radius: 50px;
    color: var(--gray-500);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--gray-600);
    color: var(--gray-300);
}

.filter-btn.active {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

/* ── Back link ─────────────────────────────────────────────────────────── */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.back-link:hover {
    color: var(--accent);
}

/* ── WhatsApp Floating Button ─────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* ── Testimonials ──────────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.testimonial-card .stars {
    color: #f77f00;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    color: var(--gray-400);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card .attribution {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.testimonial-card .attribution strong {
    color: var(--white);
    display: block;
}

.testimonial-card .attribution span {
    color: var(--gray-600);
    font-size: 0.8rem;
}

/* ── Responsive ────────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 62px;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 1rem;
        flex-direction: column;
        gap: 0.25rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.25rem;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-stat-value {
        font-size: 1.3rem;
    }

    .section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-md);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 3rem) 0 3rem;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 1rem;
        right: 1rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.15rem; }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ── Animations ────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* ── Utility ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }

/* ── Hidden utility for blog post reading ───────────────────────────────── */
.is-hidden {
    display: none;
}

/* ── Stat items ────────────────────────────────────────────────────── */
.stat-item {
    text-align: left;
}

.hero-stats {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Why RVS Grid ──────────────────────────────────────────────────── */
.why-rvs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.why-rvs-card {
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.why-rvs-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-rvs-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.why-rvs-card-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.why-rvs-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}

.why-rvs-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ── Process Timeline ──────────────────────────────────────────────── */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-phase {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    padding-left: 2rem;
}

.process-phase::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 2.5rem;
    bottom: -1.5rem;
    width: 2px;
    background: rgba(230, 57, 70, 0.2);
}

.process-phase:last-child::before {
    display: none;
}

.process-phase-number {
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.process-phase-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.process-phase-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.process-phase-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── Trust Data Section ────────────────────────────────────────────── */
.trust-data-section {
    padding: 4rem 0;
}

.trust-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-data-item {
    padding: 2rem;
    background: var(--black-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.trust-data-item:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-2px);
}

.trust-data-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-data-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 0.3rem;
    font-weight: 500;
}

.trust-data-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.2rem;
}

/* ── Service Card Features ─────────────────────────────────────────── */
.service-card-features {
    margin: 1rem 0;
    padding-left: 1.2rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.service-card-features li {
    margin-bottom: 0.3rem;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.service-card-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* ── Project meta extras ───────────────────────────────────────────── */
.project-meta-cat,
.project-meta-location,
.project-meta-year {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ── Blog extras ───────────────────────────────────────────────────── */
.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.post-related {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-cta-bottom {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--black-2);
    border-radius: var(--radius-md);
}

/* ── Footer trust badges ───────────────────────────────────────────── */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 1.5rem;
}

.footer-trust-badges span {
    font-size: 0.8rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ── Animations ────────────────────────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Google Reviews Section ────────────────────────────────────────── */
.google-reviews-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.google-icon svg {
    width: 48px;
    height: 48px;
}

.google-rating {
    text-align: left;
}

.google-stars {
    font-size: 1.8rem;
    color: #FFC107;
    letter-spacing: 3px;
}

.google-rating-text {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 0.15rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    color: var(--gray-400);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ── Google Reviews Grid ──────────────────────────────────────────── */
.google-reviews-grid {
    margin-bottom: 1.5rem;
}

.google-review-card {
    text-align: left;
}

.google-review-card blockquote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-400);
}

.google-review-stars {
    color: #FFC107;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent);
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
}

.review-time {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ═══ GALERÍA ═══ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--gray-800);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item.wide {
    grid-column: span 2;
}
@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .gallery-item.wide {
        grid-column: span 1;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── Legal pages ────────────────────────────────────────── */
.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p,
.legal-content li {
    color: var(--gray-400);
    line-height: 1.8;
}
.legal-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}
.legal-content li {
    margin-bottom: 0.4rem;
}
