/* ============================================
   PROPUESTA DE VALOR — Amura CMS
   Premium SaaS landing with scroll storytelling
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
    --pdv-bg: #06060B;
    --pdv-text: #F8F8F8;
    --pdv-muted: #94A3B8;
    --pdv-accent: #7C3AED;
    --pdv-accent-light: #A78BFA;
    --pdv-accent-glow: rgba(124, 58, 237, 0.3);
    --pdv-teal: #00a78a;
    --pdv-teal-glow: rgba(0, 167, 138, 0.25);
    --pdv-blue: #2563EB;
    --pdv-blue-glow: rgba(37, 99, 235, 0.2);
    --pdv-surface: rgba(255,255,255,0.03);
    --pdv-border: rgba(255,255,255,0.06);
    --pdv-radius: 20px;
    --pdv-max: 1200px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- TOPBAR ---------- */
.topbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    height: 56px;
    display: flex; align-items: center;
    padding: 0 32px;
    background: var(--theme-nav-bg, rgba(6,6,11,0.7));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pdv-border);
    transition: background-color 0.3s, border-color 0.3s;
}
.topbar-inner {
    width: 100%; max-width: var(--pdv-max);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.topbar-logo img { height: 30px; width: auto; }
.topbar-back {
    font-size: 13px; font-weight: 500;
    color: var(--pdv-muted);
    display: flex; align-items: center; gap: 6px;
    transition: color 0.2s;
}
.topbar-back:hover { color: var(--pdv-text); }
.topbar-back svg { width: 16px; height: 16px; }
.topbar-actions {
    display: flex; align-items: center; gap: 12px;
}
.topbar-cta {
    padding: 7px 18px; font-size: 13px; font-weight: 600;
    color: #fff; background: var(--pdv-accent);
    border-radius: 7px;
    transition: background 0.2s, box-shadow 0.2s;
}
.topbar-cta:hover {
    background: #5B21B6;
    box-shadow: 0 0 24px var(--pdv-accent-glow);
}

.pdv-container {
    max-width: var(--pdv-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- SCROLL REVEAL ---------- */
.pdv-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdv-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.pdv-reveal-d1 { transition-delay: 0.1s; }
.pdv-reveal-d2 { transition-delay: 0.2s; }
.pdv-reveal-d3 { transition-delay: 0.3s; }
.pdv-reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   BLOQUE 1 — HERO
   ============================================ */
.pdv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

/* Gradient background */
.pdv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 100%, rgba(0, 167, 138, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Glow orb */
.pdv-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pdv-accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: pdv-glow-pulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pdv-glow-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

/* Grid pattern */
.pdv-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

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

.pdv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pdv-accent-light);
    margin-bottom: 32px;
}

.pdv-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pdv-accent-light);
    animation: pdv-dot-pulse 2s ease-in-out infinite;
}

@keyframes pdv-dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.pdv-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

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

.pdv-hero h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--pdv-muted);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 48px;
}

.pdv-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pdv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pdv-accent), #5B21B6);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}
.pdv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--pdv-accent-glow);
}

.pdv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    background: var(--pdv-surface);
    border: 1px solid var(--pdv-border);
    color: var(--pdv-text);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}
.pdv-btn-secondary:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}

/* ============================================
   BLOQUE 2 — PROPUESTA INTRO
   ============================================ */
.pdv-intro {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 24px;
    position: relative;
}

.pdv-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--pdv-max);
    margin: 0 auto;
    width: 100%;
}

.pdv-intro-text h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.pdv-intro-text h3 span {
    color: var(--pdv-teal);
}

.pdv-intro-text p {
    font-size: 1.15rem;
    color: var(--pdv-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pdv-intro-text p strong {
    color: var(--pdv-text);
    font-weight: 600;
}

/* Visual diagram */
.pdv-intro-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdv-diagram {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

.pdv-diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--pdv-accent), var(--pdv-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    box-shadow: 0 0 60px var(--pdv-accent-glow);
    z-index: 2;
}

.pdv-diagram-node {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 18px;
    background: var(--pdv-surface);
    border: 1px solid var(--pdv-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--pdv-muted);
    transition: border-color 0.4s, box-shadow 0.4s;
    z-index: 2;
}
.pdv-diagram-node:hover {
    border-color: var(--pdv-accent);
    box-shadow: 0 0 30px var(--pdv-accent-glow);
}
.pdv-diagram-node svg {
    width: 24px;
    height: 24px;
    color: var(--pdv-accent-light);
}

.pdv-diagram-node:nth-child(2) { top: 5%; left: 50%; transform: translateX(-50%); }
.pdv-diagram-node:nth-child(3) { top: 25%; right: 2%; }
.pdv-diagram-node:nth-child(4) { bottom: 25%; right: 2%; }
.pdv-diagram-node:nth-child(5) { bottom: 5%; left: 50%; transform: translateX(-50%); }
.pdv-diagram-node:nth-child(6) { bottom: 25%; left: 2%; }
.pdv-diagram-node:nth-child(7) { top: 25%; left: 2%; }

/* Connecting lines */
.pdv-diagram-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.pdv-diagram-lines line {
    stroke: rgba(124, 58, 237, 0.15);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

/* ============================================
   BLOQUE 3 — INFRAESTRUCTURA
   ============================================ */
.pdv-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 24px;
    position: relative;
}

.pdv-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pdv-section--infra::before {
    background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
}
.pdv-section--cms::before {
    background: radial-gradient(ellipse 60% 40% at 20% 50%, rgba(0, 167, 138, 0.06) 0%, transparent 60%);
}
.pdv-section--consulting::before {
    background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
}

.pdv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--pdv-max);
    margin: 0 auto;
    width: 100%;
}

.pdv-split--reverse {
    direction: rtl;
}
.pdv-split--reverse > * {
    direction: ltr;
}

.pdv-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.pdv-section-label--purple { color: var(--pdv-accent-light); }
.pdv-section-label--teal { color: var(--pdv-teal); }
.pdv-section-label--blue { color: #60A5FA; }

.pdv-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.pdv-section-desc {
    font-size: 1.1rem;
    color: var(--pdv-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Bullets */
.pdv-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pdv-bullet {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--pdv-surface);
    border: 1px solid var(--pdv-border);
    transition: border-color 0.3s, transform 0.2s;
}
.pdv-bullet:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

.pdv-bullet-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pdv-bullet-icon--purple { background: rgba(124, 58, 237, 0.15); color: var(--pdv-accent-light); }
.pdv-bullet-icon--teal { background: rgba(0, 167, 138, 0.15); color: var(--pdv-teal); }
.pdv-bullet-icon--blue { background: rgba(37, 99, 235, 0.15); color: #60A5FA; }

.pdv-bullet-icon svg {
    width: 20px;
    height: 20px;
}

.pdv-bullet-text {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ---------- SECTION VISUALS ---------- */

/* Infra: animated nodes */
.pdv-visual-infra {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
}

.pdv-node {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--pdv-surface);
    border: 1px solid var(--pdv-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pdv-accent-light);
    animation: pdv-node-float 4s ease-in-out infinite;
}
.pdv-node svg { width: 28px; height: 28px; }

.pdv-node:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.pdv-node:nth-child(2) { top: 8%; right: 20%; animation-delay: 0.5s; }
.pdv-node:nth-child(3) { top: 40%; left: 5%; animation-delay: 1s; }
.pdv-node:nth-child(4) { top: 38%; right: 8%; animation-delay: 1.5s; }
.pdv-node:nth-child(5) { bottom: 20%; left: 20%; animation-delay: 0.3s; }
.pdv-node:nth-child(6) { bottom: 18%; right: 15%; animation-delay: 0.8s; }

/* Central hub */
.pdv-node-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--pdv-accent), #5B21B6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px var(--pdv-accent-glow);
    z-index: 2;
}
.pdv-node-hub svg { width: 36px; height: 36px; color: #fff; }

@keyframes pdv-node-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Connection lines SVG */
.pdv-node-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.pdv-node-lines line {
    stroke: rgba(124, 58, 237, 0.12);
    stroke-width: 1;
    stroke-dasharray: 6 4;
    animation: pdv-dash-move 3s linear infinite;
}
@keyframes pdv-dash-move {
    to { stroke-dashoffset: -30; }
}

/* CMS: fake dashboard */
.pdv-visual-cms {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: var(--pdv-radius);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--pdv-border);
    overflow: hidden;
    transition: box-shadow 0.4s;
}
.pdv-visual-cms:hover {
    box-shadow: 0 0 40px var(--pdv-teal-glow);
}

.pdv-cms-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--pdv-border);
}
.pdv-cms-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.pdv-cms-dot:nth-child(1) { background: #EF4444; }
.pdv-cms-dot:nth-child(2) { background: #F59E0B; }
.pdv-cms-dot:nth-child(3) { background: #22C55E; }

.pdv-cms-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pdv-cms-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pdv-cms-sidebar {
    width: 80px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.pdv-cms-sidebar-item {
    height: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
}
.pdv-cms-sidebar-item.active {
    background: var(--pdv-teal);
    opacity: 0.6;
}

.pdv-cms-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pdv-cms-block {
    height: 14px;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
}
.pdv-cms-block--title {
    width: 60%;
    height: 18px;
    background: rgba(255,255,255,0.08);
}
.pdv-cms-block--short { width: 40%; }
.pdv-cms-block--med { width: 75%; }

.pdv-cms-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}
.pdv-cms-card {
    height: 60px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--pdv-border);
    transition: border-color 0.3s, background 0.3s;
}
.pdv-cms-card:hover {
    border-color: var(--pdv-teal);
    background: rgba(0, 167, 138, 0.05);
}

/* Feature highlights on CMS */
.pdv-cms-features {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.pdv-cms-feature {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(0, 167, 138, 0.1);
    color: var(--pdv-teal);
    border: 1px solid rgba(0, 167, 138, 0.15);
}

/* Consulting: insight cards */
.pdv-visual-consulting {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pdv-insight-card {
    padding: 24px;
    border-radius: 16px;
    background: var(--pdv-surface);
    border: 1px solid var(--pdv-border);
    transition: transform 0.3s, border-color 0.3s;
    opacity: 0;
    transform: translateX(30px);
}
.pdv-insight-card.visible {
    opacity: 1;
    transform: translateX(0);
}
.pdv-insight-card:hover {
    transform: translateX(4px);
    border-color: rgba(255,255,255,0.1);
}

.pdv-insight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.pdv-insight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
}
.pdv-insight-icon svg { width: 20px; height: 20px; }

.pdv-insight-title {
    font-weight: 600;
    font-size: 1rem;
}

.pdv-insight-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}
.pdv-insight-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--pdv-blue), #60A5FA);
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdv-insight-card.visible .pdv-insight-bar-fill {
    width: var(--fill, 70%);
}

/* ============================================
   BLOQUE FINAL — CIERRE / CTA
   ============================================ */
.pdv-cta-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.pdv-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 30% 80%, rgba(0, 167, 138, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pdv-cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.pdv-cta-content p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--pdv-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pdv-cta-content h3 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.pdv-cta-content h3 span {
    background: linear-gradient(135deg, var(--pdv-accent-light), var(--pdv-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pdv-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- DIVIDER ---------- */
.pdv-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pdv-border), transparent);
    max-width: var(--pdv-max);
    margin: 0 auto;
}

/* ---------- FOOTER MINI ---------- */
.pdv-footer {
    padding: 40px 24px;
    text-align: center;
    color: var(--pdv-muted);
    font-size: 0.85rem;
}
.pdv-footer a {
    color: var(--pdv-accent-light);
    transition: color 0.2s;
}
.pdv-footer a:hover { color: var(--pdv-text); }
.pdv-footer-logo img { height: 22px; width: auto; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .topbar { padding: 0 16px; }

    .pdv-intro-inner,
    .pdv-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pdv-split--reverse {
        direction: ltr;
    }

    .pdv-hero { min-height: 90vh; padding: 100px 20px 60px; }
    .pdv-section { min-height: auto; padding: 80px 20px; }
    .pdv-intro { min-height: auto; padding: 80px 20px; }

    .pdv-diagram { max-width: 320px; }
    .pdv-visual-infra { max-width: 320px; }
    .pdv-node { width: 48px; height: 48px; border-radius: 12px; }
    .pdv-node svg { width: 20px; height: 20px; }
    .pdv-node-hub { width: 60px; height: 60px; }
    .pdv-node-hub svg { width: 28px; height: 28px; }

    .pdv-cms-cards { grid-template-columns: 1fr 1fr; }

    .pdv-intro-visual { order: -1; }

    .pdv-cta-section { min-height: auto; padding: 80px 20px; }
}

@media (max-width: 480px) {
    .pdv-hero h1 { font-size: 2rem; }
    .pdv-hero h2 { font-size: 1rem; }
    .pdv-section-title { font-size: 1.6rem; }
    .pdv-hero-ctas, .pdv-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .pdv-btn-primary, .pdv-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
