/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    --clr-bg-dark: #f8fafc;
    --clr-bg-card: #ffffff;
    --clr-primary: #0284c7;       /* Light Blue */
    --clr-primary-hover: #0369a1;
    --clr-primary-light: rgba(2, 132, 199, 0.08);
    --clr-secondary: #475569;     /* Slate */
    --clr-secondary-hover: #334155;
    --clr-text-light: #0f172a;
    --clr-text-muted: #475569;
    --clr-text-dark: #0f172a;
    --clr-border: rgba(15, 23, 42, 0.08);
    --clr-glass: rgba(255, 255, 255, 0.85);
    
    /* Input & Calculator Card Variables */
    --clr-input-bg: #f1f5f9;
    --clr-input-bg-focus: #e2e8f0;
    --clr-input-border: rgba(15, 23, 42, 0.12);
    --clr-calc-result-bg: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --clr-calc-result-border: rgba(2, 132, 199, 0.25);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
    --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    
    /* Layout Constants */
    --container-max-width: 1200px;
    --header-height: 80px;
}
/* ==========================================================================
   THEME OVERRIDES
   ========================================================================== */

/* Theme 4: Light Cream */
body.theme-light-cream {
    --clr-bg-dark: #f8fafc;
    --clr-bg-card: #ffffff;
    --clr-primary: #c2410c;       /* Terracotta Rust */
    --clr-primary-hover: #9a3412;
    --clr-primary-light: rgba(194, 65, 12, 0.08);
    --clr-secondary: #15803d;     /* Deep Green */
    --clr-secondary-hover: #166534;
    --clr-text-light: #0f172a;    /* Dark text for body */
    --clr-text-muted: #475569;    /* Dark text muted */
    --clr-border: rgba(15, 23, 42, 0.08);
    --clr-glass: rgba(255, 255, 255, 0.85);
    --clr-input-bg: #f1f5f9;
    --clr-input-bg-focus: #e2e8f0;
    --clr-input-border: rgba(15, 23, 42, 0.12);
    --clr-calc-result-bg: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --clr-calc-result-border: rgba(194, 65, 12, 0.25);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
    --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

/* Theme 5: Light Corporate */
body.theme-light-corporate {
    --clr-bg-dark: #f8fafc;
    --clr-bg-card: #ffffff;
    --clr-primary: #0284c7;       /* Light Blue */
    --clr-primary-hover: #0369a1;
    --clr-primary-light: rgba(2, 132, 199, 0.08);
    --clr-secondary: #475569;     /* Slate */
    --clr-secondary-hover: #334155;
    --clr-text-light: #0f172a;
    --clr-text-muted: #475569;
    --clr-border: rgba(15, 23, 42, 0.08);
    --clr-glass: rgba(255, 255, 255, 0.85);
    --clr-input-bg: #f1f5f9;
    --clr-input-bg-focus: #e2e8f0;
    --clr-input-border: rgba(15, 23, 42, 0.12);
    --clr-calc-result-bg: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --clr-calc-result-border: rgba(2, 132, 199, 0.25);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
    --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

/* Theme 6: Light Sage */
body.theme-light-sage {
    --clr-bg-dark: #fbfbfa;
    --clr-bg-card: #ffffff;
    --clr-primary: #5f7161;       /* Sage Green */
    --clr-primary-hover: #4d5d4e;
    --clr-primary-light: rgba(95, 113, 97, 0.08);
    --clr-secondary: #d4a373;     /* Earthy Sand/Terracotta */
    --clr-secondary-hover: #cc925a;
    --clr-text-light: #2c363f;
    --clr-text-muted: #6b7280;
    --clr-border: rgba(44, 54, 63, 0.08);
    --clr-glass: rgba(255, 255, 255, 0.85);
    --clr-input-bg: #f4f5f4;
    --clr-input-bg-focus: #e9ecea;
    --clr-input-border: rgba(44, 54, 63, 0.12);
    --clr-calc-result-bg: linear-gradient(135deg, #ffffff 0%, #fbfbfa 100%);
    --clr-calc-result-border: rgba(95, 113, 97, 0.25);
    --shadow-premium: 0 20px 40px -15px rgba(44, 54, 63, 0.1);
    --shadow-soft: 0 10px 30px -10px rgba(44, 54, 63, 0.05);
}

/* Specific Light Theme Overrides for Elements with hardcoded dark contexts */
.main-header.scrolled {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-drawer {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.main-footer {
    background-color: #0b0f19;
    color: #f8fafc;
}
.main-footer h4,
.main-footer a,
.main-footer p {
    color: #f8fafc;
}
.main-footer .footer-desc,
.main-footer .footer-links-grid a,
.main-footer .footer-contacts-section p {
    color: #94a3b8;
}
.main-footer a:hover {
    color: #f97316;
}
.requisites-box strong {
    color: #ffffff;
}
.btn-primary {
    color: #ffffff;
}
.menu-day-btn.active {
    color: #ffffff;
}
.theme-menu-item {
    color: #0f172a;
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
}
.theme-menu-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.theme-menu-item.active {
    background-color: var(--clr-primary-light);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}
.theme-menu-title {
    color: #475569;
}
.theme-color-preview {
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.about-image-overlay-card {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.about-image-overlay-card .overlay-author {
    color: var(--clr-primary);
}
.haccp-badge {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: var(--clr-secondary);
}
.haccp-badge .haccp-title {
    color: #0f172a;
}
.haccp-badge .haccp-sub {
    color: #475569;
}
.calc-checkbox-container:hover .checkbox-checkmark {
    border-color: var(--clr-primary);
}
.calc-checkbox:checked ~ .checkbox-checkmark::after {
    border-color: #ffffff;
}
.breakdown-price {
    color: #0f172a;
}
.results-total-box {
    background-color: rgba(194, 65, 12, 0.05);
    border: 1px solid rgba(194, 65, 12, 0.15);
}
.review-quote {
    color: rgba(194, 65, 12, 0.05);
}
.review-author-initials {
    background-color: var(--clr-primary-light);
    color: var(--clr-primary);
    border: 1px solid rgba(194, 65, 12, 0.2);
}
.faq-item.active {
    background-color: rgba(0, 0, 0, 0.01);
    border-color: rgba(194, 65, 12, 0.2);
}
.c-icon {
    background-color: rgba(0, 0, 0, 0.02);
}
.requisites-box {
    background-color: rgba(0, 0, 0, 0.01);
}
.form-agreement {
    color: #475569;
}


/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--clr-text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.align-center { align-items: center; }

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

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--clr-primary-light);
    color: var(--clr-primary);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--clr-secondary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-badge.center {
    margin-left: auto;
    margin-right: auto;
}

/* Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

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

.btn-primary {
    background-color: var(--clr-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text-light);
    border: 2px solid var(--clr-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--clr-text-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: var(--clr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-soft);
    height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.03em;
}

.logo-accent {
    color: var(--clr-primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--clr-text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.phone-link:hover {
    color: var(--clr-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text-light);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--clr-bg-card);
    z-index: 1001;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--clr-border);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.drawer-close {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    padding: 0.5rem 0;
}

.drawer-link:hover {
    color: var(--clr-text-light);
    padding-left: 0.5rem;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: auto;
}

.drawer-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.drawer-email {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(217, 119, 6, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--clr-secondary);
    border-radius: 50%;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--clr-border);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-image {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--clr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
    z-index: 3;
    animation: floating 3s ease-in-out infinite;
}

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

.floating-icon {
    font-size: 2rem;
}

.floating-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.floating-text {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    background-color: var(--clr-bg-card);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 4rem 0;
}

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

.stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: baseline;
}

.stat-suffix {
    font-size: 2.5rem;
    color: var(--clr-primary);
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    max-width: 80%;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--clr-border);
}

.about-image-overlay-card {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background-color: var(--clr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 320px;
    box-shadow: var(--shadow-soft);
}

.overlay-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.overlay-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.point-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    background-color: var(--clr-primary-light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.point-title {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.point-text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background: radial-gradient(circle at center, rgba(18, 24, 41, 0.4) 0%, var(--clr-bg-dark) 100%);
}

.service-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow: var(--shadow-premium);
}

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

.service-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--clr-primary);
    color: #fff;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--clr-border);
    padding-top: 1.25rem;
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.service-features li::before {
    content: '✓';
    color: var(--clr-secondary);
    font-weight: 700;
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-widget {
    margin-top: 3rem;
}

.menu-days-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.menu-day-btn {
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-day-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.menu-day-btn.active {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.menu-content-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.menu-card-header {
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.menu-active-day-title {
    font-size: 2rem;
    font-weight: 700;
}

.menu-download-box {
    text-align: right;
}

.menu-meal-category-title {
    font-size: 1.25rem;
    color: var(--clr-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.menu-dishes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-dish-item {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.menu-dish-bullet {
    color: var(--clr-secondary);
    font-size: 1.1rem;
    line-height: 1;
}

.menu-bottom-features {
    margin-top: 4rem;
    gap: 1.5rem;
}

.menu-feat {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-border);
    padding: 1.75rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.menu-feat:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
}

.menu-feat-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.menu-feat-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.menu-feat-text {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   STANDARDS & HACCP SECTION
   ========================================================================== */
.standards-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.standards-item {
    display: flex;
    gap: 1.5rem;
}

.std-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-secondary);
    background-color: rgba(16, 185, 129, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.std-title {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.std-text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.standards-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.standards-card-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.standards-card {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.standards-main-img {
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--clr-border);
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition-smooth);
}

.standards-card:hover .standards-main-img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.haccp-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    background-color: var(--clr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--clr-secondary);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: var(--shadow-soft);
    z-index: 3;
}

.haccp-icon {
    font-size: 2rem;
}

.haccp-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-text-light);
}

.haccp-sub {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calc-wrapper {
    gap: 3rem;
    margin-top: 3rem;
}

.calc-inputs-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.calc-group {
    margin-bottom: 2rem;
}

.calc-group:last-child {
    margin-bottom: 0;
}

.calc-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--clr-text-light);
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calc-value-display {
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 1.15rem;
}

.calc-input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    background-color: var(--clr-input-bg);
    border: 1px solid var(--clr-input-border);
    border-radius: 8px;
    color: var(--clr-text-light);
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.calc-input:focus {
    border-color: var(--clr-primary);
    background-color: var(--clr-input-bg-focus);
}

/* Custom Select Dropdown Styling */
.calc-select-wrapper {
    position: relative;
}

.calc-select-wrapper::after {
    content: '▼';
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.calc-input select {
    appearance: none;
    -webkit-appearance: none;
}

.calc-slider {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    appearance: none;
    margin: 1rem 0;
}

.calc-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--clr-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.5);
    transition: var(--transition-smooth);
}

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

.slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* Checkboxes */
.calc-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
    user-select: none;
}

.calc-checkbox-container:last-child {
    margin-bottom: 0;
}

.calc-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: relative;
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 3px;
    transition: var(--transition-smooth);
}

.calc-checkbox-container:hover .checkbox-checkmark {
    border-color: var(--clr-primary);
    background-color: rgba(255, 255, 255, 0.06);
}

.calc-checkbox:checked ~ .checkbox-checkmark {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.checkbox-checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.calc-checkbox:checked ~ .checkbox-checkmark::after {
    display: block;
}

.checkbox-checkmark::after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.checkbox-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* Results Card */
.calc-results-card {
    background: var(--clr-calc-result-bg);
    border: 1px solid var(--clr-calc-result-border);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.calc-results-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.calc-results-inner {
    width: 100%;
    position: relative;
    z-index: 2;
}

.results-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1rem;
}

.results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.breakdown-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--clr-text-light);
}

.results-total-box {
    background-color: rgba(217, 119, 6, 0.05);
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: 8px;
    padding: 1.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.total-label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.total-note {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners-section {
    background-color: var(--clr-bg-card);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.partners-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 3rem;
    position: relative;
}

.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--clr-bg-card) 0%, transparent 100%);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--clr-bg-card) 0%, transparent 100%);
}

.partners-track {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: scrollLogos 25s linear infinite;
    align-items: center;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-box {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    opacity: 0.4;
    transition: var(--transition-smooth);
    padding: 1rem 2rem;
    cursor: default;
    border: 1px solid transparent;
    border-radius: 8px;
}

.partner-logo-box:hover {
    opacity: 0.9;
    color: var(--clr-primary);
    background-color: rgba(255, 255, 255, 0.02);
    border-color: var(--clr-border);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.reviews-slider-container {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    flex: 0 0 100%;
    width: 100%;
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.review-quote {
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 7rem;
    font-family: Georgia, serif;
    color: rgba(217, 119, 6, 0.08);
    line-height: 1;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.review-author-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid var(--clr-border);
    padding-top: 1.5rem;
}

.review-author-initials {
    width: 48px;
    height: 48px;
    background-color: var(--clr-primary-light);
    color: var(--clr-primary);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.review-author-name {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}

.review-author-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.review-rating {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #f59e0b;
    display: flex;
    gap: 4px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.review-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.review-dot:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.review-dot.active {
    background-color: var(--clr-primary);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--clr-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Opened FAQ state */
.faq-item.active {
    background-color: rgba(255, 255, 255, 0.01);
    border-color: rgba(217, 119, 6, 0.2);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   CONTACTS & REQUISITES SECTION
   ========================================================================== */
.contacts-section {
    background: radial-gradient(circle at bottom right, rgba(217, 119, 6, 0.05) 0%, transparent 60%);
    border-top: 1px solid var(--clr-border);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2.5rem 0 3.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.c-icon {
    font-size: 1.75rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-border);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-title {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.15rem;
}

.c-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.c-text-link:hover {
    color: var(--clr-primary);
}

.requisites-box {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--clr-border);
    padding: 2rem;
    border-radius: 12px;
}

.req-title {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

.req-grid strong {
    color: var(--clr-text-light);
}

/* Contact Form Card */
.contact-form-wrapper {
    display: flex;
    align-items: center;
}

.contact-form-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    width: 100%;
}

.form-card-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group-row {
    gap: 1rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--clr-text-muted);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background-color: var(--clr-input-bg);
    border: 1px solid var(--clr-input-border);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--clr-primary);
    background-color: var(--clr-input-bg-focus);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.form-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.35rem;
    display: none;
}

.form-input.invalid, .form-textarea.invalid {
    border-color: #ef4444;
}

.form-agreement {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: 1.25rem;
    line-height: 1.4;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #04060d;
    border-top: 1px solid var(--clr-border);
    padding: 5rem 0 0;
}

.footer-content {
    padding-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-desc {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 90%;
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.footer-links-grid a:hover {
    color: var(--clr-primary);
}

.footer-contacts-section {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.footer-contacts-section p {
    margin-bottom: 0.75rem;
}

.footer-contacts-section a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 2rem 0;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   SUCCESS MODAL & OVERLAYS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-premium);
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* ==========================================================================
   AOS-LIKE SCROLL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Delay classes (handled by inline styling or JS, but helper classes are here) */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }

/* ==========================================================================
   MEDIA QUERIES (MOBILE ADAPTATION)
   ========================================================================== */

/* Large Tablets & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .calc-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Portrait Tablets & Large Mobiles (max-width: 768px) */
@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    h1, .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    h2, .section-title {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    .section-desc, .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .header-container {
        padding: 0 0.5rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu, .header-actions .btn {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image {
        transform: none;
    }
    
    .hero-image-wrapper:hover .hero-image {
        transform: scale(1.02);
    }
    
    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }
    
    @keyframes floating {
        0%, 100% { transform: translate(-50%, 0); }
        50% { transform: translate(-50%, -10px); }
    }
    
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .about-image-overlay-card {
        position: relative;
        bottom: 0;
        right: 0;
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    .menu-content-card {
        padding: 1.5rem;
    }
    
    .menu-card-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .menu-download-box {
        text-align: center;
    }
    
    .standards-main-img {
        transform: none;
    }
    
    .standards-card:hover .standards-main-img {
        transform: scale(1.02);
    }
    
    .haccp-badge {
        right: 0;
        top: -30px;
    }
    
    .calc-results-card {
        padding: 1.5rem;
    }
    
    .req-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

/* Small Mobiles (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .stat-num {
        font-size: 3rem;
    }
    
    .menu-days-nav {
        gap: 0.5rem;
    }
    
    .menu-day-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        flex-grow: 1;
        text-align: center;
    }
    
    .calc-checkbox-container {
        align-items: flex-start;
    }
    
    .total-price {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   THEME SWITCHER WIDGET
   ========================================================================== */
.theme-switcher-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1999;
}

.theme-toggle-btn {
    width: 56px;
    height: 56px;
    background-color: var(--clr-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(217, 119, 6, 0.4);
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(217, 119, 6, 0.6);
}

.theme-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    background-color: var(--clr-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 1.25rem;
    width: 260px;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.theme-switcher-widget.open .theme-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.theme-menu-title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.theme-menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
    color: var(--clr-text-light);
    margin-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.theme-menu-item:last-child {
    margin-bottom: 0;
}

.theme-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.05);
}

.theme-menu-item.active {
    background-color: var(--clr-primary-light);
    border-color: var(--clr-primary);
    color: var(--clr-text-light);
}

.theme-color-preview {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
