/* ============================================
   LANDING PAGE STYLES
   CarbonTronic - Forged Carbon Landing
   ============================================ */

/* ============================================
   CUSTOM PROPERTIES (Landing-specific)
   ============================================ */
:root {
    --color-lime-accent: #c0ff0f;
    --section-padding: clamp(60px, 10vw, 120px);
}

/* ============================================
   SCROLL ANIMATION BASE STATES
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   HERO SECTION ENHANCEMENTS
   ============================================ */

.slogan h1 .accent {
    color: var(--color-accent-primary);
    text-shadow: 0 0 40px rgba(255, 42, 42, 0.5);
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-subtext .hero-subtext-accent {
    color: var(--color-accent-secondary);
    text-shadow: 0 0 40px rgba(192, 255, 15, 0.5);
}

.hero-secondary {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary);
    opacity: 0.7;
    margin-bottom: var(--spacing-lg);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Italian flag bar */
.hero-flag-bar {
    background: linear-gradient(to right, var(--color-italy-green) 0%,
                                          var(--color-italy-white) 50%,
                                          var(--color-italy-red) 100%);
    border-radius: var(--radius-sm);
    height: 4px;
    width: 100%;
}

/* ============================================
   HERO VIDEO SECTION
   ============================================ */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(255, 42, 42, 0.15),
        0 4px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 42, 42, 0.2);
    flex-shrink: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: var(--color-background);
}

.hero-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--color-background), transparent);
    pointer-events: none;
}

/* ============================================
   HERO PREORDER SECTION
   ============================================ */
.hero-preorder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--spacing-md);
    animation: fadeUp 1.2s ease-out 0.5s both;
}

.hero-preorder-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-preorder-title .accent {
    color: var(--color-accent-primary);
    text-shadow: 0 0 40px rgba(255, 42, 42, 0.5);
}

/* ============================================
   HERO PREORDER CTA BUTTON
   ============================================ */
.hero-cta {
    margin: 2rem auto 1.5rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.btn-preorder {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff2a2a 0%, #cc0000 100%);
    color: #ffffff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 42, 42, 0.4);
    overflow: visible;
    /* Pulse/Glow Animation */
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn-preorder:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 42, 42, 0.6);
    background: linear-gradient(135deg, #ff3a3a 0%, #dd0000 100%);
    animation: none;
}

/* Badge Sconto -10% */
.btn-preorder-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #c0ff0f 0%, #9ed00a 100%);
    color: #000000;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.4rem 0.7rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(192, 255, 15, 0.5);
    animation: badgePulse 1.5s ease-in-out infinite;
    z-index: 10;
}

.btn-preorder-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-preorder-content i {
    font-size: 1.3rem;
}

/* Subtext con scarcity e price */
.hero-cta-subtext {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    font-family: 'Chakra Petch', sans-serif;
}

.hero-cta-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ff2a2a;
    background: rgba(255, 42, 42, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 42, 42, 0.3);
}

.hero-cta-scarcity i {
    font-size: 1rem;
    animation: fireFlicker 1.5s ease-in-out infinite;
}

.hero-cta-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Pulse/Glow Animation for Button */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 42, 42, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 42, 42, 0.7), 0 0 40px rgba(255, 42, 42, 0.3);
    }
}

/* Pulse Animation for Badge */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(192, 255, 15, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(192, 255, 15, 0.8);
    }
}

/* Fire Flicker Animation */
@keyframes fireFlicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

@media (max-width: 768px) {
    .btn-preorder {
        padding: 1rem 2.2rem;
        font-size: 1rem;
    }

    .btn-preorder-badge {
        top: -10px;
        right: -10px;
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-cta-scarcity {
        font-size: 0.85rem;
        padding: 0.35rem 0.8rem;
    }

    .hero-cta-price {
        font-size: 0.85rem;
    }
}

/* ============================================
   HERO NEWSLETTER FORM
   ============================================ */
.hero-newsletter {
    max-width: 460px;
    width: 100%;
    margin: var(--spacing-md) auto;
    text-align: center;
}

.hero-newsletter__label {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.hero-newsletter .newsletter-form {
    background-color: transparent;
    border: 1px solid rgba(255, 42, 42, 0.3);
    padding: 0.5rem 0.5rem;
    border-radius: 30px;
    display: flex;
    gap: 0.5rem;
    transition: border-color var(--transition-normal);
}

.hero-newsletter .newsletter-form:focus-within {
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.15);
}

.hero-newsletter .newsletter-form input[type="email"] {
    background: transparent;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    outline: none;
    border: none;
    flex: 1;
    font-family: var(--font-primary);
    padding-left: 0.5rem;
}

.hero-newsletter .newsletter-form input[type="email"]::placeholder {
    color: var(--color-text-secondary);
}

.hero-newsletter .newsletter-form button {
    background-color: var(--color-accent-primary);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 36px;
    width: 36px;
    border: none;
    padding: 0;
    transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.hero-newsletter .newsletter-form button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.hero-newsletter .newsletter-form button i {
    font-size: 0.85rem;
    color: var(--color-text-primary);
    transition: transform var(--transition-normal);
}

.hero-newsletter .newsletter-form button:hover:not(:disabled) {
    background-color: var(--color-accent-hover);
    transform: scale(1.05);
}

.hero-newsletter .newsletter-form button:hover:not(:disabled) i {
    transform: translateX(2px);
}

.hero-newsletter .privacy-consent {
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    justify-content: center;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    display: none;
    color: #aaa;
    gap: 0.5rem;
    opacity: 0;
}

.hero-newsletter .privacy-consent.show {
    transform: translateY(0);
    display: flex;
    opacity: 1;
}

.hero-newsletter .privacy-consent input[type="checkbox"] {
    accent-color: var(--color-accent-primary);
    cursor: pointer;
    height: 16px;
    width: 16px;
}

.hero-newsletter .privacy-consent label {
    line-height: 1.4;
    cursor: pointer;
}

.hero-newsletter .privacy-consent a {
    transition: color var(--transition-normal);
    text-decoration: underline;
    color: var(--color-accent-primary);
}

.hero-newsletter .privacy-consent a:hover {
    color: var(--color-accent-hover);
}

.hero-newsletter .newsletter-message {
    animation: slideIn 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    display: none;
}

.hero-newsletter .newsletter-message.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.hero-newsletter .newsletter-message.error {
    display: block;
    background-color: rgba(255, 42, 42, 0.15);
    color: #ff5555;
    border: 1px solid rgba(255, 42, 42, 0.3);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy {
    padding: var(--section-padding) var(--spacing-md);
    position: relative;
}

.philosophy__container {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy__accent-line {
    width: 60px;
    height: 4px;
    background: var(--color-lime-accent);
    margin-bottom: var(--spacing-lg);
}

.philosophy__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 1px;
}

.philosophy__statement {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

.philosophy__quote {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    line-height: 1.5;
    position: relative;
    padding-left: var(--spacing-lg);
    border-left: 3px solid var(--color-accent-primary);
    margin: 0;
}

.philosophy__quote-mark {
    color: var(--color-accent-primary);
    opacity: 0.5;
    font-size: 1.5em;
}

.highlight {
    color: var(--color-lime-accent);
}

/* ============================================
   MATERIAL SECTION
   ============================================ */
.material {
    padding: var(--section-padding) var(--spacing-md);
    background: linear-gradient(180deg,
            var(--color-background) 0%,
            var(--color-surface) 50%,
            var(--color-background) 100%);
}

.material__container {
    max-width: 1200px;
    margin: 0 auto;
}

.material__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.material__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

.material__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-text-secondary);
}

.material__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    background: linear-gradient(135deg,
            var(--color-background-gradient-start),
            var(--color-background-gradient-end));
    border: 1px solid rgba(255, 42, 42, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--color-accent-primary),
            var(--color-lime-accent));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--color-accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 42, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--color-accent-primary);
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-card__icon {
    background: rgba(255, 42, 42, 0.2);
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.3);
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.benefit-card__description {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience {
    padding: var(--section-padding) var(--spacing-md);
}

.audience__container {
    max-width: 1000px;
    margin: 0 auto;
}

.audience__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    letter-spacing: 1px;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.audience__column {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.audience__column:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.audience__column--for {
    border-top: 4px solid var(--color-lime-accent);
}

.audience__column--not {
    border-top: 4px solid var(--color-accent-primary);
}

.audience__column-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audience__column-header i {
    font-size: 1.5rem;
}

.audience__column--for .audience__column-header i {
    color: var(--color-lime-accent);
}

.audience__column--not .audience__column-header i {
    color: var(--color-accent-primary);
}

.audience__column-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.audience__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.audience__list li:last-child {
    border-bottom: none;
}

.audience__icon {
    width: 24px;
    min-width: 24px;
    color: var(--color-text-secondary);
    opacity: 0.6;
    text-align: center;
}

/* ============================================
   COMPONENTS SECTION
   ============================================ */
.components {
    padding: var(--section-padding) var(--spacing-md);
    background: linear-gradient(180deg,
            var(--color-background) 0%,
            rgba(255, 42, 42, 0.03) 50%,
            var(--color-background) 100%);
}

.components__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.components__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    letter-spacing: 1px;
}

.components__categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.component-category {
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 42, 42, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.02);
}

.component-category:hover {
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.1);
    transform: translateY(-4px);
}

.component-category__icon {
    font-size: 2rem;
    color: var(--color-accent-primary);
    margin-bottom: var(--spacing-md);
}

.component-category h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.component-category p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.components__notice {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.components__availability {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.components__statement {
    font-family: var(--font-display);
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--color-accent-primary);
    letter-spacing: 1px;
}

.components__cta {
    margin-top: var(--spacing-lg);
}

.components__cta .btn-primary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* ============================================
   DEVELOPMENT SECTION
   ============================================ */
.development {
    padding: var(--section-padding) var(--spacing-md);
}

.development__container {
    max-width: 1000px;
    margin: 0 auto;
}

.development__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.development__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

.development__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-text-secondary);
}

.development__content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.development__process,
.development__disciplines,
.development__electronics,
.development__origin {
    padding: var(--spacing-lg);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.development__process:hover,
.development__disciplines:hover,
.development__electronics:hover,
.development__origin:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.development__disciplines-title,
.development__electronics-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--color-lime-accent);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.development__italy {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg,
            var(--color-background-gradient-start),
            var(--color-background-gradient-end));
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent-primary);
}

.development__italy i {
    font-size: 1.5rem;
    color: var(--color-accent-primary);
}

.development__italy p {
    margin: 0;
    font-size: 1.1rem;
}

/* ============================================
   NEXT STEP SECTION
   ============================================ */
.next-step {
    padding: var(--section-padding) var(--spacing-md);
    background: linear-gradient(180deg,
            var(--color-background) 0%,
            var(--color-surface) 50%,
            var(--color-background) 100%);
}

.next-step__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.next-step__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    letter-spacing: 1px;
}

.next-step__cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.next-step__cta .btn-primary,
.next-step__cta .btn-secondary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1020px) {
    .material__benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .material__benefits .benefit-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .components__categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .components__categories .component-category:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .hero-video-wrapper {
        max-width: 100%;
        border-radius: var(--radius-md);
    }

    .hero-preorder-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .hero-newsletter {
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .philosophy__quote {
        padding-left: var(--spacing-md);
    }

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

    .next-step__cta {
        flex-direction: column;
        align-items: center;
    }

    .next-step__cta .btn-primary,
    .next-step__cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .hero-video-wrapper {
        border-radius: var(--radius-sm);
        box-shadow: 0 0 20px rgba(255, 42, 42, 0.1);
    }

    .hero-preorder-title {
        font-size: 1.3rem;
    }

    .hero-subtext {
        font-size: 0.9rem;
    }

    .hero-secondary {
        font-size: 0.8rem;
    }

    .benefit-card {
        padding: var(--spacing-md);
    }

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

    .material__benefits .benefit-card:nth-child(3) {
        max-width: 100%;
    }

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

    .components__categories .component-category:nth-child(3) {
        max-width: 100%;
    }

    .audience__column {
        padding: var(--spacing-md);
    }

    .component-category {
        padding: var(--spacing-md);
    }

    .philosophy__accent-line {
        width: 40px;
    }

    .development__process,
    .development__disciplines,
    .development__electronics,
    .development__origin {
        padding: var(--spacing-md);
    }

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

/* ============================================
   SPLIT-SCREEN HERO (Mega CTA Design)
   ============================================ */

/* ============================================
   HERO MEGA CTA - TECHNICAL/MINIMAL DESIGN
   Clean, professional conversion layout
   ============================================ */

/* Split Screen Container */
.hero-split-container {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1600px;
    margin: 2.5rem auto;
    min-height: 600px;
}

/* Video Section (Left) */
.hero-split-container .hero-video-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.hero-split-container .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split-container .hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 15, 15, 0.3) 100%);
}

/* CTA Section (Right) */
.hero-mega-cta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    background: rgba(15, 15, 15, 0.85);
    border-left: 1px solid rgba(255, 42, 42, 0.2);
    text-align: center;
}

/* ============================================
   BADGE FIRST PRODUCTION
   ============================================ */
.hero-badge {
    display: inline-block;
    background: transparent;
    color: var(--color-accent-secondary);
    border: 1px solid rgba(192, 255, 15, 0.3);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

.hero-badge-icon {
    display: none;
}

/* ============================================
   PRODUCT TITLE & TAGLINE
   ============================================ */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero-tagline {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   COUNTDOWN TIMER - MINIMAL GRID
   ============================================ */
.hero-countdown-section {
    margin-bottom: 2.5rem;
}

.hero-countdown-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.countdown-mega {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-box {
    background: transparent;
    border: 1px solid rgba(255, 42, 42, 0.2);
    padding: 1rem 1.5rem;
    min-width: 90px;
    transition: border-color 0.2s ease;
}

.countdown-box:hover {
    border-color: rgba(255, 42, 42, 0.4);
}

.countdown-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ff2a2a;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.countdown-label {
    display: block;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: rgba(255, 42, 42, 0.3);
    font-weight: 400;
    padding: 0 0.25rem;
}

/* ============================================
   PRICE SECTION - TECHNICAL LAYOUT
   ============================================ */
.hero-price-section {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-price-label {
    display: block;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.75rem;
    color: rgba(192, 255, 15, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

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

.hero-price-original {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    font-weight: 400;
}

.hero-price-discounted {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: #c0ff0f;
    font-weight: 700;
}

.hero-price-badge {
    background: rgba(255, 42, 42, 0.15);
    border: 1px solid rgba(255, 42, 42, 0.3);
    color: #ff2a2a;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
}

/* ============================================
   SCARCITY BADGES - MINIMAL
   ============================================ */
.hero-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-scarcity-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scarcity-badge-fire {
    background: transparent;
    border: 1px solid rgba(255, 42, 42, 0.25);
    color: rgba(255, 42, 42, 0.9);
}

.scarcity-badge-limited {
    background: transparent;
    border: 1px solid rgba(192, 255, 15, 0.25);
    color: rgba(192, 255, 15, 0.9);
}

.scarcity-badge i {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ============================================
   CTA BUTTON - CLEAN & TECHNICAL
   ============================================ */
.btn-mega-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff2a2a 0%, #cc0000 100%);
    color: #ffffff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-mega-cta::before {
    display: none;
}

.btn-mega-cta:hover {
    background: linear-gradient(135deg, #ff3a3a 0%, #dd0000 100%);
    transform: translateY(-2px);
}

.btn-mega-icon {
    font-size: 1.4rem;
}

.btn-mega-text {
    font-weight: 700;
}

.btn-mega-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.btn-mega-cta:hover .btn-mega-arrow {
    transform: translateX(5px);
}

/* ============================================
   DELIVERY INFO
   ============================================ */
.hero-delivery-info {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
}

.hero-delivery-info i {
    font-size: 1rem;
    color: rgba(192, 255, 15, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-split-container {
        flex-direction: column;
        margin: 2rem 1rem;
        min-height: auto;
    }

    .hero-split-container .hero-video-wrapper {
        min-height: 400px;
    }

    .hero-mega-cta {
        padding: 2rem 1.5rem;
        border-left: none;
        border-top: 1px solid rgba(255, 42, 42, 0.2);
    }
}

@media (max-width: 768px) {
    .hero-split-container {
        margin: 1.5rem 1rem;
    }

    .hero-split-container .hero-video-wrapper {
        min-height: 300px;
    }

    .hero-mega-cta {
        padding: 1.5rem 1rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .countdown-mega {
        gap: 0.3rem;
        grid-template-columns: auto auto auto auto auto auto auto;
    }

    .countdown-box {
        min-width: 60px;
        padding: 0.8rem 0.8rem;
    }

    .countdown-value {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
        padding: 0;
    }

    .hero-price-section {
        padding: 1.2rem 0;
    }

    .hero-price-display {
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .hero-price-original {
        font-size: 1.2rem;
    }

    .hero-price-discounted {
        font-size: 2rem;
    }

    .hero-price-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .scarcity-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .btn-mega-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-mega-icon {
        font-size: 1.2rem;
    }

    .btn-mega-arrow {
        font-size: 1rem;
    }

    .hero-delivery-info {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .countdown-mega {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-box {
        min-width: auto;
        padding: 0.6rem 0.5rem;
    }

    .countdown-value {
        font-size: 1.4rem;
    }

    .countdown-label {
        font-size: 0.55rem;
    }

    .hero-split-container { margin: 1rem 0.5rem; }
    .hero-mega-cta { padding: 1rem 0.75rem; }
}