/* Darbar Fresh - Premium B2B Theme */
:root {
    --green-dark: #0d1f17;
    --green-darker: #07120c;
    --green-mid: #122a1e;
    --gold: #c9a962;
    --gold-light: #dfc98a;
    --gold-dark: #a8893f;
    --cream: #f3ede3;
    --cream-light: #faf7f2;
    --white: #ffffff;
    --text-muted: #b8c4bc;
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --radius: 50px;
    --radius-md: 16px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: #2a2a2a;
    background: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: rgba(201, 169, 98, 0.15);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}
.btn-green:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 22px;
    font-size: 13px;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-nav:hover { background: rgba(201, 169, 98, 0.12); }

.header-auth-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logout-form {
    margin: 0;
}

.btn-auth-login,
.btn-auth-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    font-family: var(--font-sans);
    white-space: nowrap;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: 1.5px solid transparent;
}

.btn-auth-login {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-auth-login:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 98, 0.08);
}

.btn-auth-register {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--green-dark);
    border-color: var(--gold);
}

.btn-auth-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 169, 98, 0.28);
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.25;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.section-text {
    font-size: 15px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 24px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 18, 12, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.header-inner {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    height: 82px;
    gap: 24px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.footer-logo {
    height: 34px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

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

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--green-darker);
    padding-top: 82px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--green-darker);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 0;
    width: 42%;
    background: linear-gradient(90deg, var(--green-darker) 85%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.01);
    image-rendering: -webkit-optimize-contrast;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 12, 0.97) 0%,
            rgba(7, 18, 12, 0.9) 34%,
            rgba(7, 18, 12, 0.45) 48%,
            rgba(7, 18, 12, 0.12) 62%,
            transparent 72%
        );
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 72px;
}

@media (min-width: 1400px) {
    .hero-bg-panel { width: 64%; }
    .hero-bg-image { object-position: center 48%; }
}

@media (max-width: 1024px) {
    .hero-bg::before { width: 100%; background: rgba(7, 18, 12, 0.55); }
    .hero-bg-panel {
        width: 100%;
        opacity: 0.45;
    }
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(7, 18, 12, 0.88) 0%,
            rgba(7, 18, 12, 0.75) 45%,
            rgba(7, 18, 12, 0.55) 100%
        );
    }
}

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

.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 600;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title-accent {
    display: block;
    font-style: normal;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 500;
    color: var(--gold);
    margin-top: 10px;
    line-height: 1.3;
}

.hero-desc {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 38px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 440px;
}

.hero-video-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 340px;
    animation: float 6s ease-in-out infinite;
}

.hero-video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--green-darker);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(201, 169, 98, 0.25),
        0 0 40px rgba(201, 169, 98, 0.12);
    aspect-ratio: 9 / 16;
    max-height: 480px;
}

.hero-product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: middle;
    background: #07120c;
}

.hero-video-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.15) 100%
    );
    border-radius: inherit;
}

.hero-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

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

.fresh-badge {
    position: absolute;
    top: 8%;
    right: 8%;
    width: 118px;
    height: 118px;
    background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 36px rgba(201, 169, 98, 0.55);
    border: 3px solid rgba(255, 255, 255, 0.25);
    z-index: 3;
    animation: pulse 3.5s ease-in-out infinite;
}

.fresh-badge small {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
    opacity: 0.85;
}

.fresh-badge span {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* Features Bar */
.features-bar {
    background: var(--cream);
    padding: 56px 0 64px;
    margin-top: -2px;
}

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

.feature-card {
    text-align: center;
    padding: 36px 24px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.feature-icon svg { width: 44px; height: 44px; }

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 12.5px;
    color: #6b6b6b;
    line-height: 1.65;
}

/* About Section */
.about-section {
    padding: 110px 0;
    background: var(--cream-light);
}

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

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-video-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--green-darker);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(201, 169, 98, 0.22),
        0 0 48px rgba(201, 169, 98, 0.1);
    aspect-ratio: 4 / 5;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #07120c;
}

.about-video-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.07) 0%,
        transparent 42%,
        transparent 65%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

.about-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.stat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.stat-icon svg { width: 32px; height: 32px; }

.stat-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

/* Products Section */
.products-section {
    padding: 110px 0;
    background: var(--white);
}

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

.product-features {
    margin: 30px 0 38px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    font-size: 14.5px;
    color: #3d3d3d;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.check-icon-wrap {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    width: 14px;
    height: 14px;
    color: var(--gold-dark);
}

.products-image-wrap {
    position: relative;
}

.products-image-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12), transparent);
    border-radius: 20px;
    z-index: 0;
}

.products-image {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.products-image img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
}

/* Distributor Hanging Poster */
.distributor-hang {
    position: relative;
    padding: 108px 0 118px;
    background: linear-gradient(165deg, #07120c 0%, #0d1f17 42%, #122a1e 100%);
    overflow: hidden;
}

.distributor-hang-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 72% 42%, rgba(201, 169, 98, 0.16) 0%, transparent 62%),
        radial-gradient(ellipse 40% 35% at 18% 78%, rgba(26, 143, 92, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.distributor-hang-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.distributor-hang-copy {
    max-width: 520px;
}

.section-label--light {
    color: var(--gold);
}

.distributor-hang-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    color: var(--white);
    margin: 14px 0 18px;
}

.distributor-hang-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.distributor-hang-perks {
    margin-bottom: 34px;
}

.distributor-hang-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 14px;
    color: #d4e0da;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.distributor-hang-perks li:last-child { border-bottom: none; }

.distributor-hang-perks li span {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid rgba(201, 169, 98, 0.28);
}

.distributor-hang-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.distributor-hang-call {
    color: var(--gold) !important;
    border-color: rgba(201, 169, 98, 0.55) !important;
}

.hanging-poster-stage {
    perspective: 1400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 480px;
    padding-top: 8px;
}

.hanging-poster-rig {
    position: relative;
    width: min(100%, 390px);
    transform-origin: 50% 0%;
    animation: poster-sway 7s ease-in-out infinite;
}

@keyframes poster-sway {
    0%, 100% { transform: rotate(-1.4deg); }
    50% { transform: rotate(1.4deg); }
}

.hanging-rope-bar {
    width: 118%;
    height: 3px;
    margin: 0 auto;
    position: relative;
    left: -9%;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent 0%, #8a7340 8%, #dfc98a 50%, #8a7340 92%, transparent 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hanging-strings {
    display: flex;
    justify-content: space-between;
    padding: 0 14% 0 16%;
    height: 52px;
}

.hanging-string {
    width: 2px;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(180deg, #dfc98a 0%, rgba(201, 169, 98, 0.35) 100%);
    box-shadow: 0 0 6px rgba(201, 169, 98, 0.2);
}

.hanging-poster-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.12s ease-out, box-shadow 0.3s ease;
    box-shadow:
        0 36px 72px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(201, 169, 98, 0.22),
        0 0 48px rgba(201, 169, 98, 0.08);
}

.hanging-poster-card img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.hanging-clip {
    position: absolute;
    top: -2px;
    z-index: 2;
    width: 22px;
    height: 34px;
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, #e8d5a3, #a8893f);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.hanging-clip::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(13, 31, 23, 0.35);
}

.hanging-clip--left { left: 14%; }
.hanging-clip--right { right: 14%; }

.hanging-poster-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.14) 0%,
        transparent 38%,
        transparent 62%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

.hanging-poster-stage.is-tilting .hanging-poster-rig {
    animation-play-state: paused;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 55%);
}

.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 36px;
    align-items: center;
}

.cta-illustration {
    width: 110px;
    height: 90px;
    flex-shrink: 0;
}

.cta-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 30px);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 520px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.truck-icon {
    width: 72px;
    height: 52px;
    color: var(--gold);
    opacity: 0.85;
}

/* Footer */
.site-footer {
    background: var(--green-darker);
    color: var(--text-muted);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin: 20px 0 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    color: var(--green-dark);
}
.social-links svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-col ul a:hover { color: var(--gold); }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.6;
}
.contact-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--gold);
    margin-top: 2px;
}

.site-contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.site-contact-link:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #7a8a80;
}
.footer-bottom .heart { color: #e25555; }

/* Inner Pages */
.page-hero {
    background: var(--green-dark);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-bg.jpg') center/cover;
    opacity: 0.15;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
    background: var(--cream-light);
}
.page-content .content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}
.page-content h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--green-dark);
    margin: 28px 0 12px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p, .page-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}
.page-content ul { padding-left: 20px; list-style: disc; margin-bottom: 20px; }

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--green-dark);
    color: var(--white);
    border-radius: 16px;
    padding: 40px;
}
.contact-info-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--gold);
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0ddd6;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: border-color var(--transition);
    background: var(--cream-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Quote Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 18, 12, 0.75);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
}
.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: var(--green-dark);
    padding: 28px 32px;
    border-radius: 20px 20px 0 0;
    position: relative;
}
.modal-header h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--white);
}
.modal-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--green-dark); }

.modal-body { padding: 32px; }

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--green-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 22px;
    color: var(--gold);
    transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* Products Page Cards */
.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-6px); }
.product-card img { width: 100%; height: 220px; object-fit: cover; }
.product-card-body { padding: 24px; }
.product-card-body h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.product-card-body p { font-size: 14px; color: #666; }

/* Help Cards */
.help-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.help-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.help-card svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 16px;
}
.help-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.help-card p { font-size: 13px; color: #777; margin-bottom: 16px; }

/* Responsive */
@media (max-width: 1024px) {
    .header-inner { grid-template-columns: auto 1fr auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-bg-image { object-position: center center; }
    .hero-visual { margin-top: 24px; min-height: 360px; }
    .hero-video-wrap { max-width: 300px; margin: 0 auto; }
    .hero-video-frame { max-height: 420px; }
    .about-video-frame { max-width: 360px; margin: 0 auto; }
    .about-grid, .products-grid { grid-template-columns: 1fr; }
    .distributor-hang-grid { grid-template-columns: 1fr; }
    .distributor-hang-copy { max-width: 100%; text-align: center; margin: 0 auto; }
    .distributor-hang-perks li { justify-content: center; text-align: left; }
    .distributor-hang-actions { justify-content: center; }
    .hanging-poster-stage { min-height: 420px; order: -1; }
    .about-images { min-height: 400px; max-width: 520px; margin: 0 auto; }
    .cta-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-illustration { margin: 0 auto; }
    .cta-content p { margin: 0 auto; }
    .cta-actions { justify-content: center; }
    .product-cards, .help-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { grid-template-columns: 1fr auto; }
    .logo { grid-column: 1; }
    .header-actions { grid-column: 2; }
    .main-nav {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        grid-column: 1 / -1;
        background: var(--green-dark);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        border-bottom: 1px solid rgba(201,169,98,0.2);
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-nav a {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .menu-toggle { display: flex; }
    .btn-nav { display: none; }
    .header-auth-group { gap: 8px; }
    .btn-auth-login,
    .btn-auth-register {
        padding: 8px 14px;
        font-size: 11px;
    }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .product-cards, .help-cards { grid-template-columns: 1fr; }
    .page-content .content-card { padding: 28px; }
    .hero-bg-image { object-position: center center; }
}
