/* ==========================================================================
   ŠKODA DÍLY – Landing Pages Shared Styles
   ==========================================================================
   BLOKY:
     .top-bar          – logo nahoře (A, B, C)
     .hero             – zelený hero s maskotem (A, B)
     .steps            – kroky 1-2-3 (A)
     .promises         – karty se sliby/výhodami (B)
     .stats            – tmavá sekce s čísly (A, B)
     .process          – timeline/postup (B)
     .reviews          – karty s recenzemi (A, B)
     .review-strip     – kompaktní pruh recenzí (C)
     .bottom-cta       – spodní výzva k akci (A, B)
     .side-brand       – zelená polovina split layoutu (C)
     .side-form        – formulářová polovina (C)
     .form-*           – formulářové prvky (C)
     .sms-*            – SMS ověření (C)
     Utility: .fade-up, .fade-in, counter animace
   ========================================================================== */


/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */

:root {
    --green: #5fa819;
    --green-dark: #4a8a12;
    --green-light: #7bc62d;
    --green-bg: #f1f8e8;
    --yellow: #f2d615;
    --yellow-light: #fff8cc;
    --dark: #1a1e14;
    --gray-900: #2a2e24;
    --gray-600: #6b7260;
    --gray-400: #a3a898;
    --gray-200: #e2e5dc;
    --gray-100: #f4f5f1;
    --white: #ffffff;
    --red: #d94040;
    --radius: 16px;
    --radius-sm: 8px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}


/* ==========================================================================
   2. TOP BAR (all pages)
   ========================================================================== */

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 40px;
}

.top-logo img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.top-logo:hover img {
    transform: scale(1.05);
}

.logo-fallback {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 2px;
    background: var(--green);
    padding: 8px 20px;
    border-radius: 8px;
}


/* ==========================================================================
   3. HERO (pages A, B)
   ========================================================================== */

.hero {
    background: linear-gradient(165deg, var(--green) 0%, var(--green-dark) 60%, #3a6e0a 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 140px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 4.8rem);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--yellow);
    display: block;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-mascot {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-mascot img {
    max-height: 460px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    animation:  mascotWave 3s ease-in-out infinite;
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Mascot badge (page A) */
.mascot-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 60px;
    transform: rotate(8deg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: badgePop 0.6s 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes badgePop {
    from { opacity: 0; transform: rotate(8deg) scale(0.5); }
    to { opacity: 1; transform: rotate(8deg) scale(1); }
}


/* ==========================================================================
   4. CTA BUTTONS (all pages)
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 18px 36px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn--yellow {
    background: var(--yellow);
    color: var(--dark);
}

.btn--yellow:hover {
    background: #ffe033;
}

.btn--green {
    background: var(--green);
    color: var(--white);
}

.btn--green:hover {
    background: var(--green-dark);
}

/* Arrow icon used in buttons */
.btn-arrow {
    width: 20px;
    height: 20px;
}


/* ==========================================================================
   5. SECTION HEADERS (shared)
   ========================================================================== */

.section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 4px;
    color: var(--green);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
    color: var(--dark);
    margin-bottom: 60px;
    line-height: 1;
}

.section-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}


/* ==========================================================================
   6. STEPS – kroky 1-2-3 (page A)
   ========================================================================== */

.steps {
    padding: 100px 40px;
    background: var(--white);
    position: relative;
}

.steps-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting dashed line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--green-light),
        var(--green-light) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--green-bg);
    border: 3px solid var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--green);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.step:hover .step-number {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(95, 168, 25, 0.3);
}

.step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.step p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* ==========================================================================
   7. PROMISES – karty s výhodami (page B)
   ========================================================================== */

.promises {
    padding: 100px 40px;
    background: var(--white);
    position: relative;
}

.promises-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.promise-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 36px 24px 28px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.promise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.promise-card:hover {
    border-color: var(--green-light);
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.promise-card:hover::after {
    transform: scaleX(1);
}

.promise-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.promise-card:hover .promise-icon {
    background: var(--green);
}

.promise-card:hover .promise-icon svg {
    stroke: var(--white);
}

.promise-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--green);
    stroke-width: 2;
    fill: none;
    transition: stroke 0.4s ease;
}

.promise-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.promise-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9rem;
}


/* ==========================================================================
   8. STATS – tmavá sekce s čísly (pages A, B)
   ========================================================================== */

.stats {
    padding: 80px 40px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(95,168,25,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(242,214,21,0.05) 0%, transparent 50%);
}

.stats-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Modifier: 2 columns (page A) */
.stats-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

/* Modifier: 4 columns (page B) */
.stats-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    text-align: center;
    padding: 48px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--green);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 4.2rem);
    line-height: 1;
    color: var(--yellow);
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.stat-unit {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.stat-number[data-target] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-number.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   9. PROCESS – timeline (page B)
   ========================================================================== */

.process {
    padding: 100px 40px;
    background: var(--green-bg);
}

.process-track {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-track::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--green-light);
    border-radius: 2px;
}

.process-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-item:last-child { margin-bottom: 0; }

.process-dot {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--green-bg), 0 4px 16px rgba(95,168,25,0.25);
    transition: all 0.3s ease;
}

.process-item:hover .process-dot {
    transform: scale(1.12);
    box-shadow: 0 0 0 6px var(--green-bg), 0 8px 24px rgba(95,168,25,0.35);
}

.process-dot svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
    stroke-width: 2.5;
    fill: none;
}

.process-content {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    flex: 1;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.process-item:hover .process-content {
    border-color: var(--green-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.process-time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 4px;
}

.process-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 6px;
}

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


/* ==========================================================================
   10. REVIEWS – karty (pages A, B)
   ========================================================================== */

.reviews {
    padding: 100px 40px;
    background: var(--gray-100);
}

.reviews-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px 28px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--green-light);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--green-bg);
}

/* Featured review variant */
.review-card--featured {
    border-color: var(--green-light);
    background: linear-gradient(180deg, var(--green-bg) 0%, var(--white) 40%);
}

.review-card--featured .review-avatar {
    background: var(--green);
    color: var(--white);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--yellow);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-900);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green);
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.review-meta {
    font-size: 0.8rem;
    color: var(--gray-400);
}


/* ==========================================================================
   11. REVIEW STRIP – kompaktní pruh (page C)
   ========================================================================== */

.review-strip {
    background: var(--gray-100);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
}

.review-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 340px;
}

.review-mini-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--green);
    flex-shrink: 0;
}

.review-mini-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.review-mini-stars svg {
    width: 13px;
    height: 13px;
    fill: var(--yellow);
}

.review-mini-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    font-style: italic;
}

.review-mini-name {
    font-weight: 600;
    color: var(--dark);
    font-style: normal;
    font-size: 0.8rem;
    margin-top: 2px;
}

.review-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-200);
    flex-shrink: 0;
}


/* ==========================================================================
   12. BOTTOM CTA (pages A, B)
   ========================================================================== */

.bottom-cta {
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.bottom-cta--light {
    background: var(--green-bg);
}

.bottom-cta--white {
    background: var(--white);
}

.bottom-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.bottom-cta p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta-links {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.bottom-cta-links a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.bottom-cta-links a:hover {
    text-decoration: underline;
}


/* ==========================================================================
   13. SPLIT LAYOUT (page C)
   ========================================================================== */

.page-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left green brand side */
.side-brand {
    background: linear-gradient(165deg, var(--green) 0%, var(--green-dark) 60%, #3a6e0a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 48px;
}

.brand-logo {
    position: absolute;
    top: 28px;
    left: 36px;
    z-index: 2;
}

.brand-logo img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.brand-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 420px;
}

.brand-mascot {
    margin-bottom: 32px;
}

.brand-mascot img {
    max-height: 340px;
    width: auto;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.2));
    animation: mascotWave 3s ease-in-out infinite;
}

@keyframes mascotWave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(1deg); }
    75% { transform: translateY(-3px) rotate(-1deg); }
}

.brand-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.brand-content h1 span {
    color: var(--yellow);
}

.brand-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* Trust pills */
.trust-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 60px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
}

.trust-pill svg {
    width: 14px;
    height: 14px;
    stroke: var(--yellow);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
}


/* ==========================================================================
   14. FORM ELEMENTS (page C)
   ========================================================================== */

.side-form {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 48px;
}

.form-wrapper {
    width: 100%;
    max-width: 420px;
}

.form-header {
    margin-bottom: 36px;
}

.form-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.form-label .optional {
    font-weight: 400;
    color: var(--gray-400);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    transition: all 0.25s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(95, 168, 25, 0.1);
}

.form-input:hover:not(:focus) {
    border-color: var(--gray-400);
}

/* VIN field */
.vin-input-wrap {
    position: relative;
}

.form-input.vin {
    font-family: 'Bebas Neue', monospace;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-right: 48px;
}

.vin-counter {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-400);
    letter-spacing: 1px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.vin-counter.complete {
    color: var(--green);
}

.vin-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.vin-hint svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-400);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

/* Phone + SMS */
.phone-row {
    display: flex;
    gap: 10px;
}

.phone-input {
    flex: 1;
}

.sms-btn {
    flex-shrink: 0;
    padding: 14px 20px;
    background: var(--dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.sms-btn:hover:not(:disabled) {
    background: var(--gray-900);
    transform: translateY(-1px);
}

.sms-btn:disabled {
    background: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    transform: none;
}

.sms-btn.countdown {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
    font-variant-numeric: tabular-nums;
}

/* SMS code boxes */
.sms-code-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sms-code-input {
    width: 48px !important;
    height: 56px;
    text-align: center;
    font-family: 'Bebas Neue', monospace;
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 0;
    border-radius: var(--radius-sm);
    caret-color: var(--green);
}

.sms-code-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(95, 168, 25, 0.12);
}

.sms-code-input.filled {
    border-color: var(--green);
    background: var(--green-bg);
}

.sms-code-input.verified {
    border-color: var(--green);
    background: var(--green-bg);
    color: var(--green);
}

.sms-dash {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--gray-400);
    user-select: none;
}

.sms-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.sms-status svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-400);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.sms-status.success { color: var(--green); }
.sms-status.success svg { stroke: var(--green); }
.sms-status.error { color: var(--red); }
.sms-status.error svg { stroke: var(--red); }

.sms-group {
    animation: smsSlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes smsSlideIn {
    from { opacity: 0; transform: translateY(-10px); max-height: 0; }
    to { opacity: 1; transform: translateY(0); max-height: 200px; }
}

/* Form divider */
.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.form-divider span {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Submit */
.form-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--green);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(95, 168, 25, 0.25);
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(95, 168, 25, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit svg {
    transition: transform 0.3s ease;
}

.form-submit:hover svg {
    transform: translateX(4px);
}

/* Submit loading state */
.form-submit.loading {
    background: var(--gray-400);
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.form-submit.loading .submit-arrow { display: none; }
.form-submit.loading .submit-spinner { display: inline-block !important; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-spinner {
    animation: spin 1s linear infinite;
}

/* Form error */
.form-error {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--red);
    line-height: 1.5;
    animation: fadeIn 0.3s ease both;
}

.form-error svg {
    width: 16px;
    height: 16px;
    stroke: var(--red);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-error a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-error a:hover {
    color: var(--dark);
}

/* Success overlay */
.form-success {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s 0.1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes successPop {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--green);
    stroke-width: 2;
}

.form-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
}

.success-countdown {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.success-countdown strong {
    color: var(--green);
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
}

.form-terms {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.5;
}

.form-terms a {
    color: var(--green);
    text-decoration: none;
}

.form-terms a:hover {
    text-decoration: underline;
}

/* Benefits under form */
.form-benefits {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--green);
    stroke-width: 2.5;
    fill: none;
}

.form-catalog-link {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #888;
}

.form-catalog-link a {
    color: #5fa819;
    text-decoration: none;
    font-weight: 500;
}

.form-catalog-link a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   15. ANIMATIONS (all pages)
   ========================================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Form field stagger */
.form-group { animation: fadeIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) both; }
.form-group:nth-child(1) { animation-delay: 0.15s; }
.form-group:nth-child(2) { animation-delay: 0.25s; }
.form-group:nth-child(3) { animation-delay: 0.35s; }
.form-group:nth-child(4) { animation-delay: 0.45s; }
.form-group:nth-child(5) { animation-delay: 0.55s; }




/* ==========================================================================
   16. FOOTER
   ========================================================================== */
#footer-container {
    display: flex;
    font-family: 'Arial CE', 'Helvetica CE', Arial, helvetica, sans-serif;
    font-size: 11px;
    justify-content: center;
    padding: 60px 40px;
    color: #38660a;
    background: linear-gradient(165deg, var(--green) 0%, var(--green-dark) 80%, #3a6e0a 100%);
}

#footer-container .foot-items {
    flex-grow:1;
    max-width:260px;
    min-width:150px;
}

#footer-container a {
    color:#000;
    text-decoration:underline;
}
#footer-container a:hover {
    text-decoration:none;
}
#footer-container h2 {
    font-size:160%; color:#ff0; text-shadow:0px 1px 0px #5cab07; filter:dropshadow(color=#5cab07,offx=0,offy=1);
}
#footer-container ul {
    margin:1.25em 0; list-style:none;
}
#footer-container ul li {
    font-size:120%; line-height:150%;
}
#footer-container p {
    font-size:120%;
}
#footer-container input[type="email"] {
    border-color:#808080; color:#999; -webkit-box-shadow:0px 1px 0px 0px rgba(255,255,255,.4); box-shadow:0px 1px 0px 0px rgba(255,255,255,.4);
}
#footer-container button {
    padding: 14px 20px;
    background: var(--gray-900);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

#footer-container .foot-content {padding:0 20px;}

#footer-container .contact ul li span {display:block; float:left; width:60px; font-weight:normal;}
#footer-container .contact ul li strong {font-weight:bold; color:#1c3305;}
#footer-container .newsletter p {padding:10px 0;}
#footer-container .newsletter .domain-links {display:block; padding:2px; }
#footer-container .newsletter .domain-links a {padding:0 10px; border-left:1px solid #46a204;}
#footer-container .newsletter .domain-links a:first-child {padding-left:0; border:none;}
#footer-container .social #fb-logo {display:block; width:80px; height:30px; margin:10px 0; background:#0154a0 url('../images/icon-facebook.png') no-repeat; border:none; text-decoration:none;}
#footer-container .social strong {font-weight:normal; color:#000;}

#footer-container .foot-text {  clear:both; margin:20px 20px 0px 20px; font-size: 120%; color:#000; }

#footer-container input[type="email"] {
    padding:.5em .5em;
    background:#fff;
    border:1px solid #ccc;
    -webkit-border-radius:4px;
    border-radius:4px;
    width:150px;
    border-color:#808080;
    color:#999;
    -webkit-box-shadow:0px 1px 0px 0px rgba(255,255,255,.4);
    box-shadow:0px 1px 0px 0px rgba(255,255,255,.4);
}
#footer-container button {
    padding: .5em;
    -webkit-box-shadow:0px 1px 0px 0px #377e00;
    box-shadow:0px 1px 0px 0px #377e00;
    -webkit-border-radius:4px;
    border-radius:4px;
}
/* do not display trap */
#nws_name {
    display:none;
}


/* ==========================================================================
   16. RESPONSIVE (all pages)
   ========================================================================== */

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

@media (max-width: 960px) {
    .page-split { grid-template-columns: 1fr; }

    .side-brand {
        padding: 80px 32px 48px;
        min-height: auto;
    }

    .brand-mascot img { max-height: 240px; }
    .brand-content h1 { font-size: 2.2rem; }
    .side-form { padding: 48px 32px; }

    .review-strip {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }

    .review-divider {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 140px 24px 60px;
        gap: 40px;
    }

    .hero-text p { margin: 0 auto 32px; }
    .hero-mascot img { max-height: 300px; }
    .mascot-badge { right: 20px; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .steps-grid::before { display: none; }
    .stats-grid--2 { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }

    #footer-container {
        display:flex;
        flex-direction: column;
        align-content: center;
        padding: 40px 60px;
    }
    #footer-container .foot-items {
        text-align: center;
        padding: 10px;
        width: 100%;
        max-width: 100%;
    }
    #footer-container .foot-content {
        border: none;
    }

    #footer-container .contact ul li span {
        float:none;
        display:inline;
    }

}

@media (max-width: 600px) {
    .hero-inner { padding: 140px 20px 48px; }
    .btn { width: 100%; justify-content: center; }
    .stat-card { padding: 36px 20px; }
    .stats-grid--4 { grid-template-columns: 1fr 1fr; gap: 12px; }

    .side-brand { padding: 72px 20px 36px; }
    .brand-mascot img { max-height: 200px; }
    .brand-content h1 { font-size: 1.8rem; }
    .side-form { padding: 36px 20px; }
    .form-header h2 { font-size: 1.8rem; }

    .trust-pills { gap: 6px; }
    .trust-pill { font-size: 0.75rem; padding: 6px 12px; }

    .process-item { gap: 16px; }
    .process-dot { width: 46px; height: 46px; }
    .process-track::before { left: 22px; }

    .review-mini {
        flex-direction: column;
        text-align: center;
        max-width: 280px;
    }

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