/* ===================================
   Covex — dark industrial theme
   Charcoal base, vibrant orange accent
   =================================== */
:root {
    --bg-page: #121212;
    --bg-elevated: #1a1a1a;
    --bg-muted: #2c2c2c;
    --bg-deep: #0d0d0d;
    --bg-deep-soft: #181818;

    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #6e6e6e;

    --accent: #ff6600;
    --accent-hover: #e55a00;
    --accent-soft: rgba(255, 102, 0, 0.18);
    --accent-warm: #ff8533;
    --accent-warm-soft: rgba(255, 133, 51, 0.15);

    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.18);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Montserrat", var(--font-sans);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.45);
    --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.08);

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.75rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 7rem;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s var(--ease);

    --ad-bar-height: 2rem;
    --header-block-height: 4.75rem;
    --site-head-offset: calc(var(--ad-bar-height) + var(--header-block-height));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-page);
    background-image:
        radial-gradient(ellipse 90% 60% at 100% 0%, rgba(255, 102, 0, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(255, 102, 0, 0.05), transparent 50%);
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* Ad disclosure + header */
.site-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.ad-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--ad-bar-height);
    padding: 0.35rem var(--space-sm);
    background: #1a1a1a;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.ad-bar-text {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
}

.ad-bar-label {
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: var(--accent);
    color: #121212;
    font-weight: 800;
}

/* Header */
.header {
    position: relative;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-topline {
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 55%, transparent 100%);
}

.header .container {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-md);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-pill {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: #121212;
    background: var(--accent);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-self: end;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8125rem;
    background: var(--accent);
    color: #121212;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}

.mobile-menu-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-sm) 0 0;
    border-top: 1px solid var(--border);
    margin-top: var(--space-sm);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}

.header .container:has(.mobile-menu-checkbox:checked) .mobile-nav {
    display: flex;
    max-height: 280px;
}

.header .container:has(.mobile-menu-checkbox:checked) .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header .container:has(.mobile-menu-checkbox:checked) .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header .container:has(.mobile-menu-checkbox:checked) .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.65rem 0;
}

.mobile-nav-link.active {
    color: var(--accent);
}

.mobile-nav-cta {
    margin-top: var(--space-xs);
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: var(--radius-md);
    background: var(--accent);
    color: #121212;
}

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

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .nav-pill {
        display: none;
    }

    .header-tools {
        gap: var(--space-xs);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-tagline {
        display: none;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--site-head-offset) + var(--space-lg)) 0 var(--space-xl);
    overflow: hidden;
    background-color: var(--bg-page);
    background-image:
        linear-gradient(
            rgba(18, 18, 18, 0.82) 0%,
            rgba(18, 18, 18, 0.65) 100%
        ),
        url("../12.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 44rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 38em;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.stats-img,
.product-img,
.product-img-small,
.contact-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.stats-img {
    max-width: 400px;
    object-fit: contain;
    box-shadow: var(--shadow-md);
}

.product-img {
    max-width: 300px;
    margin-bottom: var(--space-md);
    object-fit: contain;
}

.product-img-small {
    width: 240px;
    max-width: 100%;
    object-fit: contain;
}

.contact-img {
    aspect-ratio: 1;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--bg-elevated);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.85rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #121212;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 102, 0, 0.45);
    background: var(--accent-hover);
    color: #fff;
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-warm);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.foods > .container > .section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.foods-eyebrow {
    text-align: center;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    section {
        padding: var(--space-lg) 0;
    }
}

/* Inner pages */
.page-hero {
    padding-top: calc(var(--site-head-offset) + var(--space-lg));
    padding-bottom: var(--space-md);
}

.page-hero .section-header {
    text-align: left;
    margin: 0;
    max-width: 760px;
}

.page-hero .section-title {
    margin-bottom: var(--space-sm);
}

.legal-page {
    padding-top: var(--space-sm);
}

.legal-content {
    display: grid;
    gap: var(--space-md);
}

.legal-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-card p,
.legal-card li {
    color: var(--text-secondary);
}

.legal-card ul {
    margin-left: 1.25rem;
    display: grid;
    gap: 0.45rem;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Features — bento layout */
.features {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto var(--space-lg);
}

.features-header .section-subtitle {
    margin-bottom: 0;
}

.features-bento {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--space-sm);
}

.feature-card {
    position: relative;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card::before {
    content: attr(data-step);
    position: absolute;
    right: -0.15em;
    bottom: -0.2em;
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

.feature-card-inner {
    position: relative;
    z-index: 1;
    padding: var(--space-md);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 102, 0, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.feature-card--lead {
    grid-row: 1 / 3;
    grid-column: 1;
    border-left: 3px solid var(--accent);
    background: linear-gradient(160deg, var(--bg-muted) 0%, rgba(255, 102, 0, 0.08) 100%);
}

.feature-card--lead .feature-card-inner {
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
}

.feature-card--lead .feature-title {
    font-size: 1.15rem;
}

.feature-card--lead .feature-description {
    font-size: 1rem;
}

.feature-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.feature-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / 3;
}

.feature-card.feature-card--banner {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    align-items: stretch;
    gap: var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.12) 0%, var(--bg-muted) 45%);
    border-color: rgba(255, 102, 0, 0.25);
}

.feature-card--banner::before {
    display: none;
}

.feature-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.feature-number--banner {
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0;
    font-size: 1.25rem;
    background: var(--accent);
    color: #121212;
    border-radius: var(--radius-md);
}

.feature-banner-text {
    flex: 1;
    min-width: 0;
}

.feature-card--banner .feature-title {
    margin-bottom: 0.35rem;
}

.feature-card--banner .feature-description {
    margin: 0;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .features-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .feature-card--lead {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .feature-card:nth-child(2) {
        grid-column: 1;
        grid-row: auto;
    }

    .feature-card:nth-child(3) {
        grid-column: 2;
        grid-row: auto;
    }

    .feature-card.feature-card--banner {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .features-bento {
        grid-template-columns: 1fr;
    }

    .feature-card--lead,
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card.feature-card--banner {
        grid-column: 1;
        grid-row: auto;
    }

    .feature-card.feature-card--banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-number--banner {
        align-self: flex-start;
    }
}

/* Foods — mosaic layout */
.foods {
    background: var(--bg-page);
}

.foods-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto var(--space-lg);
}

.foods-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-sm);
}

.food-card {
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.food-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: var(--shadow-md);
}

.food-card--hero {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    display: grid;
    grid-template-rows: 2fr 3fr;
    grid-template-columns: 1fr;
    min-height: 420px;
}

.food-card--hero .food-card-media {
    min-height: 0;
    overflow: hidden;
}

.food-card--hero .food-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.food-card--hero .food-card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-md);
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.06) 0%, var(--bg-muted) 40%);
    border-left: none;
    border-top: 3px solid var(--accent);
    min-height: 0;
    overflow: auto;
}

.food-card--tile:nth-of-type(2) {
    grid-column: 8 / 13;
    grid-row: 1;
}

.food-card--tile:nth-of-type(3) {
    grid-column: 8 / 13;
    grid-row: 2;
}

.food-card--row {
    grid-column: span 4;
    grid-row: 3;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.food-card--row:nth-of-type(4) {
    grid-column: 1 / 5;
}

.food-card--row:nth-of-type(5) {
    grid-column: 5 / 9;
}

.food-card--row:nth-of-type(6) {
    grid-column: 9 / 13;
}

.food-card-media {
    overflow: hidden;
}

.food-card-media--thumb {
    flex: 0 0 38%;
    max-width: 38%;
}

.food-card--row .food-image {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
}

.food-card--tile .food-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.food-card-body {
    padding: var(--space-md);
}

.food-card--row .food-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
}

.food-image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.food-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 var(--space-sm);
    color: var(--text-primary);
    line-height: 1.3;
}

.food-card--hero .food-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.food-card--hero .food-description {
    font-size: 0.875rem;
    margin-bottom: 0.65rem;
}

.food-details {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.food-card--hero .food-details {
    margin-top: 0.25rem;
}

.food-details li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.food-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.food-description {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.food-card--row .food-description {
    font-size: 0.8125rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .foods-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .food-card--hero {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 320px;
    }

    .food-card--hero .food-image {
        aspect-ratio: auto;
    }

    .food-card--tile:nth-of-type(2),
    .food-card--tile:nth-of-type(3) {
        grid-column: auto;
        grid-row: auto;
    }

    .food-card--row,
    .food-card--row:nth-of-type(4),
    .food-card--row:nth-of-type(5),
    .food-card--row:nth-of-type(6) {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .foods-mosaic {
        grid-template-columns: 1fr;
    }

    .food-card--row {
        flex-direction: column;
    }

    .food-card-media--thumb {
        flex: none;
        max-width: none;
    }

    .food-card--row .food-image {
        min-height: 160px;
    }
}

/* Stats */
.stats {
    background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-page) 100%);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-lg);
    align-items: center;
}

.stats-image {
    display: flex;
    justify-content: center;
}

.stats-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    line-height: 1.25;
}

.stats-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

@media (max-width: 992px) {
    .stats-content {
        grid-template-columns: 1fr;
    }

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

/* Info split */
.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

.info-block {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    align-items: center;
}

.info-block-dark {
    background: var(--bg-muted);
    color: var(--text-primary);
}

.info-block-dark .info-title,
.info-block-dark .info-text {
    color: inherit;
}

.info-block-dark .info-title {
    color: #fff;
}

.info-block-dark .info-text {
    color: var(--text-secondary);
}

.info-block-image {
    background: var(--bg-deep-soft);
    position: relative;
    overflow: hidden;
}

.info-block-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1200&h=800&fit=crop");
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    mix-blend-mode: luminosity;
}

.info-block-image .info-content {
    position: relative;
    z-index: 1;
}

.info-block-image .info-title {
    color: #fff;
}

.info-block-image .info-text {
    color: rgba(255, 255, 255, 0.9);
}

.info-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    line-height: 1.25;
}

.info-text {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.02rem;
}

@media (max-width: 992px) {
    .info-split {
        grid-template-columns: 1fr;
    }
}

/* Product */
.product {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.product-subtitle {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    line-height: 1.35;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.product-image-small {
    display: none;
    margin-top: var(--space-md);
}

.product-image {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.product-image .product-img {
    margin-left: auto;
    margin-right: auto;
}

.product-description-alt {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.9375rem;
}

@media (max-width: 992px) {
    .product-content {
        grid-template-columns: 1fr;
    }

    .product-image-small {
        display: block;
    }
}

/* FAQ */
.faq {
    background: var(--bg-page);
}

.faq-content {
    max-width: 760px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--text-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-checkbox {
    display: none;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-muted);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--ease);
}

.faq-checkbox:checked + .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.9375rem;
    padding-top: var(--space-xs);
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--bg-deep) 0%, #1a1a1a 100%);
    color: var(--text-primary);
    text-align: center;
    border: none;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2) 0%, transparent 55%);
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: #fff;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 52rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Contact */
.contact-form {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.contact-text {
    color: var(--text-secondary);
    line-height: 1.75;
}

.contact-email {
    font-weight: 600;
    font-size: 1rem;
    margin-top: var(--space-xs);
    color: var(--accent);
}

.contact-email a {
    color: var(--accent);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    padding: 0.9rem 1.1rem;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--bg-deep);
    color: rgba(255, 255, 255, 0.82);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-link {
    color: var(--accent-warm);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-nav-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
}

.footer-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: var(--space-xs);
    }
}

/* Toast */
.toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--bg-deep);
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0.35s;
    z-index: 9999;
    max-width: 90%;
    border: 1px solid var(--border);
}

.toast.toast-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}
