/* ============================================
   BFC — Balkans Ferti Company
   Design System & Styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --gold: #C9982E;
    --gold-light: #E8C96A;
    --gold-pale: #F5E6B8;
    --gold-bg: #FDF8E8;
    --green: #4A8C3F;
    --green-dark: #1F3D1B;
    --green-deeper: #162C12;
    --leaf: #5FAD52;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Semantic */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --bg-primary: var(--white);
    --bg-secondary: var(--gold-bg);
    --accent: var(--gold);
    --accent-green: var(--green);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-py: 100px;
    --section-px: 24px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

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

ul,
ol {
    list-style: none;
}

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

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-gold {
    color: var(--gold);
}

.text-green {
    color: var(--green);
}

/* ---------- Layout ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-px);
}

.section {
    padding: var(--section-py) 0;
}

.section--cream {
    background: var(--bg-secondary);
}

.section--dark {
    background: var(--green-dark);
    color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(201, 152, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 152, 46, 0.4);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--gold);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--leaf));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(74, 140, 63, 0.3);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 140, 63, 0.4);
}

.btn svg,
.btn i {
    width: 18px;
    height: 18px;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.header-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.header-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    transition: color var(--transition-base);
}

.header.scrolled .header-logo span {
    color: var(--green-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-base);
}

.header.scrolled .nav-links a {
    color: var(--gray-700);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.header.scrolled .nav-links a:hover {
    color: var(--gold);
}

.nav .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.header.scrolled .hamburger span {
    background: var(--gray-700);
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 61, 27, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    padding: 8px 0;
    transition: color var(--transition-base);
}

.mobile-nav a:hover {
    color: var(--gold-light);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(22, 44, 18, 0.55) 0%,
            rgba(22, 44, 18, 0.65) 50%,
            rgba(22, 44, 18, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 var(--section-px);
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounceDown 2s ease infinite;
}

.hero-scroll .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(165deg, var(--green-dark) 0%, var(--green-deeper) 60%, #0f1f0c 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 152, 46, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- OUR SCALE ---------- */
.our-scale {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.our-scale__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px var(--section-px);
    display: flex;
    align-items: stretch;
}

/* Each stat item takes equal space */
.our-scale__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 24px;
    text-align: center;
    position: relative;
}

/* Vertical separator — drawn after items 1, 2, and 3 */
.our-scale__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 64px;
    background: var(--gray-300);
}

.our-scale__number {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.8vw, 3rem);
    font-weight: 800;
    line-height: 1;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

/* Keeps "250,000+ MT" on a single line, never wraps */
.our-scale__metric {
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
}

/* "MT" unit — visually lighter, ~65% size */
.our-scale__unit {
    font-size: 0.65em;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--gray-900);
}

.our-scale__label {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0;
    line-height: 1.5;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .our-scale__inner {
        flex-wrap: wrap;
        padding: 0;
    }

    .our-scale__item {
        flex: 0 0 50%;
        padding: 24px 24px;
        border-bottom: 1px solid var(--gray-200);
    }

    /* Hide pseudo-element separators at tablet */
    .our-scale__item::after {
        display: none;
    }

    /* Right border for left column items */
    .our-scale__item:nth-child(odd) {
        border-right: 1px solid var(--gray-200);
    }

    /* Remove bottom border from last 2 items (bottom row) */
    .our-scale__item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* Mobile: 1 column */
@media (max-width: 560px) {
    .our-scale__item {
        flex: 0 0 100%;
        padding: 24px var(--section-px);
        border-right: none !important;
        border-bottom: 1px solid var(--gray-200);
    }

    .our-scale__item:last-child {
        border-bottom: none;
    }

    .our-scale__number {
        /* Keep large on mobile — still one consistent size */
        font-size: 3rem;
    }
}

/* ---------- INTRO SECTION ---------- */
.intro {
    padding: var(--section-py) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content .label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.intro-content h2 {
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
}

.stat-card h4 {
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.intro-visual {
    position: relative;
}

.intro-visual-card {
    background: linear-gradient(145deg, var(--gold-bg), var(--white));
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.intro-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 152, 46, 0.15) 0%, transparent 70%);
}

.intro-visual-card .icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.intro-visual-card h3 {
    margin-bottom: 12px;
    color: var(--green-dark);
}

.intro-visual-card p {
    font-size: 0.95rem;
}

.intro-visual-card .features-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.intro-visual-card .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.intro-visual-card .feature-item .check {
    width: 24px;
    height: 24px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ---------- PRODUCT SLIDER ---------- */
.ps-section {
    /* Warm cream — white bags integrate naturally */
    background: #EDEAE3;
    /* Prevent horizontal track bleed without clipping vertical hover */
    overflow-x: hidden;
}

/* Section-level note under subtitle */
.ps-header__note {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: 6px;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* Header row: text left, arrows right */
.ps-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.ps-header__text .label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.ps-header__text h2 {
    margin-bottom: 10px;
}

.ps-header__text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Arrow buttons */
.ps-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding-bottom: 6px;
}

.ps-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base);
    flex-shrink: 0;
}

.ps-arrow:hover {
    border-color: var(--gray-900);
    color: var(--gray-900);
}

.ps-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/*
 * HOVER CLIP FIX:
 * — overflow:hidden removed from ps-track-wrapper
 * — Instead, add padding equal to the scale overshoot so cards have room,
 *   then use negative margin to pull wrapper back to original size.
 * — overflow:hidden also removed from ps-card itself.
 */
.ps-track-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: -20px 0;
    touch-action: pan-y;
}

/* Track — slides horizontally via translateX */
.ps-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.ps-track.is-dragging {
    cursor: grabbing;
    transition: none;
    /* instant during drag */
}

/* ---- Card: integrated, no separate image box ---- */
.ps-card {
    flex: 0 0 calc((100% - 48px) / 3);
    /* 3 visible, 2 × 24px gaps */
    background: #FAF8F4;
    /* warm off-white, not pure white */
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-md);
    overflow: visible;
    /* must be visible for scale hover */
    display: flex;
    flex-direction: column;
    /* transition for hover — pointer:fine only (see below) */
}

/* Image area: no white box, just padded space on warm card bg */
.ps-card__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 16px;
    /* tighter — more space for bag */
    height: 276px;
    /* +15% vs original 240px */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Warm gradient vignette at bottom — integrates bag into card */
.ps-card__img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(250, 248, 244, 0.7));
    pointer-events: none;
}

.ps-card__img img {
    position: relative;
    z-index: 1;
    max-height: 115%;
    /* allows bag to fill ~15% more of the zone */
    width: auto;
    max-width: 90%;
    /* keep horizontal margins */
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.13));
}

/* Card body */
.ps-card__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ps-card__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.3;
}

.ps-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Packaging line + button pushed to bottom via margin-top: auto */
.ps-card__pack {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.02em;
    margin-top: auto;
    padding-top: 14px;
    margin-bottom: 14px;
}

/* Always-visible CTA button */
.ps-card__btn {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-dark);
    border: 1.5px solid rgba(31, 61, 27, 0.25);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    text-align: center;
    transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.ps-card__btn:hover {
    border-color: var(--green-dark);
    background: var(--green-dark);
    color: var(--white);
}

/*
 * Desktop hover: scale on pointer:fine devices only.
 * transform-origin: center — scale expands equally in all directions.
 * No overflow:hidden anywhere above this, so nothing clips.
 */
@media (pointer: fine) {
    .ps-card {
        transition: transform 0.22s ease, box-shadow 0.22s ease;
        transform-origin: center center;
    }

    .ps-card:hover {
        transform: scale(1.03);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
        z-index: 2;
    }
}

/* Dot indicators */
.ps-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.ps-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition-base), transform var(--transition-base);
}

.ps-dot.active {
    background: var(--gray-700);
    transform: scale(1.3);
}

/* === Responsive === */

/* Tablet: 2 cards visible */
@media (max-width: 900px) {
    .ps-card {
        flex: 0 0 calc((100% - 24px) / 2);
        /* 2 visible, 1 gap */
    }

    .ps-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }
}

/* Mobile: show 1.15 cards — the partial card hints at horizontal scroll */
@media (max-width: 560px) {
    .ps-card {
        flex: 0 0 calc(100% - 48px);
        /* ~1.15 visible */
    }

    .ps-track {
        gap: 16px;
    }

    .ps-track-wrapper {
        margin: 0;
        padding: 8px 0;
    }

    .ps-card__img {
        height: 200px;
        padding: 32px 24px 16px;
    }

    /* Disable hover on touch */
    .ps-card {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

/* ---------- QUALITY SECTION ---------- */
.quality {
    padding: var(--section-py) 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.quality-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-smooth);
}

.quality-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-pale);
}

.quality-item .q-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(79, 143, 58, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(74, 140, 63, 0.25);
}

.q-icon img {
    width: 42px;
    /* попробуй 26–30 */
    height: 42px;
    object-fit: contain;
    display: block;
}

.quality-item h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.quality-item p {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--gold) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
    padding: var(--section-py) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item .c-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-item .c-icon img {
    width: 30px;
    /* подгони 20–24 */
    height: 30px;
    object-fit: contain;
    display: block;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.contact-item a {
    color: var(--gold);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--green);
}

/* Form */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 8px;
}

.contact-form-card>p {
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group label .required {
    color: #dc2626;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 152, 46, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-submit {
    margin-top: 24px;
}

.form-submit .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--green-deeper);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand .footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact-list li .fc-icon {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer .fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .fc-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    /* вот это главное */
    gap: 14px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- ABOUT PAGE ---------- */
.about-story {
    padding: var(--section-py) 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content .label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-story-content h2 {
    margin-bottom: 20px;
}

.about-story-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-story-visual .visual-card {
    background: var(--gold-bg);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--gold-pale);
    transition: all var(--transition-base);
}

.about-story-visual .visual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-story-visual .visual-card .vc-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.about-story-visual .visual-card .vc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.about-story-visual .visual-card .vc-icon img {
    width: 48px;
    /* подгони 40–60 */
    height: 48px;
    object-fit: contain;
    display: block;
}

.about-story-visual .visual-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--green-dark);
}

.about-story-visual .visual-card p {
    font-size: 0.85rem;
}

/* Logistics */
.logistics {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.logistics-content {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.logistics-content .label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.logistics-content h2 {
    margin-bottom: 16px;
}

.logistics-content p {
    font-size: 1.05rem;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.logistics-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition-smooth);
}

.logistics-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.logistics-card .lc-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-bg), var(--gold-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.logistics-card .lc-icon img {
    width: 52px;
    /* попробуй 24–32 */
    height: 52px;
    object-fit: contain;
    display: block;
}

.logistics-card h4 {
    margin-bottom: 10px;
}

.logistics-card p {
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Advantages */
.advantages {
    padding: var(--section-py) 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.advantage-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    border: 1px solid var(--gray-200);
    text-align: center;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.advantage-card .adv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(79, 143, 58, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.advantage-card .adv-icon img {
    width: 26px;
    /* попробуй 24–28 */
    height: 26px;
    object-fit: contain;
    display: block;
}

.advantage-card h4 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.advantage-card p {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ---------- PRODUCTS PAGE ---------- */
.product-nav {
    position: sticky;
    top: 72px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

.product-nav-inner {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-nav-inner::-webkit-scrollbar {
    display: none;
}

.product-nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 100px;
    white-space: nowrap;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all var(--transition-base);
}

.product-nav-link:hover {
    background: var(--gold-bg);
    border-color: var(--gold-pale);
    color: var(--gold);
}

.product-nav-link.is-active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Product Sections */
.product-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-200);
    scroll-margin-top: 156px;
}

.product-section:last-child {
    border-bottom: none;
}

.product-section:nth-child(even) {
    background: var(--gray-50);
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 36px;
}

.product-image {
    width: 200px;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    padding: 12px;
    object-fit: contain;
}

.product-header-content {
    flex: 1;
}

.product-header-content h2 {
    margin-bottom: 12px;
    color: var(--green-dark);
}

.product-header-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-header-content .btn {
    margin-top: 8px;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-300);
    color: var(--gray-600);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-download:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Spec Tables */
.spec-table-wrapper {
    overflow-x: auto;
    margin-top: 8px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.spec-table caption {
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 16px 0 12px;
    color: var(--gray-700);
}

.spec-table thead th {
    background: var(--green-dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 20px;
    text-align: left;
}

.spec-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.92rem;
}

.spec-table tbody tr:last-child td {
    border-bottom: none;
}

.spec-table tbody tr:nth-child(even) {
    background: var(--gray-50);
}

.spec-table tbody tr:hover {
    background: var(--gold-bg);
}

.spec-table td:first-child {
    font-weight: 500;
    color: var(--gray-700);
    min-width: 220px;
}

.spec-table td:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* Sub-grade tables for Urea AG */
.sub-grades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

.cookie-inner {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(31, 61, 27, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-inner p a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cookie-accept {
    background: var(--gold);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--gold-light);
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children */
.stagger-children .fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children .fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children .fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children .fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children .fade-in:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children .fade-in:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-children .fade-in:nth-child(7) {
    transition-delay: 0.7s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .product-header {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        height: 200px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-py: 70px;
    }

    .nav-links,
    .nav .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .intro-grid,
    .about-story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .intro-visual {
        order: -1;
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .sub-grades {
        grid-template-columns: 1fr;
    }

    .about-story-visual {
        grid-template-columns: 1fr;
    }

    .product-nav-link {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-py: 56px;
        --section-px: 16px;
    }

    .our-scale__number {
        font-size: 2.25rem;
    }

    .page-hero {
        padding: 140px 0 70px;
    }

    .spec-table td,
    .spec-table th {
        padding: 10px 14px;
        font-size: 0.82rem;
    }
}

.why-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.why-header .icon {
    flex: 0 0 auto;
}

.why-header .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.why-header h3 {
    margin: 0;
}

.stat-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}