/* =============================================
   GRID WHOLESALE - LANDING PAGE STYLES
   ============================================= */

/* ----- VARIABLES ----- */
:root {
    --red: #af0000;
    --magenta: #810081;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gradient: linear-gradient(135deg, var(--red) 0%, var(--magenta) 100%);
    --gradient-reverse: linear-gradient(135deg, var(--magenta) 0%, var(--red) 100%);
}

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ----- UTILITIES ----- */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ----- NOISE OVERLAY ----- */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(5,5,5,0.3) 0%, 
        rgba(5,5,5,0.5) 50%,
        rgba(5,5,5,0.95) 100%);
    z-index: 1;
}

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

.logo {
    width: 280px;
    margin-bottom: 2rem;
    animation: logoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(129, 0, 129, 0.5));
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* ----- SCROLL INDICATOR ----- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gradient);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* =============================================
   BUTTONS
   ============================================= */
.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--light);
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(175, 0, 0, 0.4), 0 10px 30px rgba(129, 0, 129, 0.3);
}

.cta-primary:hover::before {
    left: 100%;
}

/* =============================================
   SECTIONS
   ============================================= */
section {
    padding: 120px 5%;
    position: relative;
}

.section-dark {
    background: var(--darker);
}

.section-gradient {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--magenta);
    border: 1px solid var(--magenta);
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section {
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(175, 0, 0, 0.1) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

/* =============================================
   CARDS
   ============================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(175, 0, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 40px rgba(175, 0, 0, 0.1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.card-text {
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* =============================================
   MODELS SECTION
   ============================================= */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.model-card {
    background: linear-gradient(145deg, rgba(175, 0, 0, 0.1) 0%, rgba(129, 0, 129, 0.1) 100%);
    border: 2px solid transparent;
    border-image: var(--gradient) 1;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.model-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.model-card:hover::after {
    opacity: 0.1;
}

.model-card > * {
    position: relative;
    z-index: 1;
}

.model-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient);
    margin-bottom: 1.5rem;
}

.model-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.model-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* =============================================
   WOLF SECTION
   ============================================= */
.wolf-section {
    text-align: center;
    position: relative;
}

.wolf-section::before {
    content: '🐺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    opacity: 0.03;
    pointer-events: none;
}

.wolf-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.wolf-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ----- FEATURES LIST ----- */
.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(175, 0, 0, 0.2);
    border-color: var(--red);
    transform: scale(1.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 500;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    text-align: center;
    background: linear-gradient(180deg, var(--darker) 0%, rgba(175, 0, 0, 0.15) 50%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-section::before {
    top: -200px;
    left: -200px;
    background: var(--red);
    opacity: 0.2;
}

.cta-section::after {
    bottom: -200px;
    right: -200px;
    background: var(--magenta);
    opacity: 0.2;
}

.cta-box {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}

/* =============================================
   CONTACT FORM SECTION
   ============================================= */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(129, 0, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.contact-form {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 3.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 0 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--light);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    outline: none;
    transition: all 0.3s ease;
    resize: none;
}

.form-group textarea {
    min-height: 120px;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--magenta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
    opacity: 1;
    transform: none;
    animation: none;
}

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

.form-submit:hover .submit-arrow {
    transform: translateX(5px);
}

/* ----- FORM SUCCESS ----- */
.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(175, 0, 0, 0.1) 0%, rgba(129, 0, 129, 0.1) 100%);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.form-success.active {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: rgba(255,255,255,0.7);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 60px 5%;
    background: var(--darker);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-logo {
    width: 180px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

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

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 32px; opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ----- SCROLL REVEAL ----- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----- GLITCH EFFECT ----- */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    -webkit-text-fill-color: var(--red);
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    -webkit-text-fill-color: var(--magenta);
}

@keyframes glitch-1 {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

@keyframes glitch-2 {
    0% { transform: translateX(0); }
    20% { transform: translateX(3px); }
    40% { transform: translateX(-3px); }
    60% { transform: translateX(3px); }
    80% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ----- TABLET (max 1024px) ----- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .wolf-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .features-list {
        gap: 15px;
    }
    
    .feature-item {
        padding: 0.8rem 1.5rem;
    }
}

/* ----- MOBILE (max 768px) ----- */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .logo {
        width: 200px;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-primary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        letter-spacing: 0.1em;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Sections */
    section {
        padding: 60px 5%;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-text {
        font-size: 0.95rem;
    }
    
    /* Models */
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .model-card {
        padding: 2.5rem 2rem;
    }
    
    .model-title {
        font-size: 2rem;
    }
    
    .model-desc {
        font-size: 1rem;
    }
    
    /* Wolf / Connectivity */
    .wolf-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .wolf-text {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .wolf-section::before {
        font-size: 200px;
    }
    
    .features-list {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 40px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 350px;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .cta-box {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-desc {
        font-size: 1rem;
    }
    
    /* Contact Form */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .form-submit {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 50px 5%;
    }
    
    .footer-logo {
        width: 150px;
    }
    
    .footer-tagline {
        font-size: 1.2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

/* ----- SMALL MOBILE (max 480px) ----- */
@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .logo {
        width: 180px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    section {
        padding: 50px 4%;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .model-card {
        padding: 2rem 1.5rem;
    }
    
    .model-title {
        font-size: 1.7rem;
    }
    
    .wolf-title {
        font-size: 1.7rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
}

/* ----- LANDSCAPE MOBILE ----- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 5%;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .logo {
        width: 150px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ----- LARGE DESKTOP (min 1400px) ----- */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 6.5rem;
    }
    
    .section-title {
        font-size: 5rem;
    }
    
    .wolf-title {
        font-size: 6rem;
    }
}
