/* CSS Variables */
:root {
    --hyster-red: #c72127;
    --hyster-black: #1A1A1A;
    --hyster-white: #FFFFFF;
    --hyster-bg-gray: #F4F4F4;
    --hyster-yellow: #FED100;
    --font-title: "bebas-neue-pro", "Bebas Neue Pro", "Bebas Neue", sans-serif;
    --font-body: "bebas-neue-pro-expanded", "bebas-neue-pro", "Bebas Neue Pro Expanded",
        "Bebas Neue Pro", "Bebas Neue", sans-serif;
    --font-button: "bebas-neue-pro-semi-expanded", "bebas-neue-pro-semiexpanded",
        "bebas-neue-pro", "Bebas Neue Pro Semiexpanded", "Bebas Neue Pro SemiExpanded",
        "Bebas Neue Pro", "Bebas Neue", sans-serif;
    --font-primary: var(--font-body);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--hyster-white);
    color: var(--hyster-dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

p {
    font-family: var(--font-body);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* CENTER EVERYTHING */
    padding: 0 20px;
}

/* Crucial for Centralization Bug Fix */
.centered-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-light {
    background-color: var(--hyster-white);
    padding: clamp(50px, 8vw, 100px) 0;
}

.section-dark {
    background-color: var(--hyster-black);
    color: var(--hyster-white);
    padding: clamp(50px, 8vw, 100px) 0;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--hyster-yellow);
    color: var(--hyster-black);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 25px;
    text-decoration: none;
}

.benefit-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.85);
    /* Glassmorphism */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, border 0.3s ease;
}

header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid var(--hyster-yellow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.mobile-faq-link {
    display: none;
}

.hyster-logo {
    display: flex;
    align-items: center;
}

.hyster-logo img {
    height: 35px;
    width: auto;
    display: block;
}

.hyster-logo.small img {
    height: 25px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-cta-mobile {
        display: none;
    }

    .header-cta-desktop {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-cta-desktop {
        display: none;
    }

    .mobile-faq-link {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .nav-cta-mobile {
        display: block;
        margin-top: 30px;
        width: 100%;
        padding: 0 10px;
    }

    .nav-cta-mobile .cta-button-header {
        display: block;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }
}

.nav-menu a:hover {
    color: var(--hyster-yellow);
}

.cta-button-header {
    background-color: var(--hyster-red);
    color: var(--hyster-black) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-button);
    text-transform: uppercase;
}

.cta-button-header:hover {
    background-color: #a01a1f;
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-color: var(--hyster-black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center execution */
    text-align: center;
    color: white;
    padding-top: 80px;
    overflow: hidden;
    /* Ensure video doesn't overflow */
}

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

/* Industrial Grid Texture */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--hyster-black) 90%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Flex center */
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(28px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
    padding: 0 10px;
}

.hero p {
    font-size: clamp(16px, 3vw, 20px);
    color: #ccc;
    margin-bottom: 40px;
    max-width: 700px;
    padding: 0 15px;
}

.hero-form-wrapper {
    width: min(900px, 100%);
    margin: 0 auto;
}

.hero-form {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: left;
}

.hero-form .form-group label {
    color: #bbb;
}

.hero-form .form-group input,
.hero-form .form-group select {
    background-color: #151515;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    font-family: var(--font-button);
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:disabled {
    background-color: #333;
    color: #666;
    border-color: transparent;
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: 0.7;
}

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

.btn-primary:hover {
    background-color: #a01a1f;
}

.btn-outline {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background-color: white;
    color: var(--hyster-black);
}

.btn-black {
    background-color: var(--hyster-red);
    color: white;
}

.btn-black:hover {
    background-color: #a01a1f;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    width: min(900px, 100%);
    padding: 18px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.countdown-label {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #bbb;
}

.countdown-mini-label {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #9a9a9a;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 8px 12px;
}

.timer-item span:first-child {
    font-family: var(--font-title);
    font-size: clamp(28px, 6vw, 56px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}

.timer-item .label {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    color: #8a8a8a;
    letter-spacing: 0.28em;
    margin-top: 10px;
}

.timer-separator {
    font-family: var(--font-title);
    font-size: clamp(24px, 4vw, 40px);
    color: var(--hyster-yellow);
    margin: 0 4px;
    line-height: 1;
    transform: translateY(-6px);
}

/* Data Bar */
.data-bar {
    background-color: var(--hyster-yellow);
    color: var(--hyster-black);
    padding: 15px 0;
}

.data-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.card {
    background: #f9f9f9;
    padding: 30px;
    border: 1px solid #eee;
    text-align: center;
    /* Center text inside card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Event Alert Box */
.event-alert-box {
    background-color: var(--hyster-yellow);
    color: var(--hyster-black);
    padding: 15px 25px;
    border-radius: 4px;
    margin: 30px auto 0;
    max-width: 600px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.event-alert-box p {
    margin: 0;
    color: var(--hyster-black);
}

.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--hyster-black);
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.main-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid #333;
}

.check-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    border-left: 3px solid var(--hyster-yellow);
    line-height: 1.4;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 50px;
    max-width: 1000px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

.carousel-slide {
    min-width: 300px;
    /* Fixed width cards */
    flex-shrink: 0;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-img {
    height: 200px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 14px;
    color: var(--hyster-medium-gray);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--hyster-black);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hyster-black);
    font-family: var(--font-button);
    text-transform: uppercase;
}

.carousel-btn:hover {
    background: var(--hyster-red);
    color: white;
    border-color: var(--hyster-red);
}

.prev {
    left: -20px;
}

.next {
    right: -20px;
}

/* Sectors */
.section-sectors {
    background-color: var(--hyster-bg-gray);
    padding: 80px 0;
}

/* Sectors Marquee */
.section-sectors {
    background-color: var(--hyster-bg-gray);
    padding: 80px 0;
    overflow: hidden;
}

.sectors-marquee {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Animation will be handled by class if we want, or default here. 
       Let's stick to simple CSS animation, assuming JS duplicates content. 
       Note: For a perfect loop with JS duplication (doubling), we typically translate 50% if we have 2 copies and they fill the screen. 
       Actually, safe bet is: track has X copies. We move by the width of 1 original set. 
       Let's assume JS creates enough copies.
    */
    animation: scroll 40s linear infinite;
}

/* Pause on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

.sector-item {
    background: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: clamp(14px, 4vw, 16px);
    color: var(--hyster-dark-gray);
    border: 1px solid #e0e0e0;
    white-space: nowrap;
    flex-shrink: 0;
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sector-item:hover {
    background: var(--hyster-yellow);
    color: var(--hyster-black);
    border-color: var(--hyster-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* We will ensure JS sets up 2 sets of items. 
           We move -50% of the total width? No. 
           If we have [Set A][Set A], total width is 2*W. 
           We move from 0 to -W. Which is -50%. 
        */
        transform: translateX(-50%);
    }
}

/* Social Proof */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--hyster-medium-gray);
}

/* CTA */
.section-cta {
    background-color: var(--hyster-black);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Diagonal texture */
.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) 10px,
            transparent 10px,
            transparent 20px);
}

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

.cta-text {
    max-width: 700px;
    margin: 20px auto 40px;
    font-size: 18px;
}

.cta-pulse {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cta-subtext {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.8;
}

/* Info */
.section-info {
    padding: clamp(80px, 12vw, 160px) 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    /* Center content of info items */
}

.info-item h4 {
    color: var(--hyster-black);
    margin: 15px 0 10px;
}

.info-icon {
    font-size: 30px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: left;
    color: inherit;
    max-width: 100%;
}

.location-text {
    font-size: 22.4px;
    line-height: 1.4;
    white-space: nowrap;
}

.location-link img {
    width: 460px;
    height: auto;
    display: block;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .location-link {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .location-text {
        white-space: normal;
    }

    .location-link img {
        width: min(460px, 100%);
    }
}

/* FAQ */
.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px 20px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] {
    border-color: var(--hyster-yellow);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-item p {
    margin-top: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.faq-item a {
    color: var(--hyster-red);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--hyster-black);
    color: #888;
    padding: 60px 0 30px;
    border-top: 5px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 12px;
    border-top: 1px solid #333;
    padding-top: 20px;
    width: 100%;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

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

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .check-list li {
        display: block;
        margin-bottom: 15px;
        text-align: left;
    }

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

@media (max-width: 768px) {
    .hyster-logo {
        font-size: 20px;
    }

    .nav-menu {
        display: none;
    }

    /* Hide desktop menu */
    .mobile-menu-btn {
        display: flex;
    }

    /* Show burger */

    .hero h1 {
        font-size: 36px;
    }

    .data-flex {
        flex-direction: column;
        gap: 5px;
    }

    .divider {
        display: none;
    }

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

    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-menu.active.show {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu.active ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .nav-menu.active a {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .carousel-btn {
        display: none;
    }

    .section-sectors {
        padding: clamp(40px, 6vw, 60px) 0;
    }

    /* Hide buttons on mobile, use swipe/scroll */
    .carousel-track-container {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .carousel-track {
        width: max-content;
    }

    .carousel-slide {
        scroll-snap-align: center;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        display: block;
    }

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

    .split-layout {
        gap: 30px;
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--hyster-black);
    color: white;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
}

.close-modal:hover {
    color: var(--hyster-yellow);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-logo {
    height: 30px;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--hyster-yellow);
}

.modal-header p {
    font-size: 13px;
    color: #888;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #777;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: 0.2s;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--hyster-yellow);
    background-color: #2a2a2a;
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.05);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* LGPD Checkbox */
.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

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

.form-group-checkbox label {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
    cursor: pointer;
}

.form-group-checkbox label a {
    color: var(--hyster-yellow);
    text-decoration: underline;
}

/* Thank You Screen */
.thank-you-screen {
    display: none;
    text-align: center;
    padding: 24px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.thank-you-screen.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--hyster-yellow);
    color: var(--hyster-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.thank-you-screen h2 {
    color: white;
    margin-bottom: 10px;
}

.thank-you-screen p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.coupon-box {
    background: rgba(255, 209, 0, 0.05);
    border: 2px dashed var(--hyster-yellow);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.coupon-box span {
    display: block;
    font-size: 10px;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.coupon-code {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    color: var(--hyster-yellow);
    letter-spacing: 2px;
}

.modal-footer-text {
    margin-top: 15px !important;
    font-size: 11px !important;
    color: #666 !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.form-feedback {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    display: none;
    padding: 10px;
    border-radius: 4px;
}

.form-feedback.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    display: block;
}

.form-feedback.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    display: block;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero-form {
        padding: 18px;
    }
}
