/* ==========================================================================
   FeedCaddy Modern — dark glass theme rebuild
   Loaded after the legacy stylesheets and overrides them.
   ========================================================================== */

:root {
    /* Brand */
    --fc-green:        #2E5D3A;
    --fc-green-dark:   #112418;
    --fc-green-deep:   #050d08;
    --fc-green-glow:   #4ade80;
    --fc-amber:        #F5A623;
    --fc-amber-glow:   #ffb733;
    --fc-amber-deep:   #c47a00;
    --fc-cream:        #fff7e6;
    --fc-text:         #f4f4f0;
    --fc-text-dim:     #b8bcb4;
    --fc-text-mute:    #6b7166;

    /* Surfaces */
    --fc-bg:           #050d08;
    --fc-bg-2:         #0a1a10;
    --fc-bg-3:         #0e2418;
    --fc-glass:        rgba(255, 255, 255, 0.05);
    --fc-glass-strong: rgba(255, 255, 255, 0.08);
    --fc-glass-border: rgba(255, 255, 255, 0.12);
    --fc-glass-hi:     rgba(74, 222, 128, 0.15);

    /* Type */
    --fc-font-display: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
    --fc-font-body:    'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --fc-font-mono:    'JetBrains Mono', 'Courier New', monospace;

    /* Layout */
    --fc-container: 1280px;
    --fc-container-narrow: 920px;
    --fc-radius: 18px;
    --fc-radius-sm: 10px;
    --fc-radius-lg: 28px;

    /* Shadows */
    --fc-shadow-sm:    0 4px 12px rgba(0, 0, 0, 0.4);
    --fc-shadow-md:    0 12px 30px rgba(0, 0, 0, 0.5);
    --fc-shadow-lg:    0 30px 80px rgba(0, 0, 0, 0.7);
    --fc-glow-amber:   0 0 0 1px rgba(245, 166, 35, 0.3), 0 0 40px rgba(245, 166, 35, 0.4), 0 10px 30px rgba(245, 166, 35, 0.25);
    --fc-glow-green:   0 0 0 1px rgba(74, 222, 128, 0.3), 0 0 40px rgba(74, 222, 128, 0.35);

    /* Motion */
    --fc-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --fc-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body.home,
body {
    margin: 0;
    padding: 0;
    background: var(--fc-bg) !important;
    color: var(--fc-text) !important;
    font-family: var(--fc-font-body) !important;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Global background ambient gradient */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(46, 93, 58, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        var(--fc-bg);
    z-index: -2;
    pointer-events: none;
}

/* Subtle grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

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

a {
    color: var(--fc-amber);
    text-decoration: none;
    transition: color 0.2s var(--fc-ease);
}
a:hover { color: var(--fc-amber-glow); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fc-font-display);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--fc-text);
    margin: 0 0 0.5em;
    text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p { margin: 0 0 1em; }

::selection { background: var(--fc-amber); color: var(--fc-bg); }

/* ==========================================================================
   Container
   ========================================================================== */
.fc-container,
.container {
    width: 100%;
    max-width: var(--fc-container);
    margin: 0 auto;
    padding: 0 24px;
}

.fc-container--narrow {
    max-width: var(--fc-container-narrow);
}

/* ==========================================================================
   Header (override base theme header)
   ========================================================================== */
.site-header,
header#masthead {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent !important;
    backdrop-filter: blur(0);
    transition: all 0.4s var(--fc-ease);
    padding: 18px 0;
    box-shadow: none !important;
    border: none !important;
}

.site-header.scrolled {
    background: rgba(5, 13, 8, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--fc-glass-border);
    padding: 12px 0;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-branding .site-title,
.site-branding a.site-title {
    color: var(--fc-text) !important;
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-branding .site-title::before {
    content: '🌾';
    font-size: 1.5rem;
}

.site-branding .site-description {
    display: none;
}

.site-header .nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.site-header .nav-menu a {
    color: var(--fc-text) !important;
    font-family: var(--fc-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s var(--fc-ease);
}

.site-header .nav-menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--fc-amber);
    transition: all 0.3s var(--fc-ease);
    transform: translateX(-50%);
}

.site-header .nav-menu a:hover {
    color: var(--fc-amber) !important;
}

.site-header .nav-menu a:hover::after {
    width: 100%;
}

.site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-shop-icons {
    display: flex;
    gap: 12px;
}

.header-icon {
    color: var(--fc-text) !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--fc-ease);
    position: relative;
}

.header-icon:hover {
    background: var(--fc-glass-strong);
    border-color: var(--fc-amber);
    color: var(--fc-amber) !important;
    transform: translateY(-2px);
}

.header-login {
    color: var(--fc-text) !important;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

.hamburger { display: flex; flex-direction: column; gap: 4px; width: 22px; }
.hamburger span {
    height: 2px;
    background: var(--fc-text);
    border-radius: 2px;
    transition: all 0.3s var(--fc-ease);
}

@media (max-width: 1024px) {
    .site-header .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.fc-btn,
.btn,
.btn--primary,
.btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 999px;
    font-family: var(--fc-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--fc-ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.fc-btn--primary,
.btn--primary {
    background: linear-gradient(135deg, var(--fc-amber) 0%, var(--fc-amber-deep) 100%);
    color: #1a0f00 !important;
    box-shadow: var(--fc-glow-amber);
}

.fc-btn--primary::before,
.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--fc-amber-glow) 0%, var(--fc-amber) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--fc-ease);
}

.fc-btn--primary > *,
.btn--primary > * {
    position: relative;
    z-index: 1;
}

.fc-btn--primary:hover,
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.5), 0 0 60px rgba(245, 166, 35, 0.6), 0 20px 50px rgba(245, 166, 35, 0.35);
    color: #1a0f00 !important;
}

.fc-btn--primary:hover::before,
.btn--primary:hover::before { opacity: 1; }

.fc-btn--ghost,
.btn--outline {
    background: var(--fc-glass);
    color: var(--fc-text) !important;
    border: 1px solid var(--fc-glass-border);
    backdrop-filter: blur(10px);
}

.fc-btn--ghost:hover,
.btn--outline:hover {
    background: var(--fc-glass-strong);
    border-color: var(--fc-amber);
    color: var(--fc-amber) !important;
    transform: translateY(-3px);
}

.fc-btn--large {
    padding: 22px 44px;
    font-size: 1rem;
}

.fc-btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 600px) {
    .fc-btn, .btn--primary, .btn--outline {
        padding: 16px 28px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Section primitives
   ========================================================================== */
.fc-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.fc-section--tight { padding: 80px 0; }
.fc-section--xtight { padding: 50px 0; }

.fc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: 999px;
    color: var(--fc-amber);
    font-family: var(--fc-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.fc-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--fc-amber);
    box-shadow: 0 0 12px var(--fc-amber);
}

.fc-section-title {
    font-family: var(--fc-font-display);
    margin: 0 0 24px;
    line-height: 0.92;
}

.fc-section-title .accent {
    background: linear-gradient(135deg, var(--fc-amber-glow) 0%, var(--fc-amber) 50%, var(--fc-amber-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.fc-section-lede {
    font-size: 1.25rem;
    color: var(--fc-text-dim);
    max-width: 680px;
    line-height: 1.5;
    margin: 0 0 48px;
}

.fc-section-head {
    text-align: center;
    margin-bottom: 80px;
}

.fc-section-head .fc-section-lede { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.fc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.fc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fc-hero__bg img,
.fc-hero__bg .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: fc-zoom 30s ease-in-out infinite alternate;
}

@keyframes fc-zoom {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

.fc-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(5, 13, 8, 0.6) 60%, var(--fc-bg) 100%),
        linear-gradient(180deg, rgba(5, 13, 8, 0.4) 0%, rgba(5, 13, 8, 0.7) 60%, var(--fc-bg) 100%);
}

/* ==========================================================================
   Feed grain — DISABLED. Removed entirely after multiple iterations
   that didn't land. The hero photo speaks for itself.
   ========================================================================== */
.fc-spray, .fc-fall, .fc-rain { display: none !important; }
.site-footer::before { display: none !important; }

/* ----- 1. Live sprayer (fixed to viewport, anchored to spreader) ----- */
.fc-spray {
    position: fixed;
    left: 50%;
    bottom: 30vh;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.fc-spray .fc-grain {
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform, opacity;
    animation: fc-spread var(--dur, 4s) cubic-bezier(0.22, 0.6, 0.5, 1) var(--delay, 0s) infinite;
}

@keyframes fc-spread {
    0% {
        transform: translate3d(0, 0, 0) rotate(var(--r1, 0deg));
        opacity: 0;
    }
    5% {
        opacity: var(--op, 0.9);
        transform: translate3d(calc(var(--x) * 0.1), calc(var(--peak) * 0.3), 0) rotate(calc(var(--r1, 0deg) + 60deg));
    }
    28% {
        opacity: var(--op, 0.9);
        transform: translate3d(calc(var(--x) * 0.42), var(--peak), 0) rotate(calc(var(--r1, 0deg) + 180deg));
    }
    65% {
        opacity: var(--op, 0.9);
        transform: translate3d(calc(var(--x) * 0.78), calc(var(--fall) * 0.5), 0) rotate(calc(var(--r1, 0deg) + 360deg));
    }
    100% {
        transform: translate3d(var(--x), var(--fall), 0) rotate(var(--r2, 720deg));
        opacity: 0;
    }
}

/* ----- 2. Document-tall fall layer ----- */
.fc-fall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.fc-fall .fc-grain {
    position: absolute;
    will-change: transform, opacity;
    animation: fc-grain-tumble var(--dur, 9s) linear var(--delay, 0s) infinite;
}

@keyframes fc-grain-tumble {
    0% {
        transform: translate3d(0, -120px, 0) rotate(var(--r1, 0deg));
        opacity: 0;
    }
    8% {
        opacity: var(--op, 0.8);
    }
    92% {
        opacity: var(--op, 0.8);
    }
    100% {
        transform: translate3d(var(--dx, 0px), 600px, 0) rotate(var(--r2, 540deg));
        opacity: 0;
    }
}

/* ----- Shared grain look (used by both layers) ----- */
.fc-grain {
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.12) 25%,
        transparent 55%,
        rgba(0, 0, 0, 0.18) 80%,
        rgba(0, 0, 0, 0.32) 100%
    );
    box-shadow:
        inset 0 0.5px 1px rgba(255, 255, 255, 0.4),
        inset 0 -0.5px 1px rgba(0, 0, 0, 0.45),
        0 1px 2px rgba(0, 0, 0, 0.55);
}

@media (prefers-reduced-motion: reduce) {
    .fc-spray, .fc-fall { display: none; }
}

/* ==========================================================================
   FOOTER feed line — subtle textured strip showing gathered feed at the
   bottom of the page. Uses simple noise SVG so it looks like real grain
   scatter, not a tile pattern.
   ========================================================================== */
.site-footer {
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    pointer-events: none;
    background:
        linear-gradient(to bottom,
            transparent 0%,
            rgba(184, 132, 29, 0.08) 30%,
            rgba(184, 132, 29, 0.18) 60%,
            rgba(184, 132, 29, 0.28) 100%),
        url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='90' viewBox='0 0 200 90'%3E%3Cg fill='%23d4a574' opacity='0.55'%3E%3Cellipse cx='12' cy='62' rx='2.5' ry='1.4'/%3E%3Cellipse cx='28' cy='71' rx='2' ry='1.2'/%3E%3Cellipse cx='44' cy='78' rx='3' ry='1.6'/%3E%3Cellipse cx='59' cy='65' rx='2.2' ry='1.3'/%3E%3Cellipse cx='73' cy='74' rx='2.8' ry='1.5'/%3E%3Cellipse cx='88' cy='80' rx='2.4' ry='1.4'/%3E%3Cellipse cx='102' cy='66' rx='2.6' ry='1.4'/%3E%3Cellipse cx='117' cy='73' rx='2.2' ry='1.3'/%3E%3Cellipse cx='131' cy='82' rx='3' ry='1.7'/%3E%3Cellipse cx='146' cy='68' rx='2.4' ry='1.4'/%3E%3Cellipse cx='160' cy='76' rx='2.6' ry='1.5'/%3E%3Cellipse cx='176' cy='71' rx='2' ry='1.2'/%3E%3Cellipse cx='190' cy='80' rx='2.8' ry='1.5'/%3E%3C/g%3E%3Cg fill='%23c4924f' opacity='0.6'%3E%3Cellipse cx='5' cy='75' rx='2' ry='1.2'/%3E%3Cellipse cx='20' cy='82' rx='2.4' ry='1.4'/%3E%3Cellipse cx='37' cy='66' rx='2.2' ry='1.3'/%3E%3Cellipse cx='52' cy='80' rx='2.6' ry='1.5'/%3E%3Cellipse cx='66' cy='82' rx='2' ry='1.2'/%3E%3Cellipse cx='82' cy='68' rx='2.4' ry='1.4'/%3E%3Cellipse cx='95' cy='78' rx='2.8' ry='1.5'/%3E%3Cellipse cx='110' cy='84' rx='2.2' ry='1.3'/%3E%3Cellipse cx='124' cy='70' rx='2.6' ry='1.5'/%3E%3Cellipse cx='139' cy='80' rx='2.4' ry='1.4'/%3E%3Cellipse cx='154' cy='84' rx='2' ry='1.2'/%3E%3Cellipse cx='168' cy='65' rx='2.6' ry='1.5'/%3E%3Cellipse cx='184' cy='86' rx='2.4' ry='1.4'/%3E%3C/g%3E%3Cg fill='%23a06d20' opacity='0.5'%3E%3Cellipse cx='15' cy='86' rx='2.2' ry='1.3'/%3E%3Cellipse cx='42' cy='84' rx='2.4' ry='1.4'/%3E%3Cellipse cx='68' cy='86' rx='2' ry='1.2'/%3E%3Cellipse cx='90' cy='85' rx='2.6' ry='1.5'/%3E%3Cellipse cx='115' cy='86' rx='2.2' ry='1.3'/%3E%3Cellipse cx='142' cy='86' rx='2.4' ry='1.4'/%3E%3Cellipse cx='170' cy='85' rx='2' ry='1.2'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat, repeat-x;
    background-size: 100% 100%, 200px 90px;
    background-position: 0 0, 0 bottom;
    z-index: 1;
}

.site-footer .container,
.site-footer .footer-main,
.site-footer .footer-bottom {
    position: relative;
    z-index: 2;
}

.fc-hero__content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 980px;
    padding: 0 24px;
    /* Push content up so the headline sits above the Feed Caddy unit
       in the hero image instead of overlapping it. */
    margin-top: -22vh;
}

@media (max-width: 768px) {
    .fc-hero__content {
        margin-top: -12vh;
    }
}

.fc-hero__title {
    font-family: var(--fc-font-display);
    font-size: clamp(3rem, 10vw, 8.5rem);
    line-height: 0.88;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.fc-hero__title .line {
    display: block;
    overflow: hidden;
}

.fc-hero__title .line span {
    display: inline-block;
    animation: fc-rise 1.2s var(--fc-ease) forwards;
    transform: translateY(110%);
    opacity: 0;
}

.fc-hero__title .line:nth-child(1) span { animation-delay: 0.1s; }
.fc-hero__title .line:nth-child(2) span { animation-delay: 0.25s; }
.fc-hero__title .line:nth-child(3) span { animation-delay: 0.4s; }

@keyframes fc-rise {
    to { transform: translateY(0); opacity: 1; }
}

.fc-hero__title .glow {
    background: linear-gradient(135deg, var(--fc-amber-glow) 0%, var(--fc-amber) 50%, var(--fc-amber-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(245, 166, 35, 0.4));
}

.fc-hero__sub {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: var(--fc-text-dim);
    max-width: 680px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fc-fade-up 1s var(--fc-ease) 0.6s forwards;
    line-height: 1.5;
}

@keyframes fc-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fc-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fc-fade-up 1s var(--fc-ease) 0.85s forwards;
}

.fc-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--fc-text-dim);
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fc-fade-up 1s var(--fc-ease) 1.2s forwards;
}

.fc-hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    margin: 12px auto 0;
    background: linear-gradient(to bottom, var(--fc-amber), transparent);
    animation: fc-pulse 2s ease-in-out infinite;
}

@keyframes fc-pulse {
    0%, 100% { opacity: 0.3; }
    50%      { opacity: 1; }
}

/* Hero stats badges floating */
.fc-hero__badges {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 24px;
    opacity: 0;
    animation: fc-fade-up 1s var(--fc-ease) 1.5s forwards;
}

.fc-hero__badge {
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 22px;
    border-radius: 999px;
    color: var(--fc-text);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-hero__badge strong {
    color: var(--fc-amber);
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .fc-hero__badges { display: none; }
}

/* ==========================================================================
   MARQUEE strip
   ========================================================================== */
.fc-marquee {
    position: relative;
    background: linear-gradient(90deg, var(--fc-amber-deep) 0%, var(--fc-amber) 50%, var(--fc-amber-deep) 100%);
    color: #1a0f00;
    padding: 18px 0;
    overflow: hidden;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.fc-marquee__track {
    display: inline-flex;
    gap: 60px;
    white-space: nowrap;
    animation: fc-marquee 30s linear infinite;
}

.fc-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.fc-marquee__dot {
    width: 10px; height: 10px;
    background: #1a0f00;
    border-radius: 50%;
}

@keyframes fc-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==========================================================================
   STATS strip
   ========================================================================== */
.fc-stats {
    padding: 100px 0;
    position: relative;
}

.fc-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fc-stat {
    text-align: center;
    padding: 40px 24px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--fc-radius);
    transition: all 0.4s var(--fc-ease);
    position: relative;
    overflow: hidden;
}

.fc-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--fc-ease);
}

.fc-stat:hover {
    transform: translateY(-6px);
    border-color: var(--fc-amber);
    box-shadow: var(--fc-glow-amber);
}

.fc-stat:hover::before { opacity: 1; }

.fc-stat__num {
    font-family: var(--fc-font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
    position: relative;
}

.fc-stat__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fc-text-dim);
    font-weight: 500;
}

@media (max-width: 900px) {
    .fc-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   PRODUCTS showcase
   ========================================================================== */
.fc-products {
    padding: 140px 0;
    position: relative;
}

.fc-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.fc-product-card {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(180deg, var(--fc-glass-strong) 0%, var(--fc-glass) 100%);
    border: 1px solid var(--fc-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--fc-radius-lg);
    transition: all 0.5s var(--fc-ease);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.fc-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--fc-ease);
    pointer-events: none;
}

.fc-product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fc-amber), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--fc-ease);
}

.fc-product-card:hover {
    transform: translateY(-12px);
    border-color: var(--fc-amber);
    box-shadow: 0 30px 80px rgba(245, 166, 35, 0.2), 0 0 0 1px rgba(245, 166, 35, 0.4);
}

.fc-product-card:hover::before,
.fc-product-card:hover::after { opacity: 1; }

.fc-product-card__tag {
    position: absolute;
    top: 24px; right: 24px;
    background: var(--fc-amber);
    color: #1a0f00;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.fc-product-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fc-amber) 0%, var(--fc-amber-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    color: #1a0f00;
    margin-bottom: 28px;
    box-shadow: var(--fc-glow-amber);
    position: relative;
    z-index: 1;
}

.fc-product-card__name {
    font-family: var(--fc-font-display);
    font-size: 2rem;
    line-height: 1;
    margin: 0 0 8px;
    color: var(--fc-text);
    position: relative;
    z-index: 1;
}

.fc-product-card__sub {
    font-size: 0.85rem;
    color: var(--fc-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.fc-product-card__capacity {
    font-family: var(--fc-font-display);
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.fc-product-card__capacity-label {
    font-size: 0.75rem;
    color: var(--fc-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.fc-product-card__specs {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.fc-product-card__specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--fc-glass-border);
    font-size: 0.875rem;
}

.fc-product-card__specs li:last-child { border-bottom: none; }

.fc-product-card__specs span:first-child {
    color: var(--fc-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.fc-product-card__specs span:last-child {
    color: var(--fc-text);
    font-weight: 600;
}

.fc-product-card__cta {
    margin-top: auto;
    text-align: center;
    padding: 14px 24px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: 999px;
    color: var(--fc-text) !important;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s var(--fc-ease);
    position: relative;
    z-index: 1;
}

.fc-product-card:hover .fc-product-card__cta {
    background: var(--fc-amber);
    border-color: var(--fc-amber);
    color: #1a0f00 !important;
}

@media (max-width: 1000px) {
    .fc-products__grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   PROBLEM section (dark, intense)
   ========================================================================== */
.fc-problem {
    padding: 140px 0;
    position: relative;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
        var(--fc-bg);
}

/* Split layout: real product photo on the LEFT (prominent, no overlay),
   text + cards on the RIGHT */
.fc-problem .fc-problem__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
}

.fc-problem__media {
    position: relative;
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--fc-glass-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
    aspect-ratio: 4 / 5;
    background: var(--fc-bg-2);
}

.fc-problem__media picture,
.fc-problem__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fc-problem__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 13, 8, 0.85) 100%);
    pointer-events: none;
}

.fc-problem__media-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    color: var(--fc-text);
}

.fc-problem__media-tag strong {
    display: block;
    font-family: var(--fc-font-display);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--fc-amber);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.fc-problem__media-tag span {
    display: block;
    font-size: 0.85rem;
    color: var(--fc-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 900px) {
    .fc-problem .fc-problem__inner { grid-template-columns: 1fr; }
    .fc-problem__media { aspect-ratio: 16 / 10; max-height: 420px; }
}

/* ==========================================================================
   PHOTO BREAK — full-bleed mid-page background photo interlude.
   Photo is the focus, light overlay only for text contrast.
   ========================================================================== */
.fc-photo-break {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0;
}

.fc-photo-break__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fc-photo-break__media picture,
.fc-photo-break__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: fc-zoom 30s ease-in-out infinite alternate;
}

.fc-photo-break__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Light overlay — photo stays the star, text gets just enough
       contrast in the bottom-left corner where it sits */
    background:
        linear-gradient(135deg,
            rgba(5, 13, 8, 0.75) 0%,
            rgba(5, 13, 8, 0.45) 30%,
            transparent 55%,
            transparent 100%),
        linear-gradient(180deg,
            transparent 0%,
            transparent 70%,
            rgba(5, 13, 8, 0.55) 100%);
}

.fc-photo-break__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.fc-photo-break__inner {
    max-width: 640px;
}

.fc-photo-break__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 16px 0 0;
    color: var(--fc-text);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.fc-photo-break__title .accent {
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 700px) {
    .fc-photo-break {
        min-height: 50vh;
        padding: 80px 0;
    }
    .fc-photo-break__overlay {
        background: linear-gradient(180deg, rgba(5, 13, 8, 0.55) 0%, rgba(5, 13, 8, 0.4) 50%, rgba(5, 13, 8, 0.7) 100%);
    }
}

.fc-problem__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fc-problem__copy {
    position: relative;
}

.fc-problem__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    margin-bottom: 32px;
}

.fc-problem__title .strike {
    text-decoration: line-through;
    text-decoration-color: rgba(220, 38, 38, 0.7);
    text-decoration-thickness: 4px;
    color: var(--fc-text-mute);
}

.fc-problem__text {
    font-size: 1.2rem;
    color: var(--fc-text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.fc-problem__list {
    display: grid;
    gap: 16px;
}

.fc-problem-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-left: 4px solid #dc2626;
    border-radius: var(--fc-radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.fc-problem-item__icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
}

.fc-problem-item__title {
    font-family: var(--fc-font-display);
    font-size: 1.25rem;
    margin: 0 0 4px;
    color: var(--fc-text);
}

.fc-problem-item__text {
    margin: 0;
    color: var(--fc-text-dim);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .fc-problem__inner { grid-template-columns: 1fr; gap: 50px; }
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.fc-how {
    padding: 140px 0;
    position: relative;
    background: linear-gradient(180deg, var(--fc-bg) 0%, var(--fc-bg-2) 100%);
}

/* Background-photo variant — uses real feed-lines barn shot behind everything */
.fc-how--bg {
    background: var(--fc-bg);
    overflow: hidden;
}

.fc-how__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fc-how__bg picture,
.fc-how__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: fc-zoom 40s ease-in-out infinite alternate;
}

.fc-how__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(5, 13, 8, 0.85) 0%,
            rgba(5, 13, 8, 0.7) 30%,
            rgba(5, 13, 8, 0.65) 50%,
            rgba(5, 13, 8, 0.78) 75%,
            rgba(5, 13, 8, 0.92) 100%);
}

.fc-how--bg .fc-container {
    position: relative;
    z-index: 2;
}

.fc-how__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 60px;
}

.fc-how__steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fc-amber), var(--fc-amber), transparent);
    opacity: 0.3;
    z-index: 0;
}

.fc-how-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.fc-how-step__num {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--fc-glass-strong);
    border: 1px solid var(--fc-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fc-font-display);
    font-size: 2.5rem;
    color: var(--fc-amber);
    transition: all 0.4s var(--fc-ease);
}

.fc-how-step:hover .fc-how-step__num {
    background: var(--fc-amber);
    color: #1a0f00;
    box-shadow: var(--fc-glow-amber);
    transform: scale(1.05);
}

.fc-how-step__title {
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    margin: 0 0 12px;
    color: var(--fc-text);
}

.fc-how-step__text {
    font-size: 0.95rem;
    color: var(--fc-text-dim);
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .fc-how__steps { grid-template-columns: 1fr 1fr; }
    .fc-how__steps::before { display: none; }
}

@media (max-width: 500px) {
    .fc-how__steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   TESTIMONIAL spotlight
   ========================================================================== */
.fc-quote {
    padding: 140px 0;
    position: relative;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(245, 166, 35, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--fc-bg-2) 0%, var(--fc-bg) 100%);
}

/* Background-photo variant — workers in the barn behind the testimonial */
.fc-quote--bg {
    background: var(--fc-bg);
    overflow: hidden;
}

.fc-quote__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fc-quote__bg picture,
.fc-quote__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: fc-zoom 35s ease-in-out infinite alternate;
}

.fc-quote__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(245, 166, 35, 0.18) 0%, transparent 50%),
        linear-gradient(180deg,
            rgba(5, 13, 8, 0.88) 0%,
            rgba(5, 13, 8, 0.72) 35%,
            rgba(5, 13, 8, 0.65) 50%,
            rgba(5, 13, 8, 0.78) 70%,
            rgba(5, 13, 8, 0.92) 100%);
}

.fc-quote--bg .fc-quote__inner {
    position: relative;
    z-index: 2;
}

.fc-quote__inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.fc-quote__mark {
    font-family: var(--fc-font-display);
    font-size: 12rem;
    line-height: 0.7;
    color: var(--fc-amber);
    opacity: 0.15;
    margin-bottom: -40px;
}

.fc-quote__text {
    font-family: var(--fc-font-display);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 40px;
    color: var(--fc-text);
}

.fc-quote__text .accent {
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-quote__author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: 999px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.fc-quote__author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fc-amber), var(--fc-amber-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0f00;
    font-family: var(--fc-font-display);
    font-size: 1.25rem;
}

.fc-quote__author-info {
    text-align: left;
}

.fc-quote__author-name {
    font-weight: 700;
    color: var(--fc-text);
    font-size: 1rem;
    line-height: 1.2;
}

.fc-quote__author-role {
    font-size: 0.85rem;
    color: var(--fc-text-dim);
}

/* ==========================================================================
   FINAL CTA section
   ========================================================================== */
.fc-finalcta {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.fc-finalcta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(245, 166, 35, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.fc-finalcta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 80px 60px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: var(--fc-radius-lg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.fc-finalcta__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    margin: 0 0 24px;
}

.fc-finalcta__text {
    font-size: 1.2rem;
    color: var(--fc-text-dim);
    margin: 0 0 40px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .fc-finalcta__inner { padding: 60px 30px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.fc-faq {
    padding: 140px 0;
}

.fc-faq__list {
    max-width: 820px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fc-faq-item {
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: var(--fc-radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.3s var(--fc-ease);
}

.fc-faq-item:hover {
    border-color: rgba(245, 166, 35, 0.4);
}

.fc-faq-item.is-open {
    border-color: var(--fc-amber);
    background: var(--fc-glass-strong);
}

.fc-faq-item__q {
    width: 100%;
    text-align: left;
    padding: 28px 32px;
    background: none;
    border: none;
    color: var(--fc-text);
    font-family: var(--fc-font-display);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    transition: color 0.3s var(--fc-ease);
}

.fc-faq-item.is-open .fc-faq-item__q { color: var(--fc-amber); }

.fc-faq-item__icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--fc-ease);
}

.fc-faq-item__icon::before,
.fc-faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--fc-text);
    transition: all 0.3s var(--fc-ease);
}

.fc-faq-item__icon::before { width: 14px; height: 2px; }
.fc-faq-item__icon::after  { width: 2px;  height: 14px; }

.fc-faq-item.is-open .fc-faq-item__icon {
    background: var(--fc-amber);
    border-color: var(--fc-amber);
}
.fc-faq-item.is-open .fc-faq-item__icon::before,
.fc-faq-item.is-open .fc-faq-item__icon::after {
    background: #1a0f00;
}
.fc-faq-item.is-open .fc-faq-item__icon::after {
    transform: rotate(90deg);
}

.fc-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--fc-ease), padding 0.4s var(--fc-ease);
    padding: 0 32px;
    color: var(--fc-text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

.fc-faq-item.is-open .fc-faq-item__a {
    max-height: 400px;
    padding: 0 32px 28px;
}

/* ==========================================================================
   FOOTER — branded multi-band layout
   ========================================================================== */
.fc-footer {
    background: var(--fc-bg-2) !important;
    color: var(--fc-text-dim) !important;
    border-top: 1px solid var(--fc-glass-border);
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

.fc-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 100%, rgba(46, 93, 58, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.fc-footer > * { position: relative; }

/* ----- TOP CTA BAND ----- */
.fc-footer__cta {
    padding: 70px 0;
    border-bottom: 1px solid var(--fc-glass-border);
}

.fc-footer__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.fc-footer__cta-title {
    font-family: var(--fc-font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 0.95;
    margin: 0 0 8px;
    color: var(--fc-text);
}

.fc-footer__cta-title .accent {
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-footer__cta-text {
    margin: 0;
    font-size: 1rem;
    color: var(--fc-text-dim);
    max-width: 460px;
}

/* ----- MAIN GRID ----- */
.fc-footer__main {
    padding: 70px 0 50px;
}

.fc-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
}

.fc-footer__col {
    min-width: 0;
}

.fc-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fc-font-display);
    font-size: 1.75rem;
    color: var(--fc-text) !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-decoration: none;
}

.fc-footer__desc {
    color: var(--fc-text-dim);
    line-height: 1.6;
    max-width: 380px;
    margin: 0 0 28px;
    font-size: 0.95rem;
}

.fc-footer__heading {
    font-family: var(--fc-font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fc-text) !important;
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--fc-glass-border);
    position: relative;
}

.fc-footer__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 28px;
    height: 1px;
    background: var(--fc-amber);
}

.fc-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-footer__links a {
    color: var(--fc-text-dim) !important;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.2s var(--fc-ease);
    display: inline-block;
    position: relative;
}

.fc-footer__links a::before {
    content: '→';
    display: inline-block;
    margin-right: 0;
    opacity: 0;
    width: 0;
    color: var(--fc-amber);
    transition: all 0.25s var(--fc-ease);
}

.fc-footer__links a:hover {
    color: var(--fc-amber) !important;
    transform: translateX(2px);
}

.fc-footer__links a:hover::before {
    opacity: 1;
    width: 14px;
    margin-right: 6px;
}

/* Contact list with icons */
.fc-footer__contact {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--fc-text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

.fc-footer__contact svg {
    color: var(--fc-amber);
    flex-shrink: 0;
    margin-top: 2px;
}

.fc-footer__contact a {
    color: var(--fc-text-dim) !important;
    text-decoration: none;
    transition: color 0.2s var(--fc-ease);
}

.fc-footer__contact a:hover { color: var(--fc-amber) !important; }

.fc-footer__hours {
    padding: 12px 16px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--fc-text-dim);
}

.fc-footer__hours strong { color: var(--fc-text); }

/* Newsletter form */
.fc-footer__newsletter {
    margin-top: 8px;
}

.fc-footer__newsletter-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fc-text-mute);
    margin-bottom: 10px;
    font-weight: 600;
}

.fc-footer__newsletter-row {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--fc-glass-border);
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    transition: all 0.3s var(--fc-ease);
    max-width: 380px;
}

.fc-footer__newsletter-row:focus-within {
    border-color: var(--fc-amber);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.fc-footer__newsletter input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--fc-text);
    font-size: 0.95rem;
    font-family: var(--fc-font-body);
    padding: 12px 0;
    outline: none;
    min-width: 0;
}

.fc-footer__newsletter input::placeholder { color: var(--fc-text-mute); }

.fc-footer__newsletter button {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--fc-amber), var(--fc-amber-deep));
    color: #1a0f00;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--fc-ease);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.fc-footer__newsletter button:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.5);
}

/* ----- BOTTOM BAR ----- */
.fc-footer__bottom {
    border-top: 1px solid var(--fc-glass-border);
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.25);
}

.fc-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--fc-text-mute);
}

.fc-footer__copyright strong {
    color: var(--fc-text-dim);
    font-weight: 600;
}

.fc-footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.fc-footer__legal a {
    color: var(--fc-text-mute) !important;
    text-decoration: none;
    transition: color 0.2s var(--fc-ease);
}

.fc-footer__legal a:hover { color: var(--fc-amber) !important; }

@media (max-width: 1000px) {
    .fc-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .fc-footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .fc-footer__grid { grid-template-columns: 1fr; }
    .fc-footer__cta { padding: 50px 0; }
    .fc-footer__main { padding: 50px 0 40px; }
    .fc-footer__bottom-inner { flex-direction: column; text-align: center; gap: 16px; }
}

/* Back to top */
.back-to-top {
    background: var(--fc-amber) !important;
    color: #1a0f00 !important;
    border: none !important;
    width: 52px; height: 52px;
    border-radius: 50% !important;
    box-shadow: var(--fc-glow-amber) !important;
}

/* ==========================================================================
   POPUP modal
   ========================================================================== */
.fc-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--fc-ease);
}

.fc-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.fc-popup__panel {
    position: relative;
    max-width: 520px;
    width: 100%;
    background: linear-gradient(180deg, var(--fc-bg-3) 0%, var(--fc-bg) 100%);
    border: 1px solid var(--fc-amber);
    border-radius: var(--fc-radius-lg);
    padding: 56px 48px;
    text-align: center;
    box-shadow: 0 50px 150px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(245, 166, 35, 0.3), 0 0 100px rgba(245, 166, 35, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s var(--fc-ease-bounce);
}

.fc-popup.is-open .fc-popup__panel {
    transform: scale(1) translateY(0);
}

.fc-popup__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: 50%;
    color: var(--fc-text);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--fc-ease);
}

.fc-popup__close:hover {
    background: var(--fc-amber);
    color: #1a0f00;
    border-color: var(--fc-amber);
    transform: rotate(90deg);
}

.fc-popup__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.fc-popup__title {
    font-family: var(--fc-font-display);
    font-size: 2.25rem;
    line-height: 1;
    margin: 0 0 16px;
    color: var(--fc-text);
}

.fc-popup__title .accent {
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-popup__text {
    color: var(--fc-text-dim);
    margin-bottom: 28px;
    line-height: 1.5;
}

.fc-popup__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-popup__form input {
    width: 100%;
    padding: 16px 20px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: 999px;
    color: var(--fc-text);
    font-size: 1rem;
    font-family: var(--fc-font-body);
    text-align: center;
    transition: all 0.3s var(--fc-ease);
}

.fc-popup__form input::placeholder { color: var(--fc-text-mute); }

.fc-popup__form input:focus {
    outline: none;
    border-color: var(--fc-amber);
    background: var(--fc-glass-strong);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.2);
}

.fc-popup__small {
    font-size: 0.75rem;
    color: var(--fc-text-mute);
    margin-top: 16px;
}

@media (max-width: 600px) {
    .fc-popup__panel { padding: 48px 28px; }
    .fc-popup__title { font-size: 1.75rem; }
}

/* ==========================================================================
   Scroll reveal helpers
   ========================================================================== */
.fc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--fc-ease), transform 0.9s var(--fc-ease);
}

.fc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fc-reveal--delay-1 { transition-delay: 0.1s; }
.fc-reveal--delay-2 { transition-delay: 0.2s; }
.fc-reveal--delay-3 { transition-delay: 0.3s; }
.fc-reveal--delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   PORTAL — login / signup page
   ========================================================================== */
.fc-portal-page {
    background: transparent;
}

.fc-portal {
    padding: 180px 0 120px;
    position: relative;
    min-height: 100vh;
}

.fc-portal::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(46, 93, 58, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.fc-portal > * { position: relative; z-index: 1; }

.fc-portal__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.fc-portal__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    margin: 0 0 20px;
}

.fc-portal__title .accent {
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-portal__lede {
    font-size: 1.1rem;
    color: var(--fc-text-dim);
    line-height: 1.6;
    margin: 0;
}

.fc-portal__alert {
    max-width: 680px;
    margin: 0 auto 32px;
    padding: 16px 24px;
    border-radius: var(--fc-radius);
    font-size: 0.95rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid;
}

.fc-portal__alert--error {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.4);
    color: #fca5a5;
}

.fc-portal__alert--success {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.4);
    color: var(--fc-green-glow);
}

.fc-portal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.fc-portal__card {
    position: relative;
    padding: 48px 40px;
    background: linear-gradient(180deg, var(--fc-glass-strong) 0%, var(--fc-glass) 100%);
    border: 1px solid var(--fc-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--fc-radius-lg);
    transition: all 0.4s var(--fc-ease);
    overflow: hidden;
}

.fc-portal__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fc-glass-border), transparent);
}

.fc-portal__card--primary {
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 20px 60px rgba(245, 166, 35, 0.1), 0 0 0 1px rgba(245, 166, 35, 0.2);
}

.fc-portal__card--primary::before {
    background: linear-gradient(90deg, transparent, var(--fc-amber), transparent);
}

.fc-portal__card:hover {
    transform: translateY(-4px);
    border-color: var(--fc-amber);
}

.fc-portal__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fc-amber) 0%, var(--fc-amber-deep) 100%);
    color: #1a0f00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.fc-portal__card-title {
    font-family: var(--fc-font-display);
    font-size: 2rem;
    line-height: 1;
    margin: 0 0 8px;
    color: var(--fc-text);
}

.fc-portal__card-sub {
    color: var(--fc-text-dim);
    font-size: 0.95rem;
    margin: 0 0 28px;
}

.fc-portal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fc-portal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fc-portal__field > span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fc-text-mute);
}

.fc-portal__field input[type="text"],
.fc-portal__field input[type="email"],
.fc-portal__field input[type="password"] {
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fc-glass-border);
    border-radius: 12px;
    color: var(--fc-text);
    font-size: 1rem;
    font-family: var(--fc-font-body);
    transition: all 0.2s var(--fc-ease);
}

.fc-portal__field input:focus {
    outline: none;
    border-color: var(--fc-amber);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.fc-portal__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fc-portal__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--fc-text-dim);
    line-height: 1.4;
    cursor: pointer;
}

.fc-portal__check input {
    margin-top: 2px;
    accent-color: var(--fc-amber);
    cursor: pointer;
}

.fc-portal__forgot {
    display: block;
    margin-top: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--fc-text-dim) !important;
    text-decoration: none;
    transition: color 0.2s var(--fc-ease);
}

.fc-portal__forgot:hover {
    color: var(--fc-amber) !important;
}

.fc-portal__foot {
    text-align: center;
    margin-top: 48px;
    color: var(--fc-text-dim);
    font-size: 0.95rem;
}

.fc-portal__foot a {
    color: var(--fc-amber);
    font-weight: 600;
}

@media (max-width: 800px) {
    .fc-portal { padding: 140px 0 80px; }
    .fc-portal__grid { grid-template-columns: 1fr; gap: 24px; }
    .fc-portal__card { padding: 36px 28px; }
    .fc-portal__field-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DEALER LANDING PAGE — state-targeted recruitment
   ========================================================================== */
.fc-dl {
    background: transparent;
}

/* ----- HERO ----- */
.fc-dl-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 160px 0 100px;
}

.fc-dl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fc-dl-hero__bg picture,
.fc-dl-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: fc-zoom 30s ease-in-out infinite alternate;
}

.fc-dl-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, transparent 0%, rgba(5, 13, 8, 0.6) 60%, var(--fc-bg) 100%),
        linear-gradient(180deg, rgba(5, 13, 8, 0.5) 0%, rgba(5, 13, 8, 0.75) 60%, var(--fc-bg) 100%);
}

.fc-dl-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.fc-dl-hero__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 0.92;
    margin: 16px 0 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.fc-dl-hero__title .accent {
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-dl-hero__sub {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: var(--fc-text-dim);
    line-height: 1.5;
    margin: 0 0 36px;
    max-width: 640px;
}

/* ----- WHAT YOU GET — 6 benefit cards ----- */
.fc-dl-offer {
    position: relative;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(245, 166, 35, 0.06) 0%, transparent 60%),
        var(--fc-bg);
}

.fc-dl-offer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.fc-dl-offer__card {
    padding: 36px 28px;
    background: linear-gradient(180deg, var(--fc-glass-strong) 0%, var(--fc-glass) 100%);
    border: 1px solid var(--fc-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--fc-radius);
    transition: all 0.4s var(--fc-ease);
    position: relative;
    overflow: hidden;
}

.fc-dl-offer__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--fc-ease);
}

.fc-dl-offer__card:hover {
    transform: translateY(-6px);
    border-color: var(--fc-amber);
    box-shadow: 0 20px 50px rgba(245, 166, 35, 0.15), 0 0 0 1px rgba(245, 166, 35, 0.3);
}

.fc-dl-offer__card:hover::before { opacity: 1; }

.fc-dl-offer__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fc-amber) 0%, var(--fc-amber-deep) 100%);
    color: #1a0f00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.25);
}

.fc-dl-offer__card h3 {
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--fc-text);
}

.fc-dl-offer__card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--fc-text-dim);
}

@media (max-width: 1000px) {
    .fc-dl-offer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .fc-dl-offer__grid { grid-template-columns: 1fr; }
}

/* ----- APPLICATION FORM SECTION ----- */
.fc-dl-apply {
    padding: 140px 0;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(245, 166, 35, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--fc-bg) 0%, var(--fc-bg-2) 100%);
}

.fc-dl-apply__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.fc-dl-apply__copy {
    padding-top: 24px;
}

.fc-dl-apply__title {
    font-family: var(--fc-font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 0.95;
    margin: 16px 0 20px;
    color: var(--fc-text);
}

.fc-dl-apply__title .accent {
    background: linear-gradient(135deg, var(--fc-amber-glow), var(--fc-amber-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-dl-apply__copy > p {
    color: var(--fc-text-dim);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 28px;
}

.fc-dl-apply__benefits {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-dl-apply__benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--fc-text);
    font-size: 1rem;
}

.fc-dl-apply__benefits svg {
    color: var(--fc-amber);
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 50%;
    padding: 4px;
    box-sizing: content-box;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.fc-dl-apply__contact {
    padding: 20px 24px;
    background: var(--fc-glass);
    border: 1px solid var(--fc-glass-border);
    border-radius: var(--fc-radius);
    backdrop-filter: blur(10px);
}

.fc-dl-apply__contact p {
    margin: 0 0 8px;
    color: var(--fc-text-dim);
    font-size: 0.9rem;
}

.fc-dl-apply__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fc-font-display);
    font-size: 1.5rem;
    color: var(--fc-amber) !important;
    text-decoration: none;
    transition: color 0.2s var(--fc-ease);
}

.fc-dl-apply__phone:hover { color: var(--fc-amber-glow) !important; }

/* ----- FORM CARD ----- */
.fc-dl-apply__form-wrap {
    padding: 40px 36px;
    background: linear-gradient(180deg, var(--fc-glass-strong) 0%, var(--fc-glass) 100%);
    border: 1px solid var(--fc-amber);
    border-radius: var(--fc-radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 166, 35, 0.3), 0 0 80px rgba(245, 166, 35, 0.15);
}

/* ----- Dealer landing form ----- */
/* Defensive: higher specificity (form.fc-dl-form) + explicit !important
   on layout rules to beat any legacy .form-control / bootstrap-ish
   styles that might be loaded by the parent theme stylesheets. */

form.fc-dl-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    margin: 0 !important;
}

form.fc-dl-form .fc-dl-form__row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin: 0 !important;
}

/* Every label inside the form — including rows, standalone fields, and
   the .fc-dl-form__field wrapper — stacks label text above input. */
form.fc-dl-form label,
form.fc-dl-form .fc-dl-form__field {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1rem;
    color: var(--fc-text);
    line-height: 1.4;
    cursor: pointer;
    min-width: 0; /* lets inputs shrink inside grid cells */
}

form.fc-dl-form label > span,
form.fc-dl-form .fc-dl-form__field > span {
    display: block !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--fc-text-mute) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

form.fc-dl-form input[type="text"],
form.fc-dl-form input[type="email"],
form.fc-dl-form input[type="tel"],
form.fc-dl-form textarea {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 13px 16px !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid var(--fc-glass-border) !important;
    border-radius: 10px !important;
    color: var(--fc-text) !important;
    font-size: 0.95rem !important;
    font-family: var(--fc-font-body) !important;
    line-height: 1.4 !important;
    transition: all 0.2s var(--fc-ease);
    -webkit-appearance: none !important;
    appearance: none !important;
}

form.fc-dl-form textarea {
    resize: vertical !important;
    min-height: 110px !important;
}

form.fc-dl-form input::placeholder,
form.fc-dl-form textarea::placeholder {
    color: var(--fc-text-mute) !important;
    opacity: 1 !important;
}

form.fc-dl-form input:focus,
form.fc-dl-form textarea:focus {
    outline: none !important;
    border-color: var(--fc-amber) !important;
    background: rgba(0, 0, 0, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15) !important;
}

form.fc-dl-form button[type="submit"] {
    margin-top: 10px !important;
    width: 100%;
}

.fc-dl-form__small {
    margin: 10px 0 0 !important;
    font-size: 0.75rem;
    color: var(--fc-text-mute);
    text-align: center;
    line-height: 1.5;
}

/* SUCCESS state — replaces the form after submit */
.fc-dl-apply__success {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--fc-glass-strong) 0%, var(--fc-glass) 100%);
    border: 1px solid rgba(74, 222, 128, 0.5);
    border-radius: var(--fc-radius-lg);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.3), 0 0 80px rgba(74, 222, 128, 0.15);
}

.fc-dl-apply__success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--fc-green-glow), var(--fc-green));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    line-height: 1;
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.4);
}

.fc-dl-apply__success h2 {
    font-family: var(--fc-font-display);
    font-size: 2.5rem;
    margin: 0 0 16px;
    color: var(--fc-text);
}

.fc-dl-apply__success p {
    color: var(--fc-text-dim);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 32px;
}

@media (max-width: 1000px) {
    .fc-dl-apply__grid { grid-template-columns: 1fr; gap: 50px; }
    .fc-dl-apply { padding: 100px 0; }
}

@media (max-width: 600px) {
    .fc-dl-apply__form-wrap { padding: 32px 24px; }
    .fc-dl-form__row { grid-template-columns: 1fr; }
    .fc-dl-apply__success { padding: 50px 28px; }
    .fc-dl-apply__success h2 { font-size: 2rem; }
}

/* Honeypot — hidden from real users (sighted, screen readers, keyboard
   focus) but still in the DOM so bots fill it in. */
.fc-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.fc-honeypot input { opacity: 0; }

/* ==========================================================================
   Page chrome overrides
   ========================================================================== */
.fc-front {
    background: transparent;
}

#content.site-content {
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Hide any leftover legacy front sections if they sneak in */
body.home .hero-section.legacy,
body.home .legacy-section { display: none !important; }

/* Make sure first non-hero section starts cleanly */
.fc-marquee + .fc-stats { padding-top: 80px; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fc-grain { display: none; }
    .fc-reveal { opacity: 1; transform: none; }
}

/* ---- Farmers First distributor band -------------------------------------
   Directly under the hero. This is the destination the rest of the page is
   pushing people toward, so it is stated plainly rather than styled clever:
   who distributes it, and how to reach them. */
.fc-dist{background:#062539;padding:44px 24px;border-bottom:1px solid rgba(255,255,255,.10)}
.fc-dist__in{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:32px;flex-wrap:wrap}
.fc-dist__logo{flex:none;display:block;line-height:0}
.fc-dist__logo img{height:104px;width:auto}
.fc-dist__body{flex:1 1 420px;min-width:0}
.fc-dist__kicker{margin:0 0 6px;font-size:.72rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:#E3C51A}
.fc-dist__h{margin:0;font-size:clamp(1.3rem,2.6vw,1.95rem);line-height:1.18;color:#fff;
  font-weight:800;text-wrap:balance}
.fc-dist__p{margin:12px 0 0;font-size:1rem;line-height:1.55;color:rgba(234,240,246,.78);max-width:62ch}
.fc-dist__acts{margin-top:20px;display:flex;gap:10px;flex-wrap:wrap}
.fc-dist__btn{display:inline-block;padding:12px 20px;border-radius:100px;text-decoration:none;
  font-weight:700;font-size:.95rem;background:#E3C51A;color:#062539;
  transition:background .16s ease,color .16s ease,border-color .16s ease}
.fc-dist__btn:hover{background:#FFDC4A;color:#062539}
.fc-dist__btn--ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.34)}
.fc-dist__btn--ghost:hover{background:rgba(255,255,255,.12);border-color:#fff;color:#fff}
@media (max-width:720px){
  .fc-dist{padding:32px 18px}
  .fc-dist__in{gap:20px}
  .fc-dist__logo img{height:78px}
  .fc-dist__btn{display:block;text-align:center}
}

/* ---- purchase-intent popup ----------------------------------------------
   Buttons, not a form. The old one traded a PDF for an email address; this
   one asks whether they want to buy and hands them the phone number. */
.fc-popup__acts{display:flex;flex-direction:column;gap:10px;margin-top:20px}
.fc-popup__acts .fc-btn{width:100%;text-align:center;justify-content:center}
.fc-popup__no{background:none;border:0;padding:8px;font-size:.9rem;color:rgba(255,255,255,.55);
  cursor:pointer;font-family:inherit}
.fc-popup__no:hover{color:#fff;text-decoration:underline}
.fc-popup__small a{color:inherit;text-decoration:underline}
