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

/* Reset against potential WP theme styles */
html, body, header, section, footer, div, span, h1, h2, h3, h4, h5, h6, p, a, button, strong, img, ul, li {
    color: inherit;
    text-decoration: none;
    background: none;
    border: 0;
    font-family: inherit;
}

button {
    font: inherit;
    cursor: pointer;
    background: none;
    color: inherit;
}

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

:root {
    --primary: #E50914;
    --primary-dark: #B20710;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1c1c1c;
    --text-white: #ffffff;
    --text-gray: #808080;
    --text-light: #b3b3b3;
    --green: #22c55e;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ─── HEADER ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img { height: 30px; width: auto; }

.header-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.header-back:hover {
    opacity: 1;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    background-color: var(--bg-dark);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
    z-index: 3;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(10,10,10,0.9) 70%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.recommendation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.35);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
}

.recommendation .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-logo {
    display: block;
    margin: 0 auto 28px;
    max-width: 320px;
    width: 70%;
    height: auto;
}

.hero-logo.force-white {
    filter: brightness(0) invert(1);
}

.hero-ticker {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.hero-ticker strong { color: var(--text-white); }
.hero-ticker .sep { color: rgba(255,255,255,0.15); }

/* Ticker badge below hero logo */
.ticker-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    margin-bottom: 32px;
    font-size: 14px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-weight: 600;
    color: var(--text-white);
}

.ticker-badge .label { color: var(--text-gray); font-weight: 500; }
.ticker-badge strong { color: var(--text-white); font-weight: 700; }
.ticker-badge .sep { color: rgba(255,255,255,0.15); }

.target-price {
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.delay-info {
    position: absolute;
    top: 8px;
    right: -30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    font-size: 11px;
    font-weight: 700;
    cursor: help;
}

.target-price .price {
    font-size: clamp(56px, 10vw, 88px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    color: var(--text-white);
    display: block;
}

.price-change {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
}

.price-change.negative {
    color: #ef4444;
}

/* ─── LIVE PRICE SKELETON ─── */
.target-price.js-live-price .js-price,
.target-price.js-live-price .js-price-change {
    transition: opacity 0.4s ease;
}

.price-skeleton {
    display: inline-block;
    background: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0.06) 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 10px;
    color: transparent;
    user-select: none;
    line-height: 1;
}

.price-skeleton-lg {
    border-radius: 14px;
    padding: 0 4px;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.target-price.js-live-price.loaded .js-price,
.target-price.js-live-price.loaded .js-price-change {
    animation: livePriceFadeIn 0.5s ease forwards;
}

@keyframes livePriceFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.delay-info::after {
    content: 'Data mohou být zpožděna o 15 minut';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: #1e1c16;
    color: var(--text-light);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.15);
    pointer-events: none;
    z-index: 10;
}

.delay-info:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.3);
}

.btn-outline {
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(229, 9, 20, 0.06);
}

/* ─── ANALYST RATING ─── */
.analyst-rating {
    max-width: 400px;
    margin: 32px auto 0;
}

.rating-bar {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    gap: 3px;
}

.rating-segment {
    border-radius: 3px;
    opacity: 0.25;
    transform: scaleX(0);
    transform-origin: left;
}

.rating-segment.sell { background: #ef4444; }
.rating-segment.hold { background: #f59e0b; }
.rating-segment.buy { background: var(--green); }
.rating-segment.active { opacity: 1; }

.analyst-rating.animate .rating-segment.sell {
    animation: growBar 0.5s 0.8s ease-out forwards;
}
.analyst-rating.animate .rating-segment.hold {
    animation: growBar 0.6s 1.1s ease-out forwards;
}
.analyst-rating.animate .rating-segment.buy {
    animation: growBar 0.8s 1.4s ease-out forwards;
}

@keyframes growBar {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.25);
    opacity: 0;
}

.analyst-rating.animate .rating-labels {
    animation: fadeIn 0.4s 2.0s ease forwards;
}

.rating-labels .active {
    color: var(--green);
}

.rating-meta {
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-gray);
    opacity: 0;
}

.analyst-rating.animate .rating-meta {
    animation: fadeIn 0.4s 2.2s ease forwards;
}

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

/* ─── STATS ─── */
.stats {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 6px;
}

.stat-value .accent { color: var(--green); font-size: 18px; font-weight: 700; }

.stat-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ─── CHART ─── */
.chart-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

.chart-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--bg-dark);
}

.chart-wrapper iframe {
    display: block;
    width: 100%;
    height: 470px;
    border: none;
    filter: invert(0.96) hue-rotate(180deg);
}

/* ─── ABOUT ─── */
.about {
    padding: 100px 0;
    background: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.about-content p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.75;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-highlight {
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s ease;
}

.about-highlight:hover {
    border-color: rgba(229, 9, 20, 0.3);
}

.about-highlight .number {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-highlight strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.about-highlight span {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* ─── DEFINES (Pillars) ─── */
.defines {
    padding: 100px 0;
    background: var(--bg-card);
}

.defines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.define-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}

.define-card:hover {
    border-color: rgba(229, 9, 20, 0.25);
    transform: translateY(-3px);
}

.define-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(229, 9, 20, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.define-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.define-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
}

/* ─── KEY PARAMS ─── */
.params {
    padding: 100px 0;
    background: var(--bg-dark);
}

.params-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.param-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.param-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.param-card h3 {
    color: var(--text-gray);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-weight: 600;
}

.param-card .value {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.param-card p {
    color: var(--text-gray);
    font-size: 13px;
}

/* ─── TIMELINE ─── */
.timeline {
    padding: 100px 0;
    background: var(--bg-card);
}

.timeline-items {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 110px;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 70px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), rgba(229,9,20,0.1));
}

.timeline-item {
    padding: 0 0 48px 0;
    position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-card), 0 0 12px rgba(229,9,20,0.3);
}

.timeline-year {
    position: absolute;
    left: -110px;
    top: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    width: 55px;
    text-align: right;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ─── CTA ─── */
.cta-section {
    padding: 120px 0;
    background-color: var(--bg-card);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cta-overlay, linear-gradient(135deg, rgba(229,9,20,0.8) 0%, rgba(20,20,20,0.95) 100%));
    z-index: 1;
}

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

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 580px;
    margin: 0 auto 36px;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
    font-weight: 800;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ─── FOOTER ─── */
footer {
    padding: 60px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo img { height: 28px; }

.social-links { display: flex; gap: 12px; }

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover { background: var(--primary); }
.social-links img { width: 18px; height: 18px; }

.footer-text {
    width: 100%;
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.disclaimer {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 24px;
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ─── FLOATING CTA ─── */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.floating-cta .pulse {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* ─── MODAL ─── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
    background: var(--bg-card);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover { background: rgba(255,255,255,0.15); }

.modal-header {
    padding: 40px 40px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-step-indicator { display: flex; gap: 8px; margin-bottom: 24px; }

.step-dot {
    width: 40px; height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.step-dot.active { background: var(--primary); }

.modal-header h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.modal-header p { color: var(--text-gray); font-size: 14px; }

.modal-body { padding: 32px 40px 40px; }

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-group label span { color: #fff; }

.experience-options { display: grid; gap: 12px; margin-top: 12px; }

.experience-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: border 0.3s ease, background 0.3s ease;
}

.experience-option input { accent-color: var(--primary); }
.experience-option span { font-size: 14px; color: var(--text-light); }

.experience-option:hover,
.experience-option input:checked + span,
.experience-option input:checked ~ span {
    border-color: var(--primary);
    color: var(--text-white);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

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

.form-input.error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

.error-message { color: #ff4444; font-size: 12px; margin-top: 8px; }

.phone-input-group { display: flex; gap: 12px; }
.phone-prefix { width: 120px; flex-shrink: 0; }

.phone-prefix select {
    width: 100%;
    padding: 14px 12px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23808080' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.phone-prefix select:focus { outline: none; border-color: var(--primary); }
.phone-number { flex: 1; }

.form-step { display: none; }
.form-step.active { display: block; }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px; height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.checkbox-group a { color: var(--primary); text-decoration: underline; }

.modal-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.modal-btn:hover { background: var(--primary-dark); }
.modal-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.success-icon {
    width: 80px; height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.success-message { text-align: center; }
.success-message h3 { font-size: 24px; margin-bottom: 12px; }
.success-message p { color: var(--text-light); line-height: 1.6; }

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}

.error-alert {
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid #ff4444;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
    display: none;
    align-items: flex-start;
    gap: 12px;
}

.error-alert.show { display: flex; }
.error-alert-icon { color: #ff4444; font-size: 20px; line-height: 1; }
.error-alert-content { flex: 1; }
.error-alert-title { color: #ff4444; font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.error-alert-message { color: var(--text-light); font-size: 13px; line-height: 1.5; }

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }
.hero-content > *:nth-child(5) { animation-delay: 0.6s; }
.hero-content > *:nth-child(6) { animation-delay: 0.7s; }
.hero-content > *:nth-child(7) { animation-delay: 0.8s; }

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .defines-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    .header-inner { padding: 12px 16px; }
    .logo img { height: 24px; }
    .header-badge { font-size: 9px; padding: 5px 12px; }
    .hero { padding: 100px 16px 60px; }
    .hero-logo { max-width: 220px; }
    .target-price .price { font-size: 48px; letter-spacing: -2px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
    .btn { padding: 14px 24px; font-size: 11px; }
    .stats { padding: 40px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card { padding: 20px 14px; }
    .stat-value { font-size: 24px; }
    .chart-section { padding: 50px 0; }
    .chart-wrapper iframe { height: 215px; }
    .about { padding: 60px 0; }
    .section-title { font-size: 24px; }
    .defines { padding: 60px 0; }
    .params { padding: 60px 0; }
    .params-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .param-card { padding: 24px 16px; }
    .param-card .value { font-size: 20px; }
    .timeline { padding: 60px 0; }
    .timeline-items { padding-left: 80px; }
    .timeline-items::before { left: 50px; }
    .timeline-item::before { left: -34px; }
    .timeline-year { left: -80px; font-size: 12px; width: 40px; }
    .cta-section { padding: 80px 0; }
    .cta-section h2 { font-size: 28px; }
    .container { padding: 0 16px; }
}

@media (max-width: 600px) {
    .floating-cta {
        left: 16px; right: 16px; bottom: 16px;
        justify-content: center;
    }
    .hero-ticker { font-size: 12px; gap: 10px; }
    .modal-header, .modal-body { padding-left: 24px; padding-right: 24px; }
    .phone-input-group { flex-direction: column; }
    .phone-prefix { width: 100%; }
}
