/* ══════════════════════════════════════════════════════════════
   QSAS Data SL — Estilos compartidos
   ══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
    --navy:           #152238;
    --navy-light:     #1e3252;
    --teal:           #0ea5b8;
    --green:          #2ec4a2;
    --orange:         #f5a623;
    --text:           #2c3e50;
    --text-secondary: #5a6d80;
    --bg:             #eee9e2;
    --bg-card:        #ffffff;
    --border:         #e2e8f0;
    --error:          #e74c3c;
    --navbar-bg:      #f4f7fa;
    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      16px;
    --radius-xl:      24px;
    --radius-pill:    50px;
    --shadow-card:    0 4px 24px rgba(21, 34, 56, 0.06);
    --shadow-hover:   0 12px 40px rgba(21, 34, 56, 0.14);
    --shadow-image:   0 16px 48px rgba(21, 34, 56, 0.12);
    --transition:     0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    padding-top: 110px;
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

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

/* ── Tipografia ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }

.text-secondary { color: var(--text-secondary); }
.text-teal      { color: var(--teal); }
.text-center    { text-align: center; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

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

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 3rem;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navbar-bg);
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 2px 16px rgba(21, 34, 56, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.navbar-brand img {
    height: 90px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.navbar-nav a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--teal);
    background: rgba(14, 165, 184, 0.08);
}

.navbar-cta {
    padding: 0.55rem 1.4rem !important;
    background: var(--orange) !important;
    color: #fff !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
}

.navbar-cta:hover {
    background: #e6951a !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

/* Hamburger */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-visual {
    flex: 1;
    min-width: 0;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-image);
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out both;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, var(--teal), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 0 2.5rem;
    animation: fadeUp 0.8s ease-out 0.15s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.8s ease-out 0.3s both;
}

/* ── Botones ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary {
    background: var(--orange);
    color: #ffffff;
}

.btn-primary:hover {
    background: #e6951a;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
}

.btn-secondary {
    background: var(--navy);
    color: #ffffff;
}

.btn-secondary:hover {
    background: var(--navy-light);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(21, 34, 56, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: var(--teal);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--navy);
}

/* ── Tarjetas ───────────────────────────────────────────────── */
.card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(14, 165, 184, 0.08);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.card-icon.orange { background: rgba(245, 166, 35, 0.1); }
.card-icon.green  { background: rgba(46, 196, 162, 0.1); }
.card-icon.navy   { background: rgba(21, 34, 56, 0.08); }

.card h3 { margin-bottom: 0.5rem; }

.card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ── Product Cards (con imagen) ──────────────────────────────── */
.card-product {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-product-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
}

.card-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-product:hover .card-product-image img {
    transform: scale(1.03);
}

.card-product-body {
    padding: 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-product-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card-product-features {
    margin: 0 0 1.5rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    list-style: disc;
    flex: 1;
}

.card-product-features li {
    margin-bottom: 0.15rem;
}

.card-product-body .btn {
    align-self: flex-start;
}

/* ── Stats Section ─────────────────────────────────────────── */
.section-stats {
    background: var(--navy);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.section-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(14, 165, 184, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(46, 196, 162, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.stat-item {
    text-align: center;
    padding: 1rem 0.75rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ── DNA Features (alternating layout) ──────────────────────── */
.section-dna {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.dna-feature {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem 0;
}

.dna-feature + .dna-feature {
    border-top: 1px solid var(--border);
}

.dna-feature-image {
    flex: 0 0 280px;
    width: 280px;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
}

.dna-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dna-feature-content {
    flex: 1;
    min-width: 0;
}

.dna-feature-content .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
}

.dna-feature-content .card-icon svg {
    width: 28px;
    height: 28px;
}

.dna-feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.dna-feature-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 520px;
}

.dna-feature-reverse {
    flex-direction: row-reverse;
}

/* ── Why QSAS Section ──────────────────────────────────────── */
.section-why {
    padding: 7rem 0;
}

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

.why-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: background var(--transition), box-shadow var(--transition);
}

.why-item:hover {
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
}

.why-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(14, 165, 184, 0.08);
    margin: 0 auto 1.5rem;
}

.why-icon svg {
    width: 36px;
    height: 36px;
}

.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--navy);
    border-radius: var(--radius-lg);
    color: #ffffff;
    margin: 2rem 0;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, #1a3a5c 100%);
    padding: 5rem 3rem;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 184, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 196, 162, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-gradient h2 {
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
}

.cta-gradient p {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.cta-gradient .btn {
    position: relative;
    z-index: 1;
}

/* ── Protocolos / Logos strip ───────────────────────────────── */
.protocols {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.protocol-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.protocol-item svg {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

/* ── Feature rows (icono + texto en fila) ───────────────────── */
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
}

.feature-row + .feature-row {
    border-top: 1px solid var(--border);
}

.feature-row-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(14, 165, 184, 0.08);
}

.feature-row-icon svg {
    width: 28px;
    height: 28px;
}

.feature-row-content h3 {
    margin-bottom: 0.4rem;
}

.feature-row-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ── Page header (paginas interiores) ───────────────────────── */
.page-header {
    text-align: center;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0.75rem auto 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.breadcrumb a { color: var(--teal); font-weight: 500; }

/* ── Formulario ─────────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: inherit;
    font-size: 0.92rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14, 165, 184, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.form-checkbox label {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ── Legal content ──────────────────────────────────────────── */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.legal-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.legal-content .legal-updated {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 0.92rem;
    line-height: 1.75;
}

.legal-content ul {
    margin: 0.75rem 0 1.25rem 1.5rem;
    font-size: 0.92rem;
    line-height: 1.75;
}

.legal-content ul li {
    margin-bottom: 0.4rem;
}

.legal-content strong {
    font-weight: 600;
    color: var(--navy);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 1.5rem;
    transition: color 0.2s ease, gap 0.2s ease;
}

.back-link:hover {
    color: var(--navy);
    gap: 0.6rem;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
    background: var(--navy);
    border-top: 2px solid var(--teal);
    padding: 3rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    margin-bottom: 0;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--teal);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--teal);
}

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 680px;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(21, 34, 56, 0.15);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    animation: cookieIn 0.5s ease-out 1s both;
}

@keyframes cookieIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner.hidden { display: none; }

.cookie-text {
    flex: 1;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a { color: var(--teal); text-decoration: underline; }

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-accept { background: var(--navy); color: #ffffff; }
.cookie-btn-reject { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }

/* ── Pricing cards ─────────────────────────────────────────── */
.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
}

.pricing-card-popular {
    border-color: var(--teal);
    box-shadow: 0 8px 32px rgba(14, 165, 184, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.pricing-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-min {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: var(--text);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.pricing-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.pricing-includes {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.pricing-note {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-style: italic;
}

.pricing-hero {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: center;
    border: 2px solid var(--teal);
    box-shadow: 0 8px 32px rgba(14, 165, 184, 0.15);
}

.pricing-hero .pricing-amount {
    font-size: 3rem;
}

.module-card {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.module-card h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--navy);
}

.module-card .module-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
}

.module-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-presets {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modules-section-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

/* ── Comparison table ──────────────────────────────────────── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.comparison-table thead th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.comparison-popular {
    background: var(--teal) !important;
}

.comparison-category td {
    background: rgba(14, 165, 184, 0.06);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
    padding: 0.6rem 1rem;
}

.comparison-table tbody tr:hover {
    background: rgba(14, 165, 184, 0.03);
}

.comparison-table svg {
    display: inline-block;
    vertical-align: middle;
}

/* ── Navbar dropdown ───────────────────────────────────────── */
.navbar-dropdown {
    position: relative;
}

.navbar-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.navbar-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-top: 2px;
}

.navbar-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--navbar-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    padding: 0.4rem 0;
    z-index: 101;
}

.navbar-dropdown:hover .navbar-dropdown-menu {
    display: block;
}

.navbar-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text);
    border-radius: 0;
}

.navbar-dropdown-menu a:hover {
    background: rgba(14, 165, 184, 0.08);
    color: var(--teal);
}

/* ══════════════════════════════════════════════════════════════
   LANDING PAGE — Home-specific styles (index.html only)
   All classes prefixed with "landing-" to avoid collisions
   ══════════════════════════════════════════════════════════════ */

/* ── Landing Hero ─────────────────────────────────────────── */
.landing-hero {
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 10% 60%, rgba(14, 165, 184, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 30%, rgba(46, 196, 162, 0.05) 0%, transparent 45%);
}

.landing-hero__bg-shape {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 184, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.landing-hero__split {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.landing-hero__content {
    flex: 0 0 55%;
    min-width: 0;
}

.landing-hero__visual {
    flex: 1;
    min-width: 0;
    position: relative;
}

.landing-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease-out both;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.landing-hero__highlight {
    background: linear-gradient(90deg, var(--teal), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 0 1.5rem;
    animation: fadeUp 0.8s ease-out 0.15s both;
    line-height: 1.7;
}

.landing-hero__buttons {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.8s ease-out 0.3s both;
}

.landing-hero__trust {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    animation: fadeUp 0.8s ease-out 0.45s both;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.landing-hero__trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.landing-hero__img-wrapper {
    position: relative;
}

.landing-hero__blob {
    position: absolute;
    top: -12px;
    left: -16px;
    right: -12px;
    bottom: -12px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(14, 165, 184, 0.10) 0%, rgba(46, 196, 162, 0.06) 50%, rgba(245, 166, 35, 0.04) 100%);
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite alternate;
}

@keyframes blobMorph {
    0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25%  { border-radius: 58% 42% 55% 45% / 56% 45% 55% 44%; }
    50%  { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75%  { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 40% 60% 65% 35% / 45% 55% 45% 55%; }
}

.landing-hero__image {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(21, 34, 56, 0.14), 0 6px 16px rgba(21, 34, 56, 0.06);
    animation: fadeUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

/* ── Landing Products ─────────────────────────────────────── */
.landing-products {
    padding: 3.5rem 0 3rem;
}

/* 4-col compact grid */
.landing-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.landing-products__compact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.landing-products__compact-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.landing-products__compact-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
}

.landing-products__compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.landing-products__compact-card:hover .landing-products__compact-image img {
    transform: scale(1.04);
}

.landing-products__compact-body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.landing-products__compact-body h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--navy);
}

.landing-products__compact-body p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    flex: 1;
    line-height: 1.6;
}

/* "Descubrir ->" link style */
.landing-products__link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color var(--transition);
}

.landing-products__link:hover {
    color: var(--navy);
}

.landing-products__link--light {
    color: var(--orange);
}

.landing-products__link--light:hover {
    color: #ffffff;
}

/* Dark variant for vertical-solutions card */
.landing-products__compact-card--dark {
    background: var(--navy);
    border-color: var(--navy-light);
}

.landing-products__compact-card--dark:hover {
    border-color: var(--orange);
}

.landing-products__compact-card--dark .landing-products__compact-image {
    background: linear-gradient(135deg, #1e3252, #152238);
}

.landing-products__compact-card--dark .landing-products__compact-body h3 {
    color: #ffffff;
}

.landing-products__compact-card--dark .landing-products__compact-body p {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Wave separators ──────────────────────────────────────── */
.landing-wave {
    line-height: 0;
    overflow: hidden;
}

.landing-wave svg {
    width: 100%;
    height: 36px;
    display: block;
}

.landing-wave--to-navy {
    margin-top: -1px;
    background: var(--bg);
}

.landing-wave--from-navy {
    margin-bottom: -1px;
    background: var(--bg-card);
}

/* ── Landing DNA — 4-col card grid ────────────────────────── */
.landing-dna {
    background: var(--bg-card);
    border-top: none;
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0;
}

.landing-dna__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.landing-dna__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 3px solid transparent;
    transition: box-shadow var(--transition), transform var(--transition);
}

.landing-dna__card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.landing-dna__card--teal  { border-top-color: var(--teal); }
.landing-dna__card--green { border-top-color: var(--green); }
.landing-dna__card--orange { border-top-color: var(--orange); }
.landing-dna__card--navy  { border-top-color: var(--navy); }

.landing-dna__card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(21, 34, 56, 0.1);
    flex-shrink: 0;
    border: 3px solid var(--bg);
    margin-bottom: 1rem;
}

.landing-dna__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-dna__card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--navy);
}

.landing-dna__card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Landing Why — Navy background ────────────────────────── */
.landing-why {
    background: var(--navy);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.landing-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(14, 165, 184, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(46, 196, 162, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.landing-why .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.landing-why__title {
    color: #ffffff !important;
}

.landing-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.landing-why__item {
    text-align: center;
    padding: 1.25rem 1rem 1.5rem;
    border-bottom: 3px solid var(--teal);
    border-radius: 0;
}

.landing-why__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(14, 165, 184, 0.12);
    margin: 0 auto 1rem;
}

.landing-why__icon svg {
    width: 26px;
    height: 26px;
}

.landing-why__item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.landing-why__item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Landing CTA ──────────────────────────────────────────── */
.landing-cta-section {
    padding: 2.5rem 0 0;
}

.landing-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, #1a3a5c 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    margin: 0 0 1rem;
}

.landing-cta__dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.landing-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 184, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.landing-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 196, 162, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.landing-cta h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.landing-cta p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.landing-cta .btn {
    position: relative;
    z-index: 1;
}


/* ══════════════════════════════════════════════════════════════
   SHARED — Animations & Responsive (all pages)
   ══════════════════════════════════════════════════════════════ */

/* ── Animaciones ────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Legacy hero (interior pages) */
    .hero h1 { font-size: 2.8rem; }
    .hero-split { gap: 3rem; }
    .dna-feature { gap: 3rem; }
    .dna-feature-image { flex: 0 0 220px; width: 220px; height: 220px; }

    /* Landing hero */
    .landing-hero__title { font-size: 2.5rem; }
    .landing-hero__split { gap: 2.5rem; }

    /* Landing products — 2 cols on tablet */
    .landing-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Landing DNA — 2 cols on tablet */
    .landing-dna__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 2rem; }

    /* Legacy hero */
    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    .hero h1 { font-size: 2.4rem; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }

    /* Landing hero */
    .landing-hero__split {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .landing-hero__content { flex: none; }
    .landing-hero__title { font-size: 2.2rem; }
    .landing-hero__subtitle { margin-left: auto; margin-right: auto; }
    .landing-hero__buttons { justify-content: center; }
    .landing-hero__trust { justify-content: center; flex-wrap: wrap; }
    .landing-hero__visual { max-width: 400px; margin: 0 auto; }

    /* Landing products — 2 cols */
    .landing-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }

    /* Legacy DNA (interior pages) */
    .dna-feature,
    .dna-feature-reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .dna-feature-image { flex: none; width: 200px; height: 200px; margin: 0 auto; }
    .dna-feature-content .card-icon { margin: 0 auto 1.25rem; }
    .dna-feature-content p { max-width: 100%; margin-left: auto; margin-right: auto; }

    /* Landing DNA — 2 cols */
    .landing-dna__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Legacy Why */
    .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-item { padding: 2rem 1.5rem; }

    /* Landing Why */
    .landing-why__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .landing-why__item {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    body { padding-top: 80px; }

    .navbar {
        padding: 0 1.2rem;
        height: 80px;
    }

    .navbar-brand img { height: 65px; }

    .navbar-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navbar-bg);
        border-bottom: 2px solid var(--teal);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        box-shadow: 0 8px 24px rgba(21, 34, 56, 0.1);
    }

    .navbar-nav.open { display: flex; }

    .navbar-nav a {
        padding: 0.8rem 1rem;
        width: 100%;
    }

    .navbar-toggle { display: block; }

    .navbar-dropdown > a::after { display: none; }

    .navbar-dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        min-width: auto;
    }

    .grid-2,
    .grid-3,
    .grid-4 { grid-template-columns: 1fr; }

    /* Legacy hero */
    .hero { padding: 3rem 0 2.5rem; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Landing hero */
    .landing-hero { padding: 2rem 0 1.5rem; }
    .landing-hero__title { font-size: 1.8rem; }
    .landing-hero__subtitle { font-size: 0.92rem; }
    .landing-hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    .landing-hero__trust {
        font-size: 0.68rem;
        gap: 0.4rem;
    }
    .landing-hero__blob {
        top: -8px;
        left: -10px;
        right: -8px;
        bottom: -8px;
    }
    .landing-hero__image {
        max-height: 220px;
    }

    .section { padding: 3rem 0; }
    .section-why { padding: 3rem 0; }
    .section-stats { padding: 2rem 0; }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .stat-item { padding: 0.75rem 0.5rem; }
    .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.75rem; }

    /* Legacy DNA */
    .dna-feature { padding: 2rem 0; }
    .dna-feature-image { width: 180px; height: 180px; }
    .dna-feature-content h3 { font-size: 1.2rem; }
    .dna-feature-content p { font-size: 0.95rem; }

    /* Landing DNA */
    .landing-dna { padding: 2.5rem 0; }
    .landing-dna__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .landing-dna__card {
        padding: 1.25rem 1rem;
    }
    .landing-dna__card-img {
        width: 64px;
        height: 64px;
    }

    /* Landing products */
    .landing-products { padding: 2.5rem 0 2rem; }
    .landing-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .landing-products__compact-body { padding: 0.75rem 1rem 1rem; }
    .landing-products__compact-body h3 { font-size: 0.9rem; }
    .landing-products__compact-body p { font-size: 0.78rem; }

    /* Landing Why */
    .landing-why { padding: 2.5rem 0; }

    /* Landing CTA */
    .landing-cta { padding: 2.5rem 1.25rem; }
    .landing-cta h2 { font-size: 1.3rem; }

    .card-product-body { padding: 1.5rem 1.5rem 2rem; }

    .feature-row { flex-direction: column; gap: 1rem; }

    .pricing-amount { font-size: 2rem; }

    .comparison-table { font-size: 0.8rem; }
    .comparison-table th,
    .comparison-table td { padding: 0.5rem 0.4rem; }

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

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

    .footer-legal { flex-wrap: wrap; justify-content: center; }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-section { padding: 3rem 1.5rem; }
    .cta-gradient { padding: 3.5rem 1.5rem; }
    .cta-gradient h2 { font-size: 1.6rem; }

    /* Wave height on mobile */
    .landing-wave svg { height: 24px; }
}
