/* Variables */
:root {
    --primary: #FFB800;
    /* Yellow/Gold */
    --primary-dark: #E6A600;
    --dark: #0A0A0A;
    --dark-grey: #1A1A1A;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #888888;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-logo: 'Anton', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--white);
    background-image: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), url('../assets/premium_kitchen_bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 4rem;
    color: var(--white);
}

h2 {
    font-size: 3rem;
    color: var(--dark);
}

h3 {
    font-size: 2rem;
}

.highlight {
    color: var(--primary);
}

.lg-text {
    font-size: 6rem;
    display: block;
    line-height: 0.9;
    letter-spacing: -2px;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn.lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 70px;
    object-fit: contain;
    border-radius: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/premium_kitchen_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge i,
.badge svg {
    color: var(--primary);
    width: 16px;
    height: 16px;
}

.subtitle {
    color: #ccc;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 0.9rem;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-grey);
    border: 2px solid var(--primary);
    margin-right: -15px;
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 4;
}

.hero-text {
    margin-top: -3.5rem;
}

.hero-image {
    position: relative;
    width: 105%;
    max-width: 650px;
    transform: translateX(5%);
}

.hero-image.animate-on-scroll.is-visible {
    transform: translateX(5%);
}

.floating-dish {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
}

.dish-label {
    position: absolute;
    bottom: 20%;
    right: 20%;
    background: transparent;
    text-align: right;
    transform: rotate(-10deg);
    z-index: 5;
}

.dish-label .label-title {
    display: block;
    font-family: 'Brush Script MT', cursive;
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
}

.dish-label .label-subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
}

/* Torn paper effect via SVG clip-path approximation */
.torn-paper-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--dark-grey);
    z-index: 3;
    clip-path: polygon(0% 100%, 100% 100%, 100% 20%, 95% 50%, 90% 10%, 85% 60%, 80% 20%, 75% 50%, 70% 15%, 65% 55%, 60% 25%, 55% 45%, 50% 10%, 45% 60%, 40% 20%, 35% 50%, 30% 15%, 25% 60%, 20% 25%, 15% 45%, 10% 10%, 5% 50%, 0% 20%);
}

/* Stats Bar */
.stats-bar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-bar {
    background-color: var(--dark-grey);
    padding: 2.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 20px;
    transform: translateY(-50px);
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--white);
}

.stat-icon {
    background-color: rgba(255, 184, 0, 0.1);
    padding: 1rem;
    border-radius: 50%;
    color: var(--primary);
}

.stat-icon i,
.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.stat-text p {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-text span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Menu Section */
.menu-preview {
    padding: 5rem 2rem;
    background-color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.featured-dish {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    text-align: center;
}

.featured-dish img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
}

.price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 184, 0, 0.4);
    transform: rotate(-5deg);
}

.price-tag span {
    font-weight: 800;
    font-size: 0.8rem;
}

.price-tag h3 {
    font-size: 3rem;
    margin: 0;
    line-height: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.feature-box i,
.feature-box svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-box h4 {
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Carousel */
.menu-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.menu-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
    border: 1px solid #eee;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.2);
    border-color: var(--primary);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.menu-card .price {
    background: var(--primary);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 1rem;
}

.section-divider {
    color: var(--primary);
    position: relative;
}

/* Grid layout generic */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.red-icon {
    color: #ff3b3b;
}

.remember-banner {
    background-color: var(--dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.remember-tags {
    display: flex;
    gap: 1.5rem;
}

.remember-tags span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.market-opportunity {
    background-color: var(--white);
    border-radius: 30px;
    padding: 4rem;
    margin-top: 5rem;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.market-header {
    margin-bottom: 3rem;
}

.market-tag {
    display: inline-block;
    background-color: var(--dark);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 800;
    transform: rotate(-2deg);
    margin-top: 1rem;
}

.market-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
}

.market-item {
    flex: 1;
}

.market-center {
    flex: 1.5;
    background: var(--primary);
    padding: 2rem;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 8px solid var(--white);
    box-shadow: 0 0 0 2px var(--dark);
}

.market-center img {
    height: 80px;
    margin-bottom: 1rem;
}

.market-center h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin: 0;
}

.icon-circle.small {
    width: 60px;
    height: 60px;
}

.scale-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
}

.scale-feature i,
.scale-feature svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.roadmap-img-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    background: var(--dark);
}

.roadmap-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.roadmap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
}

.road-step {
    color: var(--white);
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.road-step span {
    display: block;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    line-height: 50px;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.road-step p {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    border-radius: 5px;
}

.bottom-bar {
    background: var(--dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
}

.bb-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bb-item i,
.bb-item svg {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

.bb-item h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
}

.bb-item p {
    margin: 0;
    font-size: 0.8rem;
    color: #ccc;
}

.vs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vs-table-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
}

.vs-table th,
.vs-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.vs-table th.dark-th {
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.vs-table th.yellow-th {
    background: var(--primary);
    color: var(--dark);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.vs-table th.yellow-th img {
    height: 40px;
}

.vs-badge {
    background: var(--dark);
    color: var(--primary);
    text-align: center;
    width: 60px;
    font-weight: 800;
}

.vs-table td:nth-child(2) {
    text-align: center;
    color: #ccc;
}

.vs-footer-item {
    background: var(--dark);
    color: var(--primary);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

.vs-footer-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.text-large {
    font-size: 1.2rem;
    font-weight: 600;
}

.dark-badge {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 800;
    transform: rotate(-2deg);
    margin-bottom: 2rem;
}

.snapshot-grid {
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.snap-box {
    text-align: center;
    transition: var(--transition);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 5px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.snap-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.15);
}

.snap-box i,
.snap-box svg {
    color: var(--dark);
    background: var(--primary);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.snap-box:hover i,
.snap-box:hover svg {
    background: var(--dark);
    color: var(--primary);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sys-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border: 1px solid #eee;
    border-top: 4px solid var(--primary);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.sys-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.15);
}

.sys-box i,
.sys-box svg {
    width: 44px;
    height: 44px;
    color: var(--dark);
    background: var(--primary);
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 1.2rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
    flex-shrink: 0;
}

.sys-box:hover i,
.sys-box:hover svg {
    transform: rotate(360deg);
    background: var(--dark);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.secure-text {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.light-bg {
    background-color: var(--light);
    padding: 6rem 0;
}

.info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--dark);
}

.icon-circle i {
    width: 32px;
    height: 32px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, var(--primary-dark), var(--primary), var(--primary-dark)) 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer h4 {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    letter-spacing: 1px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-brand .tagline {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.4);
}

.social-icon i,
.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links ul a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-newsletter p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 320px;
}

.newsletter-input {
    width: 100%;
    padding: 0.8rem 3.5rem 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-main);
    backdrop-filter: blur(5px);
}

.newsletter-input:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.newsletter-btn i,
.newsletter-btn svg {
    width: 16px;
    height: 16px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-contact p i,
.footer-contact p svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact p a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: var(--primary);
}

.footer-address {
    margin-bottom: 1.5rem !important;
}

.footer-map-btn {
    font-size: 0.85rem !important;
    padding: 0.5rem 1.2rem !important;
    border-color: rgba(255, 184, 0, 0.4) !important;
    color: var(--primary) !important;
    background-color: rgba(255, 184, 0, 0.05) !important;
}

.footer-map-btn:hover {
    background-color: var(--primary) !important;
    color: var(--dark) !important;
    border-color: var(--primary) !important;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-slogan {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Modal */
.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(8px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    border-radius: 24px;
    width: 92%;
    max-width: 1050px;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-top: 5px solid var(--primary);
}

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

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #4B5563;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.close-btn:hover {
    background: #0A0A0A;
    color: var(--white);
    transform: rotate(90deg);
}

.modal-layout {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Modal Left (Branding & Trust) */
.modal-left {
    background-color: var(--dark);
    color: var(--white);
    padding: 3.5rem 3rem;
    flex: 1.1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 2;
}

.modal-left-header,
.modal-left h2,
.modal-left p,
.modal-left .modal-features {
    position: relative;
    z-index: 3;
}

.modal-left h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
}

.modal-left p {
    font-family: var(--font-main);
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 0;
}

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

/* Modal Features list */
.modal-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 3;
}

.modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.modal-features li i,
.modal-features li svg {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-features li h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.modal-features li p {
    font-size: 0.9rem;
    color: #bbb;
    margin: 0;
    line-height: 1.4;
}

/* Modal Right (Form) */
.modal-right {
    padding: 3rem;
    flex: 1;
    overflow-y: auto;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

.modal-right h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.modal-right p {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Scrollbars for modal right */
.modal-right::-webkit-scrollbar {
    width: 6px;
}

.modal-right::-webkit-scrollbar-track {
    background: transparent;
}

.modal-right::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.modal-right::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Modern Input Groups with Labels */
.form-field {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin-bottom: 0.4rem;
    transition: var(--transition);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    transition: var(--transition);
}

.input-wrapper:hover {
    border-color: #D1D5DB;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.15);
}

/* Icon style */
.input-wrapper i,
.input-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    width: 18px;
    height: 18px;
    transition: var(--transition);
    pointer-events: none;
}

.input-wrapper:focus-within i,
.input-wrapper:focus-within svg {
    color: var(--primary-dark);
}

/* Text Inputs, Select and Textarea inside wrapper */
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
}

/* Select specific styling */
.input-wrapper select {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

/* Textarea specific styling */
.input-wrapper.textarea-wrapper {
    align-items: flex-start;
}

.input-wrapper.textarea-wrapper i,
.input-wrapper.textarea-wrapper svg {
    top: 16px;
    transform: none;
}

.input-wrapper textarea {
    resize: none;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

/* Custom chevron for select dropdown */
.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid #9CA3AF;
    border-bottom: 2px solid #9CA3AF;
    pointer-events: none;
    transition: var(--transition);
}

.input-wrapper.select-wrapper:focus-within::after {
    border-color: var(--primary);
}

/* Submit button & micro-animations */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn i,
.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover i,
.submit-btn:hover svg {
    transform: translate(3px, -2px);
}

.secure-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6B7280;
    margin-top: 1.2rem;
    text-align: center;
    font-family: var(--font-main);
}

.secure-text i,
.secure-text svg {
    width: 14px;
    height: 14px;
    color: #10B981;
}

.w-100 {
    width: 100%;
}

/* PDF Content Styles (Moved up to prevent cascading overrides on media queries) */
.about-section {
    padding: 6rem 0;
}

.quote-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

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

.align-items-center {
    align-items: center;
}

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

.pdf-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    border-top: 5px solid var(--primary);
    height: 100%;
    transition: var(--transition);
}

.pdf-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.12);
}

.pdf-box.dark-bg {
    background: var(--dark-grey);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 5px solid var(--primary);
}

.pdf-box.dark-bg:hover {
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.2);
}

.pdf-box.dark-bg .highlight {
    color: var(--primary);
}

.pdf-box.white-bg {
    background: var(--white);
}

.pdf-box .section-divider {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(255, 184, 0, 0.15);
    display: block;
    width: 100%;
}

.pdf-box .section-divider::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.check-list,
.icon-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.check-list li:hover {
    transform: translateX(4px);
}

.check-list li i,
.check-list li svg {
    color: #2ed573;
    background: rgba(46, 213, 115, 0.1);
    padding: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.check-list li:hover i,
.check-list li:hover svg {
    transform: scale(1.1);
    background: rgba(46, 213, 115, 0.2);
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.icon-list li:hover {
    transform: translateX(4px);
}

.icon-list li i,
.icon-list li svg {
    color: var(--primary);
    background: rgba(255, 184, 0, 0.1);
    padding: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.icon-list li:hover i,
.icon-list li:hover svg {
    transform: scale(1.1);
    background: rgba(255, 184, 0, 0.2);
}

.egg-equation {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.12) 0%, rgba(255, 184, 0, 0.03) 100%);
    border: 2px dashed var(--primary);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.05);
    transition: var(--transition);
}

.egg-equation:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.1);
}

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

.m-item {
    text-align: center;
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
}

.m-item i {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.profit-table {
    width: 100%;
    border-collapse: collapse;
}

.profit-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.profit-table td:last-child {
    text-align: right;
    font-weight: 800;
    color: var(--primary);
}

.highlight-row td {
    background: rgba(255, 184, 0, 0.1);
    font-size: 1.3rem;
    border-bottom: none;
    font-weight: 800;
}

.small-text {
    font-size: 0.8rem;
    color: #888;
}

.req-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.req-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: var(--light);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.req-row:hover {
    background: rgba(255, 184, 0, 0.08);
    transform: translateX(5px);
}

.req-row span {
    color: var(--text-light);
}

.req-row strong {
    color: var(--dark);
    font-size: 1.1rem;
}

/* Interactive & Humanized Enhancements (Moved up to prevent cascading overrides on media queries) */

/* ROI Calculator */
.roi-calculator {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.custom-slider {
    width: 100%;
    margin: 1.5rem 0;
    -webkit-appearance: none;
    height: 8px;
    background: #333;
    border-radius: 5px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.6);
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    display: flex;
    gap: 1rem;
}

.calc-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.calc-box span {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.calc-box h4 {
    font-size: 1.5rem;
    margin: 0;
}

.calc-box h3 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary);
}

.highlight-box {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--primary);
}

/* VS Toggle Switch */
.vs-toggle {
    display: inline-flex;
    background: var(--dark);
    padding: 0.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

.vs-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.vs-card i {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.vs-card.negative {
    border-top: 5px solid #ff4757;
}

.vs-card.negative i {
    color: #ff4757;
}

.vs-card.positive {
    border-top: 5px solid #2ed573;
}

.vs-card.positive i {
    color: #2ed573;
}

/* Image styling */
.rounded-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Magnetic Button helper class */
.magnetic {
    display: inline-block;
    transition: transform 0.1s ease;
}

/* Responsive adjustments */

/* ======== LARGE SCREENS: 1440px and above ======== */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }

    .nav-container {
        max-width: 1600px;
    }

    .stats-bar-wrapper {
        max-width: 1600px;
    }

    .footer-bottom {
        max-width: 1600px;
    }

    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 3.5rem;
    }

    h3 {
        font-size: 2.2rem;
    }

    .lg-text {
        font-size: 7rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    .hero-content {
        max-width: 1600px;
        gap: 5rem;
    }

    .hero-image {
        width: 110%;
        max-width: 800px;
        transform: translateX(8%);
    }

    .hero-image.animate-on-scroll.is-visible {
        transform: translateX(8%);
    }

    .floating-dish {
        max-width: none;
    }

    .info-card {
        padding: 3rem 2.5rem;
    }

    .pdf-box {
        padding: 3.5rem;
    }

    .market-opportunity {
        padding: 5rem;
    }

    .light-bg {
        padding: 7rem 0;
    }

    .btn.lg {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }

    .badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.3rem;
    }

    .check-list li,
    .icon-list li {
        font-size: 1.2rem;
    }

    .text-large {
        font-size: 1.3rem;
    }
}

/* ======== EXTRA LARGE: 1600px and above ======== */
@media (min-width: 1600px) {
    .container {
        max-width: 1800px;
    }

    .nav-container {
        max-width: 1800px;
    }

    .stats-bar-wrapper {
        max-width: 1800px;
    }

    .footer-bottom {
        max-width: 1800px;
    }

    .hero-content {
        max-width: 1800px;
    }

    .hero-image {
        width: 115%;
        max-width: 950px;
        transform: translateX(10%);
    }

    .hero-image.animate-on-scroll.is-visible {
        transform: translateX(10%);
    }

    body {
        font-size: 1.05rem;
    }

    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3.8rem;
    }

    .lg-text {
        font-size: 8rem;
    }

    .icon-circle {
        width: 90px;
        height: 90px;
    }

    .icon-circle i {
        width: 36px;
        height: 36px;
    }

    .scale-feature {
        padding: 2.5rem;
    }

    .scale-feature i {
        width: 48px;
        height: 48px;
    }

    .stat-text h3 {
        font-size: 1.8rem;
    }

    .stat-text p {
        font-size: 1rem;
    }

    .snap-box i {
        width: 48px;
        height: 48px;
    }

    .sys-box i {
        width: 48px;
        height: 48px;
    }

    .bb-item i {
        width: 36px;
        height: 36px;
    }

    .bb-item h4 {
        font-size: 1.1rem;
    }

    .vs-card {
        padding: 2.5rem;
    }

    .vs-card i {
        width: 48px;
        height: 48px;
    }

    .calc-box h3 {
        font-size: 2.5rem;
    }

    .calc-box h4 {
        font-size: 1.8rem;
    }

    .market-center {
        flex: 1.5;
    }

    .market-center img {
        height: 100px;
    }

    .market-center h4 {
        font-size: 1.4rem;
    }
}

/* ======== ULTRA WIDE: 1920px and above ======== */
@media (min-width: 1920px) {
    .container {
        max-width: 1900px;
    }

    .nav-container {
        max-width: 1900px;
        padding: 0 3rem;
    }

    .stats-bar-wrapper {
        max-width: 1900px;
    }

    .footer-bottom {
        max-width: 1900px;
    }

    .hero-content {
        max-width: 1900px;
        padding: 0 3rem;
    }

    .hero-image {
        width: 120%;
        max-width: 1100px;
        transform: translateX(12%);
    }

    .hero-image.animate-on-scroll.is-visible {
        transform: translateX(12%);
    }

    body {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 5.5rem;
    }

    h2 {
        font-size: 4rem;
    }

    h3 {
        font-size: 2.5rem;
    }

    .lg-text {
        font-size: 9rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 100px;
    }

    .stats-bar {
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .info-card {
        padding: 3.5rem 3rem;
    }

    .pdf-box {
        padding: 4rem;
    }

    .roadmap-img-placeholder {
        height: 400px;
    }

    .road-step {
        font-size: 1.4rem;
    }

    .road-step span {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.8rem;
    }

    .market-opportunity {
        padding: 5rem;
    }

    .light-bg {
        padding: 8rem 0;
    }

    .footer {
        padding: 6rem 0 3rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 1.05rem;
    }

    .brand-logo {
        height: 67px;
    }

    .btn.lg {
        padding: 1.3rem 2.8rem;
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 1.05rem;
    }
}

/* ======== HAMBURGER MENU ======== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
    order: 3;
}

.hamburger .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-overlay {
    display: none;
}

/* ======== DESKTOP: 1200px and below ======== */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .nav-cta {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .market-opportunity {
        padding: 3rem 2rem;
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-bar.grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ======== TABLET: 1024px and below ======== */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 0;
        z-index: 999;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        margin: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
        gap: 2rem;
    }

    .hero-text {
        margin-top: 0;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-proof {
        justify-content: center;
    }

    .avatars {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 500px;
        transform: translateX(0);
        margin: 0 auto;
    }

    .hero-image.animate-on-scroll.is-visible {
        transform: translateX(0);
    }

    .floating-dish {
        width: 100%;
        max-width: none;
        display: block;
    }

    .dish-label {
        right: 20%;
        bottom: 10%;
    }

    .stats-bar-wrapper {
        padding: 0 1rem;
    }

    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-bar.grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .roadmap-overlay {
        flex-direction: column;
        height: auto;
        position: static;
        background: var(--dark);
        padding: 2rem 1rem;
        border-radius: 0 0 20px 20px;
        gap: 1.5rem;
    }

    .roadmap-img-placeholder {
        height: auto;
    }

    .roadmap-img-placeholder img {
        display: none;
    }

    .market-items {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .market-item {
        flex: 1 1 40%;
        min-width: 200px;
    }

    .market-center {
        flex: 0 0 auto;
        width: 180px;
        height: 180px;
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* ======== MOBILE: 768px and below ======== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .lg-text {
        font-size: 3rem;
    }

    .container {
        padding: 0 1rem;
    }

    .light-bg {
        padding: 4rem 0;
    }

    /* Grids collapse to single column */
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-6,
    .grid-4-cols,
    .model-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem 1rem;
        gap: 1rem;
        transform: translateY(-30px);
    }

    .stats-bar .stat-item:last-child {
        grid-column: span 2;
        justify-content: center;
    }

    .stat-item {
        gap: 0.8rem;
    }

    .stat-text h3 {
        font-size: 1.2rem;
    }

    .menu-carousel {
        grid-template-columns: 1fr;
    }

    .bottom-bar {
        padding: 1.5rem;
    }

    .bottom-bar.grid-5 {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* Hero section */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 3rem;
    }

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

    .subtitle {
        font-size: 1rem;
    }

    /* Market opportunity */
    .market-opportunity {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

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

    .market-item {
        min-width: unset;
        width: 100%;
        max-width: 300px;
    }

    .market-center {
        width: 160px;
        height: 160px;
    }

    .market-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    /* Roadmap */
    .roadmap-overlay {
        padding: 1.5rem 1rem;
    }

    .road-step {
        font-size: 1rem;
    }

    .road-step span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }

    /* VS section */
    .vs-toggle {
        flex-direction: row;
    }

    .toggle-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .vs-cards .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    /* Requirements */
    .req-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* PDF boxes */
    .pdf-box {
        padding: 2rem 1.5rem;
    }

    .check-list li,
    .icon-list li {
        font-size: 1rem;
    }

    /* Snapshot */
    .snapshot-grid {
        padding: 2rem 1rem;
    }

    /* Calculator */
    .calc-results {
        flex-direction: column;
    }

    .roi-calculator {
        padding: 1.5rem;
    }

    /* Remember banner */
    .remember-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .remember-tags {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem 0;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-layout {
        flex-direction: column;
    }

    .modal-left {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .modal-left h2 {
        font-size: 1.6rem;
    }

    .modal-features {
        display: none;
    }

    .modal-right {
        padding: 2rem 1.5rem;
    }

    .close-btn {
        top: 15px;
        right: 15px;
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .close-btn:hover {
        background: var(--white);
        color: var(--dark);
    }

    .form-field {
        margin-bottom: 1rem;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 0.75rem 1rem 0.75rem 2.6rem;
        font-size: 0.9rem;
    }

    .input-wrapper i,
    .input-wrapper svg {
        width: 16px;
        height: 16px;
        left: 12px;
    }

    /* Dish label */
    .dish-label {
        right: 0;
        transform: scale(0.8);
    }

    /* System inside */
    .system-inside .grid-6 {
        grid-template-columns: 1fr 1fr;
    }

    /* Investment section */
    .section-header {
        text-align: center;
    }

    .dark-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        transform: none;
    }

    /* ROI calculator results stack vertically on mobile */
    .calc-results {
        flex-direction: column;
    }
}

/* ======== SMALL MOBILE: 480px and below ======== */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .lg-text {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .brand-logo {
        height: 48px;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .btn.lg {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

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

    .hero-content {
        padding: 0 1rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .avatar {
        width: 32px;
        height: 32px;
    }

    .avatar-count {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    /* Stats bar */
    .stats-bar {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        gap: 1.2rem;
        transform: translateY(-20px);
        border-radius: 15px;
    }

    .stats-bar .stat-item:last-child {
        grid-column: span 1;
        justify-content: flex-start;
    }

    .stat-icon {
        padding: 0.6rem;
    }

    .stat-icon i {
        width: 18px;
        height: 18px;
    }

    .stat-text h3 {
        font-size: 1rem;
    }

    .stat-text p {
        font-size: 0.75rem;
    }

    .stat-text span {
        font-size: 0.7rem;
    }

    /* Grid overrides */
    .bottom-bar.grid-5 {
        grid-template-columns: 1fr;
    }

    .system-inside .grid-6 {
        grid-template-columns: 1fr;
    }

    .vs-cards .grid-4 {
        grid-template-columns: 1fr;
    }

    .vs-toggle {
        width: 100%;
    }

    .toggle-btn {
        flex: 1;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Market center */
    .market-center {
        width: 140px;
        height: 140px;
        padding: 1rem;
    }

    .market-center img {
        height: 50px;
    }

    .market-center h4 {
        font-size: 0.9rem;
    }

    .icon-circle.small {
        width: 45px;
        height: 45px;
    }

    /* Info cards */
    .info-card {
        padding: 2rem 1.5rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        width: 24px;
        height: 24px;
    }

    /* Scale features */
    .scale-feature {
        padding: 1.5rem;
    }

    .scale-feature i {
        width: 30px;
        height: 30px;
    }

    /* Road steps */
    .road-step {
        font-size: 0.85rem;
    }

    .road-step span {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }

    .road-step p {
        font-size: 0.75rem;
    }

    /* BB items */
    .bb-item {
        gap: 0.75rem;
    }

    .bb-item i {
        width: 24px;
        height: 24px;
    }

    .bb-item h4 {
        font-size: 0.9rem;
    }

    .bb-item p {
        font-size: 0.7rem;
    }

    /* Snap boxes */
    .snap-box i {
        width: 30px;
        height: 30px;
    }

    /* Sys boxes */
    .sys-box {
        padding: 1rem;
    }

    .sys-box i {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    /* PDF boxes */
    .pdf-box {
        padding: 1.5rem 1rem;
    }

    .m-item {
        padding: 1.5rem;
    }

    /* Egg equation */
    .egg-equation {
        font-size: 0.9rem;
        padding: 1rem;
    }

    /* Calc boxes */
    .calc-box h4 {
        font-size: 1.2rem;
    }

    .calc-box h3 {
        font-size: 1.5rem;
    }

    /* Quote box */
    .quote-box h3 {
        font-size: 1.1rem;
    }

    /* Text large */
    .text-large {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-slogan {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    /* Modal */
    .modal-content {
        width: 98%;
        border-radius: 16px;
    }

    .modal-left {
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .modal-left h2 {
        font-size: 1.3rem;
    }

    .modal-right {
        padding: 1.2rem;
    }

    .modal-right h3 {
        font-size: 1.2rem;
    }

    .form-field {
        margin-bottom: 0.8rem;
    }

    .form-label {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        font-size: 0.85rem;
        padding: 0.65rem 0.8rem 0.65rem 2.4rem;
    }

    .input-wrapper i,
    .input-wrapper svg {
        width: 14px;
        height: 14px;
        left: 10px;
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
        margin-top: 1rem;
    }

    .secure-text {
        font-size: 0.75rem;
    }
}

/* ======== VERY SMALL MOBILE: 360px and below ======== */
@media (max-width: 360px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .lg-text {
        font-size: 1.8rem;
    }

    .brand-logo {
        height: 35px;
    }

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

    .stats-bar .stat-item:last-child {
        grid-column: span 1;
        justify-content: flex-start;
    }

    .vs-toggle {
        flex-direction: column;
        border-radius: 15px;
    }

    .toggle-btn {
        border-radius: 10px;
    }
}

/* End of stylesheet. Global components relocated above media queries. */

/* Spinner Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}