/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    font-size: clamp(14px, 2.5vw, 16px);
}

html {
    scroll-behavior: smooth;
}

/* Color Variables */
:root {
    --primary-black: #000000;
    --secondary-black: #1f1f1f;
    --tertiary-black: #2d2d2d;
    --primary-red: #dc2626;
    --secondary-red: #ef4444;
    --accent-red: #fee2e2;
    --smokey-gray: #404040;
    --light-gray: #6b7280;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1f1f1f 100%);
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(220,38,38,0.2) 100%);
}

/* Utility Classes */
.container {
    max-width: min(90%, 1400px);
    margin: 0 auto;
    padding: 0 clamp(10px, 3vw, 20px);
}

/* Text and Section Header */
.text-red {
    color: var(--primary-red);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--light-gray);
    max-width: min(80%, 600px);
    margin: 0 auto;
}

/* Button Styles */
.btn {
    padding: clamp(10px, 2vw, 14px) clamp(20px, 3vw, 28px);
    border: none;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: min(100%, 300px);
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: clamp(0.8rem, 2vw, 1rem) 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(220, 38, 38, 0.1);
}

.nav-container {
    max-width: min(90%, 1400px);
    margin: 0 auto;
    padding: 0 clamp(10px, 3vw, 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 800;
    color: var(--white);
}

.temp-symbol {
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: clamp(80vh, 100vh, 100vh);
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    position: relative;
    padding-top: clamp(70px, 15vh, 80px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: min(90%, 1400px);
    margin: 0 auto;
    padding: 0 clamp(10px, 3vw, 20px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--light-gray);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}

/* Hero Visual Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.steam-animation {
    position: relative;
    width: clamp(200px, 50vw, 300px);
    height: clamp(200px, 50vw, 300px);
}

.meal-box {
    width: clamp(150px, 40vw, 200px);
    height: clamp(90px, 24vw, 120px);
    background: var(--gradient-red);
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.pull-string {
    width: 4px;
    height: clamp(30px, 8vw, 40px);
    background: var(--white);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.steam-line {
    position: absolute;
    width: 3px;
    height: clamp(40px, 12vw, 60px);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    top: -60px;
    animation: steam 2s infinite ease-in-out;
}

.steam-1 { left: 30%; animation-delay: 0s; }
.steam-2 { left: 50%; animation-delay: 0.5s; }
.steam-3 { left: 70%; animation-delay: 1s; }

@keyframes steam {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-20px); }
}

/* Revolution Section */
.revolution {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--secondary-black);
}

.revolution-text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    text-align: center;
    color: var(--light-gray);
    max-width: min(90%, 800px);
    margin: 0 auto;
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--primary-black);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    max-width: min(90%, 1000px);
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: var(--secondary-black);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--tertiary-black);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.step-icon {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    margin: 0 auto 1.5rem;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.step p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* Step Icons */
.string-pull-icon::before { content: '↓'; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: bold; color: var(--white); }
.steam-icon::before { content: '♨'; font-size: clamp(1.5rem, 4vw, 2rem); color: var(--white); }
.ready-icon::before {
  content: '✓';
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  color: var(--white);
}

.video-demo {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--secondary-black);
    position: relative;
}

.video-container {
    max-width: min(90%, 1000px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden; /* Ensures the video doesn't overflow the wrapper */
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--tertiary-black);
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(220, 38, 38, 0.3);
}

.demo-video {
    width: 100% !important; /* Ensures the video fits the container width */
    height: auto !important; /* Maintains aspect ratio */
    max-width: 800px !important; /* Matches the container's max-width */
    max-height: 450px !important; /* Proportional max-height */
    display: block;
    border-radius: 20px;
    background: var(--tertiary-black);
    min-height: clamp(200px, 50vw, 450px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
}

.video-wrapper:hover .video-overlay {
    opacity: 0;
}

.demo-video:not([data-playing]) + .video-overlay {
    opacity: 1;
}

.demo-video[data-playing] + .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: clamp(60px, 15vw, 100px);
    height: clamp(60px, 15vw, 100px);
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}

.play-icon {
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-left: 4px; /* Slight offset to center the triangle */
}

.video-description {
    text-align: center;
    max-width: min(90%, 600px);
    margin: 0 auto;
}

.video-description h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--light-gray);
    line-height: 1.7;
}

/* Video loading state */
.demo-video:not([data-loaded]) {
    background: var(--tertiary-black);
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%),
        linear-gradient(var(--tertiary-black), var(--tertiary-black));
    background-size: 200% 100%, 100% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0, 0 0; }
    100% { background-position: 200% 0, 0 0; }
}

/* Responsive adjustments for video section */
@media (max-width: 768px) {
    .video-demo {
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
    
    .demo-video {
        border-radius: 15px;
        min-height: clamp(180px, 45vw, 300px);
    }
    
    .video-overlay {
        border-radius: 15px;
    }
    
    .play-button {
        width: clamp(50px, 12vw, 80px);
        height: clamp(50px, 12vw, 80px);
    }
    
    .play-icon {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }
    
    .video-description h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }
    
    .video-description p {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    }
}

@media (max-width: 576px) {
    .video-wrapper {
        border-radius: 12px;
    }
    
    .demo-video, .video-overlay {
        border-radius: 12px;
    }
}

/* FAQ Section */
.faq {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--primary-black);
}

.faq-carousel-container {
    position: relative;
    max-width: min(90%, 900px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    background: var(--secondary-black);
    border: 1px solid var(--tertiary-black);
}

.faq-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-slide {
    min-width: 100%;
    padding: clamp(2rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
}

.faq-item {
    background: var(--tertiary-black);
    border-radius: 12px;
    border: 1px solid var(--smokey-gray);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: clamp(1rem, 3vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--tertiary-black);
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(220, 38, 38, 0.05);
}

.faq-question h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: clamp(30px, 8vw, 40px);
    height: clamp(30px, 8vw, 40px);
    background: var(--gradient-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--white);
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.3);
}

.faq-answer.active {
    max-height: 300px;
    padding: clamp(1rem, 3vw, 1.5rem);
}

.faq-answer p {
    color: var(--light-gray);
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.faq-answer.active p {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.faq-answer li {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.2s;
}

.faq-answer.active li {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ Navigation */
.faq-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(2rem, 5vw, 3rem);
    background: var(--secondary-black);
    border-top: 1px solid var(--tertiary-black);
}

.faq-nav-btn {
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
    background: var(--tertiary-black);
    border: 1px solid var(--smokey-gray);
    border-radius: 50%;
    color: var(--white);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-nav-btn:hover:not(:disabled) {
    background: var(--gradient-red);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.faq-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.faq-dots {
    display: flex;
    gap: clamp(0.5rem, 2vw, 0.8rem);
    align-items: center;
}

.faq-dot {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
    border-radius: 50%;
    background: var(--smokey-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-dot:hover {
    background: var(--secondary-red);
    transform: scale(1.2);
}

.faq-dot.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

.faq-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(16px, 4vw, 20px);
    height: clamp(16px, 4vw, 20px);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
}

/* Touch/Swipe Indicators */
.faq-carousel-container::before {
    content: '← Swipe →';
    position: absolute;
    top: clamp(0.5rem, 2vw, 1rem);
    right: clamp(1rem, 3vw, 1.5rem);
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-red);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 500;
    opacity: 0.7;
    z-index: 10;
    pointer-events: none;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-slide {
        padding: clamp(1.5rem, 4vw, 2rem);
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .faq-navigation {
        padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    }
    
    .faq-carousel-container::before {
        content: 'Swipe';
        top: clamp(0.3rem, 1.5vw, 0.5rem);
        right: clamp(0.8rem, 2vw, 1rem);
        padding: 0.2rem 0.5rem;
        font-size: clamp(0.6rem, 1.5vw, 0.7rem);
    }
    
    .faq-question h3 {
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }
    
    .faq-answer p, .faq-answer li {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
}

@media (max-width: 576px) {
    .faq-item {
        border-radius: 8px;
    }
    
    .faq-question {
        padding: clamp(0.8rem, 2.5vw, 1rem);
    }
    
    .faq-answer.active {
        padding: clamp(0.8rem, 2.5vw, 1rem);
    }
    
    .faq-toggle {
        width: clamp(25px, 6vw, 30px);
        height: clamp(25px, 6vw, 30px);
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
}

/* Intersection Observer Animation */
.faq .fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Products Section */
.products {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--secondary-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.product-card {
    background: var(--tertiary-black);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--smokey-gray);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
}

.product-image {
    height: clamp(150px, 40vw, 200px);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.biryani-bg {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
}

.combo-bg {
    background: linear-gradient(135deg, #dc2626 0%, #7c2d12 50%, #451a03 100%);
}

.thali-bg {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.product-content {
    padding: clamp(1.5rem, 4vw, 2rem);
}

.product-content h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-content li {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.product-content li::before {
    content: '•';
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefits Section */
.benefits {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--primary-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: min(90%, 1000px);
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: var(--secondary-black);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid var(--tertiary-black);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefit-card p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* Testimonials Section */
.testimonials {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--secondary-black);
}

.testimonials-container {
    position: relative;
    max-width: min(90%, 800px);
    margin: 0 auto;
    height: clamp(250px, 60vw, 300px);
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: var(--tertiary-black);
    border-radius: 16px;
    border: 1px solid var(--smokey-gray);
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.testimonial p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    color: var(--white);
    font-weight: 500;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-top: 2rem;
}

.dot {
    width: clamp(10px, 2vw, 12px);
    height: clamp(10px, 2vw, 12px);
    border-radius: 50%;
    background: var(--smokey-gray);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
}

/* Target Audience Section */
.target-audience {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--primary-black);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: min(90%, 1000px);
    margin: 0 auto;
}

.audience-card {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: var(--secondary-black);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--tertiary-black);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.audience-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.audience-card p {
    color: var(--light-gray);
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* CTA Section */
.cta {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--secondary-black);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.cta-card {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
    background: var(--tertiary-black);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--smokey-gray);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
}

.cta-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* Contact Section */
.contact {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--primary-black);
}

.contact-form {
    max-width: min(90%, 600px);
    margin: 0 auto;
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: clamp(10px, 2vw, 12px);
    border: 1px solid var(--smokey-gray);
    border-radius: 8px;
    background: var(--tertiary-black);
    color: var(--white);
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
    opacity: 0.7;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
}

.form-error {
    color: var(--primary-red);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-top: 0.25rem;
    display: none;
}

.form-group input[aria-invalid="true"] + .form-error,
.form-group textarea[aria-invalid="true"] + .form-error {
    display: block;
}

.contact-form .btn {
    margin-top: 1rem;
    width: min(100%, 200px);
    justify-self: center;
}

.contact-form .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: clamp(2rem, 6vw, 4rem) 0 clamp(1rem, 3vw, 2rem);
    border-top: 1px solid var(--tertiary-black);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-brand p {
    color: var(--light-gray);
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
}

.footer-column h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.footer-column a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.footer-column a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--tertiary-black);
    color: var(--light-gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .container, .nav-container, .hero-container {
        max-width: min(90%, 1200px);
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    .hero-description {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    }
    .products-grid, .benefits-grid, .cta-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        display: none;
    }
    .hero-buttons {
        justify-content: center;
    }
    .nav-menu {
        gap: clamp(0.5rem, 2vw, 1rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: clamp(60px, 15vh, 70px);
        left: -100%;
        width: 100%;
        height: calc(100vh - clamp(60px, 15vh, 70px));
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: clamp(1rem, 5vh, 2rem);
        transition: left 0.3s ease;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-title {
        font-size: clamp(1.6rem, 4.5vw, 2.3rem);
    }
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    .revolution-text {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    }
    .steps-container, .products-grid, .benefits-grid, .audience-grid, .cta-grid {
        grid-template-columns: 1fr;
    }
    .footer-content, .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
    .hero-description {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }
    .hero-buttons {
        flex-direction: column;
        gap: clamp(0.8rem, 2vw, 1rem);
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 250px;
    }
    .product-content h3, .benefit-card h3, .cta-card h3 {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    .testimonial h3 {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
    .testimonial p {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }
    .container, .nav-container {
        padding: 0 clamp(8px, 2vw, 12px);
    }
    .contact-form {
        gap: clamp(0.8rem, 2vw, 1rem);
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    }
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    .section-header h2 {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    }
    .steam-animation {
        width: clamp(150px, 45vw, 200px);
        height: clamp(150px, 45vw, 200px);
    }
    .meal-box {
        width: clamp(100px, 30vw, 150px);
        height: clamp(60px, 18vw, 90px);
    }
}

/* Landscape mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: clamp(60vh, 80vw, 80vh);
    }
    .nav-menu {
        height: calc(100vh - clamp(60px, 15vh, 70px));
        justify-content: center;
    }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
    .hero-title {
        font-size: clamp(3rem, 4vw, 4rem);
    }
    .hero-container {
        max-width: 1400px;
    }
    .products-grid, .benefits-grid, .cta-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Scroll animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up, .steam-line, .btn, .product-card, .benefit-card, .audience-card, .cta-card {
        transition: none;
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}