/* ========== ECOBULLET DESIGN SYSTEM ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green-900: #0F2318;
    --green-800: #1B3A2D;
    --green-700: #245A3F;
    --green-600: #2D7A52;
    --green-500: #3A9D6A;
    --brass: #C9A84C;
    --brass-light: #DFC06A;
    --brass-dark: #A68A32;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --gray-50: #F4F4F2;
    --gray-100: #E8E8E4;
    --gray-200: #D1D1CC;
    --gray-300: #B0B0A8;
    --gray-400: #8A8A82;
    --gray-500: #6B6B63;
    --gray-600: #4A4A44;
    --gray-700: #333330;
    --gray-800: #1F1F1C;
    --gray-900: #111110;
    --red-danger: #DC2626;
    --shadow-50: #1a1a2e;
    --shadow-100: #16213e;
    --shadow-200: #0f3460;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--white);
    transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--green-800); }
.nav-logo img {
    height: 36px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--brass-light); }
.nav.scrolled .nav-links a { color: var(--gray-600); }
.nav.scrolled .nav-links a:hover { color: var(--green-700); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--brass);
    color: var(--green-900) !important;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--brass-light); transform: translateY(-1px); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav.scrolled .hamburger span { background: var(--gray-800); }
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    display: block;
}
.mobile-menu a:last-child { border-bottom: none; }

/* Interior page nav - always solid bg */
.nav-solid {
    background: var(--green-900);
}
.nav-solid .nav-logo { color: var(--white); }
.nav-solid .nav-links a { color: rgba(255,255,255,0.85); }
.nav-solid .hamburger span { background: var(--white); }
.nav-solid.scrolled { background: rgba(15,35,24,0.97); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, #1a4030 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58,157,106,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brass-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--brass);
    border-radius: 50%;
}
.hero h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}
.hero h1 span { color: var(--brass); }
.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--brass);
    color: var(--green-900);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-primary:hover { background: var(--brass-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.25); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--green-800);
    border: 2px solid var(--green-800);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-outline:hover { background: var(--green-800); color: var(--white); }

/* ========== HERO SHOWCASE ========== */
.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.showcase-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 48px 40px;
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 440px;
}
.showcase-img {
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.showcase-img img {
    width: 100%;
    height: auto;
    display: block;
}
.showcase-cal {
    font-size: 13px;
    font-weight: 600;
    color: var(--brass);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.showcase-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.showcase-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}
.spec-item {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 16px;
}
.spec-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.spec-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
.showcase-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--brass);
    letter-spacing: -0.02em;
}
.price-unit {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
}
.price-box {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-left: auto;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}
.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
}
.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--white);
    border: 1px solid var(--gray-100);
}

/* ========== SECTIONS ========== */
.section { padding: 100px 24px; }
.section-dark { background: var(--green-900); color: var(--white); }
.section-light { background: var(--white); }
.section-alt { background: var(--off-white); }
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-dark .section-tag { color: var(--brass); }
.section-tag-line {
    width: 24px;
    height: 2px;
    background: var(--green-600);
    border-radius: 1px;
}
.section-dark .section-tag-line { background: var(--brass); }
.section-title {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-500);
}
.section-dark .section-desc { color: rgba(255,255,255,0.6); }

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card:hover {
    border-color: var(--green-600);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.product-img {
    height: 220px;
    background: linear-gradient(135deg, var(--green-900), var(--green-800));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.product-caliber-display {
    font-size: 56px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    letter-spacing: -0.04em;
    position: absolute;
}
.product-img-label {
    position: relative;
    z-index: 1;
    text-align: center;
}
.product-img-cal {
    font-size: 14px;
    font-weight: 700;
    color: var(--brass);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.product-img-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--brass);
    color: var(--green-900);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.product-body { padding: 28px; }
.product-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.product-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.product-spec {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    background: var(--gray-50);
    border-radius: 6px;
    color: var(--gray-600);
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}
.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--green-800);
}
.product-price-unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
}
.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--green-800);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.product-btn:hover { background: var(--green-700); }

/* ========== VIDEO SECTION ========== */
.video-section {
    background: var(--off-white);
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.video-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-800);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
}
.review-badge svg { color: var(--brass); }

/* ========== WHY LEAD-FREE ========== */
.leadfree-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.leadfree-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.leadfree-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 24px;
}
.leadfree-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--brass);
    margin-bottom: 4px;
}
.leadfree-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}
.leadfree-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.leadfree-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px;
    transition: border-color 0.3s;
}
.leadfree-card:hover { border-color: rgba(201,168,76,0.3); }
.leadfree-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.leadfree-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.leadfree-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

/* ========== COMPARISON TABLE ========== */
.compare-table-wrap {
    overflow-x: auto;
    margin-top: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.compare-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .eco { color: var(--brass); font-weight: 600; }
.compare-table .danger { color: var(--red-danger); }
.compare-table .safe { color: #22C55E; }

/* Light comparison table variant */
.compare-table-light {
    border: 1px solid var(--gray-100);
}
.compare-table-light th {
    color: var(--gray-500);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}
.compare-table-light td {
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.compare-table-light .eco { color: var(--green-700); }

/* ========== ABOUT ========== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-story h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.about-story p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}
.about-value {
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
}
.about-value-icon {
    font-size: 24px;
    margin-bottom: 12px;
}
.about-value h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.about-value p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0;
}
.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.founder-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow 0.3s;
}
.founder-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.founder-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}
.founder-info h3 {
    font-size: 17px;
    font-weight: 700;
}
.founder-info span {
    font-size: 13px;
    color: var(--gray-400);
}
.founder-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-100);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
}
.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    padding-right: 24px;
}
.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
    color: var(--gray-500);
}
.faq-item.active .faq-toggle {
    background: var(--green-800);
}
.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
    color: var(--white);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-500);
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 40px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; color: var(--brass); }
.contact-method-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-method-text p, .contact-method-text a {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    line-height: 1.6;
}
.contact-method-text a:hover { color: var(--green-700); }
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.contact-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(45,122,82,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--green-800);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.form-submit:hover { background: var(--green-700); }

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-inner h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.6);
    padding: 64px 24px 32px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    max-width: 300px;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--brass); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ========== PAGE HERO (interior pages) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.page-hero .breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}
.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.page-hero .breadcrumb a:hover { color: var(--brass); }

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card:hover {
    border-color: var(--green-600);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.blog-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(201,168,76,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-body {
    padding: 28px;
}
.blog-card-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.blog-card-meta {
    font-size: 13px;
    color: var(--gray-400);
}

/* Blog article */
.article-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px 100px;
}
.article-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 48px 0 16px;
    letter-spacing: -0.02em;
}
.article-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 12px;
}
.article-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 20px;
}
.article-content ul, .article-content ol {
    margin: 16px 0 24px 24px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--gray-600);
}
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--gray-800); font-weight: 600; }
.article-content blockquote {
    border-left: 4px solid var(--brass);
    padding: 16px 24px;
    margin: 28px 0;
    background: var(--gray-50);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--gray-600);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
    padding: 140px 24px 80px;
}
.product-detail-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.product-detail-img {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-900), var(--green-800));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-detail-img .product-caliber-display {
    font-size: 120px;
    color: rgba(255,255,255,0.06);
}
.product-detail-info h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}
.product-detail-info .product-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
}
.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-100);
}
.product-detail-price .price-main {
    font-size: 42px;
    font-weight: 800;
    color: var(--green-800);
}
.product-detail-price .price-per-round {
    font-size: 16px;
    color: var(--gray-400);
}
.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.product-spec-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
}
.product-spec-card .spec-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.product-spec-card .spec-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
}
.product-features {
    margin-bottom: 32px;
}
.product-features h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.product-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
}
.product-feature-item svg {
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Shadow product special style */
.product-img-shadow {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
}

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

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-showcase { display: flex; justify-content: center; }
    .leadfree-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .video-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-detail-inner { grid-template-columns: 1fr; gap: 40px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section { padding: 72px 20px; }
    .hero-inner { padding: 100px 20px 60px; }
    .products-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .leadfree-stats { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .trust-inner { gap: 24px; }
    .trust-item { flex: 1 1 calc(50% - 12px); min-width: 160px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .showcase-card { max-width: 100%; }
    .compare-table { font-size: 13px; }
    .compare-table th, .compare-table td { padding: 12px 14px; }
    .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .product-detail { padding: 100px 20px 60px; }
    .product-specs-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 20px 60px; }
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== EMAIL CAPTURE ========== */
.email-capture-strip {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
    padding: 32px 24px;
    text-align: center;
}
.email-capture-inner {
    max-width: 600px;
    margin: 0 auto;
}
.email-capture-strip h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.email-capture-strip p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}
.email-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}
.email-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-800);
    outline: none;
}
.email-form button {
    padding: 14px 24px;
    background: var(--brass);
    color: var(--green-900);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.email-form button:hover { background: var(--brass-light); }
.email-success {
    color: var(--brass-light);
    font-weight: 600;
    font-size: 16px;
    margin-top: 12px;
}
@media (max-width: 480px) {
    .email-form { flex-direction: column; }
}

/* ========== TRUST BADGES SECTION ========== */
.trust-badges-section {
    padding: 56px 24px;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.trust-badges-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.trust-badges-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}
.trust-badges-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.trust-badge-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: border-color 0.2s, transform 0.2s;
}
.trust-badge-item:hover .trust-badge-icon {
    border-color: var(--brass);
    transform: translateY(-2px);
}
.trust-badge-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.3;
}

/* ========== OUR STORY TEASER ========== */
.story-teaser {
    padding: 64px 24px;
    background: var(--green-900);
    text-align: center;
}
.story-teaser-inner {
    max-width: 680px;
    margin: 0 auto;
}
.story-teaser h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}
.story-teaser p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 100px 24px;
    background: var(--off-white);
}
.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.testimonial-quote {
    font-size: 32px;
    color: var(--brass);
    font-weight: 900;
    line-height: 0.5;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}
.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}
.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
}
.testimonial-role {
    font-size: 12px;
    color: var(--gray-400);
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ========== STATE SHIPPING CHECKER ========== */
.state-checker-section {
    padding: 80px 24px;
    background: var(--white);
}
.state-checker-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.state-checker-form {
    display: flex;
    gap: 12px;
    margin: 28px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.state-checker-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    color: var(--gray-800);
    outline: none;
    text-align: center;
    letter-spacing: 0.1em;
}
.state-checker-form input:focus { border-color: var(--green-600); }
.state-checker-form button {
    padding: 14px 24px;
    background: var(--green-800);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.state-checker-form button:hover { background: var(--green-700); }
.state-result {
    margin-top: 20px;
}
.state-available {
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;
}
.state-available strong {
    font-size: 16px;
    color: #16A34A;
    display: block;
    margin-bottom: 6px;
}
.state-available p { font-size: 14px; color: #4B5563; margin: 0 0 12px; }
.state-restricted {
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;
}
.state-restricted strong {
    font-size: 16px;
    color: #92400E;
    display: block;
    margin-bottom: 6px;
}
.state-restricted p { font-size: 14px; color: #4B5563; margin: 0; }
.state-error {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px 24px;
}
.state-error p { font-size: 14px; color: var(--gray-500); margin: 0; }
@media (max-width: 480px) {
    .state-checker-form { flex-direction: column; }
}

/* ========== STICKY SHOP BUTTON ========== */
.sticky-shop-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: var(--brass);
    color: var(--green-900);
    padding: 14px 24px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}
.sticky-shop-btn.visible {
    opacity: 1;
    transform: translateY(0);
}
.sticky-shop-btn:hover {
    background: var(--brass-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}
@media (max-width: 480px) {
    .sticky-shop-btn { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 14px; }
}

/* ========== FOOTER EMAIL SIGNUP ========== */
.footer-signup {
    padding: 32px 0 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-signup h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-signup p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.footer-email-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}
.footer-email-form input[type="email"] {
    flex: 1;
    padding: 11px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--white);
    outline: none;
}
.footer-email-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-email-form input:focus { border-color: var(--brass); }
.footer-email-form button {
    padding: 11px 20px;
    background: var(--brass);
    color: var(--green-900);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.footer-email-form button:hover { background: var(--brass-light); }
@media (max-width: 480px) {
    .footer-email-form { flex-direction: column; max-width: 100%; }
}

/* ========== FFL FINDER PAGE ========== */
.ffl-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.ffl-form-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.restricted-states-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.state-tag {
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    color: #92400E;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .ffl-info-grid { grid-template-columns: 1fr; }
}

/* ========== PARTNER PAGE ========== */
.partner-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.partner-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.partner-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.partner-benefit-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.partner-benefit-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
