/* ============================================================
   LANDING PAGE — Descuento Sorpresa
   assets/css/landing.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&display=swap');

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

:root {
    --red:       #CC2200;
    --red-dark:  #8B0000;
    --yellow:    #F5C100;
    --navy:      #1A237E;
    --navy-dark: #0D1148;
    --orange:    #E87500;
    --purple:    #6A1B9A;
    --green:     #2E7D32;
    --white:     #FFFFFF;
    --light:     #F8F5F0;
    --text:      #1A1A1A;
    --text-muted:#666;
    --radius:    12px;
    --shadow:    0 8px 32px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body.ld-page {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}

.ld-page img { max-width: 100%; height: auto; display: block; }
body.ld-page a { text-decoration: none; color: inherit; }

.ld-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   NAV
   ============================================================ */
.ld-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.ld-nav.scrolled {
    background: var(--red-dark);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.ld-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
.ld-nav-logo img { 
    display:block;
    max-width:none; 
    height: 100px; 
    width: auto;
    transition: all .3s ease;
}
.ld-nav.scrolled .ld-nav-logo img { 
    height: 60px;
}
.ld-nav .ld-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.ld-nav .ld-nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.2s;
    letter-spacing: 0.3px;
}
.ld-nav-links a:hover { opacity: 1; }
.ld-btn-nav {
    background: var(--yellow) !important;
    color: var(--text) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    opacity: 1 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s !important;
    display: inline-block;
}
.ld-btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245,193,0,0.45);
}

/* ============================================================
   HERO
   ============================================================ */
.ld-hero {
    min-height: 100vh;
    background-color: var(--red);
    background-image: url('../images/landing/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 110px 0 60px;
    position: relative;
    overflow: hidden;
}
.ld-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(100,0,0,0.55) 0%, rgba(204,34,0,0.25) 60%, transparent 100%);
    pointer-events: none;
}
.ld-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
.ld-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--text);
    font-weight: 800;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.ld-hero-badge svg { width: 14px; height: 14px; }
.ld-hero-title {
    font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(46px, 5.5vw, 80px);
    line-height: 1.0;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 1.5px;
}
.ld-hero-title em {
    font-style: normal;
    color: var(--yellow);
}
.ld-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    font-weight: 500;
    line-height: 1.55;
    max-width: 480px;
}
.ld-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.ld-btn-primary {
    background: var(--yellow);
    color: var(--text);
    font-weight: 800;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(245,193,0,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}
.ld-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,193,0,0.55); }
body.ld-page .ld-btn-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.65);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}
body.ld-page .ld-btn-outline:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.ld-btn-primary svg, body.ld-page .ld-btn-outline svg { width: 18px; height: 18px; flex-shrink: 0; }

.ld-hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ld-hero-phone img {
    max-height: 760px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
    animation: phone-float 4.5s ease-in-out infinite;
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
}

.ld-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.22);
    flex-wrap: wrap;
}
.ld-stat { 
    text-align: center;
}
.ld-stat-number {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 40px;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: 1px;
}
.ld-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ============================================================
   SECTION UTILS
   ============================================================ */
.ld-section { padding: 80px 0; }
.ld-section-light { background: var(--light); }
.ld-section-navy  { background: var(--navy); color: #fff; }
.ld-section-dark  { background: #0D0D0D; color: #fff; }
.ld-section-red {
    background-color: var(--red);
    background-image: url('../images/landing/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.ld-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}
.ld-tag.yellow { background: var(--yellow); color: var(--text); }
.ld-tag.navy   { background: var(--navy); }

.ld-section-title {
    font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.02;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
}
.ld-section-title span { color: var(--red); }
.ld-section-title.on-dark { color: #fff; }
.ld-section-title.on-dark span { color: var(--yellow); }
.ld-section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.6;
}
.ld-section-sub.on-dark { color: rgba(255,255,255,0.75); }
.ld-section-header { margin-bottom: 48px; }
.ld-section-header.center { text-align: center; }
.ld-section-header.center .ld-section-sub { margin: 0 auto; }
.ld-section-footer { margin-top: 48px; }
.ld-section-footer.center { text-align: center; }
.ld-section-footer.center .ld-section-sub { font-size: 14px; margin: 0 auto; }

/* ============================================================
   QUÉ ES
   ============================================================ */
.ld-que-es {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.ld-que-es-phone {
    position: relative;
    display: flex;
    justify-content: center;
}
.ld-que-es-phone img {
    max-height: 700px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 24px 56px rgba(0,0,0,0.18));
    animation: phone-float 5s ease-in-out infinite;
}

/* Decorative spinning slot badge */
.ld-slot-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 130px;
}
.ld-slot-badge-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ld-slot-machine {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #3D1A00;
    border-radius: 10px;
    padding: 6px 10px 6px 10px;
}
.ld-slot-drum {
    width: 34px;
    height: 42px;
    overflow: hidden;
    border-radius: 6px;
    background: #F5EDD0;
    border: 1px solid rgba(61,26,0,0.15);
}
.ld-drum-strip {
    display: flex;
    flex-direction: column;
    will-change: transform;
    animation: drum-roll 0.3s linear infinite;
}
.ld-drum-digit {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: #3D1A00;
    font-family: 'Bebas Neue', Arial, sans-serif;
    border-bottom: 1px solid rgba(61,26,0,0.08);
    flex-shrink: 0;
}
.ld-slot-pct {
    font-size: 26px;
    font-weight: 900;
    color: var(--yellow);
    font-family: 'Bebas Neue', Arial, sans-serif;
    line-height: 1;
    margin-left: 2px;
}
@keyframes drum-roll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-420px); }
}
.ld-slot-badge-sub {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
}

/* Qué es — texto */
.ld-que-es-content {}
.ld-quick-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.ld-quick-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}
.ld-quick-benefit-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

/* ============================================================
   SIEMPRE GANAN
   ============================================================ */
.ld-siempre-ganan { padding: 0; line-height: 0; }
.ld-siempre-ganan img { width: 100%; display: block; }

/* ============================================================
   CÓMO FUNCIONA
   ============================================================ */
.ld-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.ld-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(12.5% + 35px);
    right: calc(12.5% + 35px);
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--red) 0, var(--red) 6px,
        transparent 6px, transparent 14px
    );
    z-index: 0;
}
.ld-step { text-align: center; position: relative; z-index: 1; }
.ld-step-num {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 28px;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.ld-step-num.c-red    { background: var(--red); }
.ld-step-num.c-orange { background: var(--orange); }
.ld-step-num.c-navy   { background: var(--navy); }
.ld-step-num.c-purple { background: var(--purple); }
.ld-step-num svg { width: 30px; height: 30px; }
.ld-step-title {
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 8px;
}
.ld-step-title.c-red    { color: var(--red); }
.ld-step-title.c-orange { color: var(--orange); }
.ld-step-title.c-navy   { color: var(--navy); }
.ld-step-title.c-purple { color: var(--purple); }
.ld-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   POR QUÉ FUNCIONA
   ============================================================ */
.ld-porq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ld-porq-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-height: 520px;
}
.ld-porq-img img { width: 100%; height: 100%; object-fit: cover; }
.ld-benefits { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.ld-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    background: var(--light);
    border-radius: 10px;
    border-left: 4px solid var(--red);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}
.ld-benefit:hover { transform: translateX(5px); box-shadow: 2px 0 16px rgba(204,34,0,0.1); }
.ld-benefit-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ld-benefit-icon svg { width: 18px; height: 18px; }
.ld-benefit-text { font-weight: 700; font-size: 14px; }

.ld-thought {
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    position: relative;
    margin-top: 8px;
}
.ld-thought::before {
    content: '';
    position: absolute;
    bottom: -13px; left: 32px;
    width: 0; height: 0;
    border: 13px solid transparent;
    border-top-color: var(--navy);
    border-bottom: 0;
}
.ld-thought-eyebrow {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}
.ld-thought-quote {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 28px;
    line-height: 1.1;
    color: var(--yellow);
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.ld-thought-sub { font-size: 13px; opacity: 0.75; font-style: italic; }

/* ============================================================
   VIDEO
   ============================================================ */
.ld-video-wrap {
    max-width: 820px;
    margin: 44px auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(0,0,0,0.55);
    aspect-ratio: 16 / 9;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ld-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.ld-video-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.35);
    padding: 40px;
}
.ld-video-placeholder svg { width: 72px; height: 72px; margin: 0 auto 16px; }
.ld-video-placeholder p { font-size: 15px; letter-spacing: 0.5px; }

/* ============================================================
   EL COMERCIO DEFINE
   ============================================================ */
.ld-params {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.ld-param {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ld-param:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.13);
}
.ld-param-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    font-weight: 900;
    font-family: 'Bebas Neue', Arial, sans-serif;
    color: #fff;
    flex-shrink: 0;
}
.ld-param-icon svg { display: block; width: 26px; height: 26px; }
.ld-param-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    line-height: 1.4;
}

.ld-control-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    background: var(--navy);
    border-radius: 50px;
    padding: 14px 28px;
}
.ld-control-strip svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; }
.ld-control-strip span { font-weight: 800; color: #fff; font-size: 17px; letter-spacing: 0.5px; }

.ld-tagline {
    text-align: center;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(38px, 4.5vw, 62px);
    letter-spacing: 3px;
    margin-top: 36px;
    line-height: 1;
}
.ld-tagline .t-red    { color: var(--red); }
.ld-tagline .t-yellow { color: var(--yellow); }
.ld-tagline .t-navy   { color: var(--navy); }

/* ============================================================
   SEA EL PRIMERO
   ============================================================ */
.ld-primero { text-align: center; position: relative; overflow: hidden; }
.ld-primero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(100,0,0,0.4);
    pointer-events: none;
}
.ld-primero > * { position: relative; z-index: 1; }

.ld-primero-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(46px, 5.5vw, 82px);
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    letter-spacing: 2px;
}
.ld-primero-title em { font-style: normal; color: var(--yellow); display: block; }
.ld-primero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    max-width: 520px;
    margin: 0 auto 28px;
    font-weight: 500;
}
.ld-excl-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--yellow);
    border-radius: 50px;
    padding: 12px 28px;
    margin: 12px 0 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.ld-excl-star {
    width: 40px; height: 40px;
    background: var(--red-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ld-excl-star svg { width: 22px; height: 22px; color: var(--yellow); }
.ld-excl-info { text-align: left; }
.ld-excl-main { font-weight: 800; font-size: 16px; color: var(--text); letter-spacing: 0.3px; }
.ld-excl-sec  { font-size: 13px; color: #444; font-weight: 600; }

/* ============================================================
   FORMULARIO
   ============================================================ */
.ld-form-wrap { max-width: 700px; margin: 0 auto; }
.ld-form-intro { text-align: center; margin-bottom: 40px; }
.ld-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ld-field-full { grid-column: 1 / -1; }
.ld-field { display: flex; flex-direction: column; gap: 6px; }
.ld-field label {
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    letter-spacing: 0.3px;
}
.ld-field label .req { color: var(--red); margin-left: 2px; }
.ld-field input,
.ld-field select,
.ld-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.ld-field input:focus,
.ld-field select:focus,
.ld-field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204,34,0,0.1);
}
.ld-field textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.ld-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.ld-form-turnstile { grid-column: 1 / -1; min-height: 68px; }
.ld-form-actions { grid-column: 1 / -1; text-align: center; }

.ld-btn-submit {
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 15px 52px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(204,34,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ld-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(204,34,0,0.42); }
.ld-btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.ld-btn-submit svg { width: 20px; height: 20px; }

.ld-form-msg {
    grid-column: 1 / -1;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: none;
    line-height: 1.5;
}
.ld-form-msg.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; display: block; }
.ld-form-msg.error   { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; display: block; }

/* ============================================================
   APP DOWNLOAD
   ============================================================ */
.ld-app-section { text-align: center; padding: 80px 24px; }
.ld-app-section .ld-section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }
.ld-app-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}
.ld-app-btn { display: block; transition: transform 0.2s, filter 0.2s; }
.ld-app-btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.ld-app-btn img { height: 58px; width: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.ld-footer {
    /*background: var(--navy-dark);*/
    background: #0D0D0D;
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 24px 24px;
    font-size: 13px;
    line-height: 1.6;
}
.ld-footer a { color: rgba(245,193,0,0.8); }
.ld-footer a:hover { color: var(--yellow); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.ld-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.ld-reveal.visible { opacity: 1; transform: translateY(0); }
.ld-reveal-d1 { transition-delay: 0.1s; }
.ld-reveal-d2 { transition-delay: 0.2s; }
.ld-reveal-d3 { transition-delay: 0.3s; }
.ld-reveal-d4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .ld-nav-logo img { height: 80px; }
    .ld-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
    .ld-hero-phone { display: none; }
    .ld-hero-ctas { justify-content: center; }
    .ld-hero-stats { justify-content: center; }
    .ld-hero-sub { margin: 0 auto 32px; }
    .ld-que-es, .ld-porq { grid-template-columns: 1fr; gap: 40px; }
    .ld-que-es-phone { order: -1; }
    .ld-porq-img { max-height: 360px; }
    .ld-steps { grid-template-columns: 1fr 1fr; }
    .ld-steps::before { display: none; }
    .ld-params { grid-template-columns: 1fr 1fr; }
    .ld-nav .ld-nav-links { display: none; }
    .ld-nav .ld-nav-inner { justify-content: center; }
    .ld-slot-badge { display: none; }
}

@media (max-width: 600px) {
    .ld-section { padding: 56px 0; }
    .ld-steps { grid-template-columns: 1fr; }
    .ld-params { grid-template-columns: 1fr; }
    .ld-contact-form { grid-template-columns: 1fr; }
    .ld-field-full { grid-column: 1; }
    .ld-form-turnstile { grid-column: 1; }
    .ld-form-actions { grid-column: 1; }
    .ld-form-msg { grid-column: 1; }
    .ld-hero-stats { display: flex;flex-direction: column; gap: 16px; align-items: center; }
    .ld-excl-pill { flex-direction: column; text-align: center; border-radius: 16px; }
    .ld-excl-info { text-align: center; }
    .ld-tagline { letter-spacing: 1px; }
    .ld-btn-submit { width: 100%; justify-content: center; }
}
