/* ==========================================================================
   BulkArganOil.com — Main Stylesheet
   Theme: Premium Dark Luxury
   ========================================================================== */

:root {
    --bg: #0E0C09;
    --bg-card: #1A1713;
    --bg-card-hover: #221e19;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #b08d38;
    --gold-muted: rgba(201, 168, 76, 0.15);
    --text: #F5F0E8;
    --text-muted: #8A7D6A;
    --border: rgba(201, 168, 76, 0.2);
    --border-light: rgba(245, 240, 232, 0.1);
    
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.15);
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --max-w: 1280px;
    --container-px: 24px;
    --section-py: 120px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Noise Texture Overlay */
body::before {
    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='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--text);
}

h1 { font-size: clamp(3rem, 5vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
h3 { font-size: clamp(2rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 2vw, 2rem); }

p { margin: 0 0 1.5rem; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.5rem 0; padding-left: 1.5rem; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

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

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

.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: #0E0C09;
    animation: shimmer 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    color: #0E0C09;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

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

.btn-outline:hover {
    background: var(--gold-muted);
    color: var(--gold-light);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(14, 12, 9, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: block;
    width: 180px;
}

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.toggle-bar {
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
    border-radius: 1px;
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 999;
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-cta {
    margin-bottom: 16px;
    width: 100%;
}

.btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,12,9,0.92) 0%, rgba(14,12,9,0.6) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gold-light);
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-image-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .hero-image-wrapper {
        display: block;
        position: relative;
    }
    
    .hero-image-wrapper::after {
        content: '';
        position: absolute;
        inset: -20px;
        border: 1px solid var(--gold);
        border-radius: var(--radius-lg);
        z-index: -1;
    }
    
    .hero-image-wrapper img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-gold);
    }
}

/* ==========================================================================
   Trust Logos Strip
   ========================================================================== */
.trust-strip {
    background: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-strip-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logos svg,
.trust-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.trust-logos svg:hover,
.trust-logos img:hover {
    filter: grayscale(0%) opacity(1);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.card-img-wrap {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #0E0C09;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    z-index: 2;
}

.card-content {
    padding: 32px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

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

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Image Placeholders
   ========================================================================== */
.img-placeholder {
    background: linear-gradient(135deg, #1a1510 0%, #2a2015 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-muted);
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-align: center;
    padding: 20px;
}

.img-placeholder::after {
    content: 'Image Area';
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Default: ALWAYS visible. JS will add .will-animate to enable scroll effects. */
.reveal {
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only hide when JS explicitly marks element for animation */
.reveal.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

/* Revealed state — overrides will-animate */
.reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

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

/* ==========================================================================
   Stats Counter
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-block {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */
.timeline {
    position: relative;
    padding-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
    display: none;
}

@media (min-width: 768px) {
    .timeline::before {
        display: block;
    }
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.timeline-step {
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--bg);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Footer Overrides & Layout
   ========================================================================== */
.site-footer {
    background: var(--bg-card);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    display: block;
    margin-bottom: 24px;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 240, 232, 0.05);
    border-radius: 50%;
    color: var(--text);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: #0E0C09;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    margin: 0;
}

/* ==========================================================================
   Quote Form Specifics
   ========================================================================== */
.quote-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 0;
}

@media (min-width: 1024px) {
    .quote-layout {
        grid-template-columns: 1fr 350px;
    }
}

.quote-sidebar {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    height: fit-content;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(245, 240, 232, 0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

@media (min-width: 768px) {
    .radio-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.radio-card input:checked + .radio-card-content {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

/* Checkbox specific */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.checkbox-label input {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

/* Multi-step form */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-progress {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    justify-content: space-between;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 15px;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 2;
    transition: width 0.4s ease;
}

.step-indicator {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
}

.step-indicator.active .step-dot {
    border-color: var(--gold);
    background: var(--gold);
    color: #0E0C09;
}

.step-indicator.completed .step-dot {
    border-color: var(--gold);
    background: var(--bg-card);
    color: var(--gold);
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.step-indicator.active .step-label {
    color: var(--gold);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding-bottom: 24px;
    color: var(--text-muted);
}

/* ==========================================================================
   Tables
   ========================================================================== */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 24px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

th, td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
}

th {
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

tr:hover td {
    background: rgba(245, 240, 232, 0.02);
}

/* ==========================================================================
   Page Headers (Inner Pages)
   ========================================================================== */
.page-header {
    padding: calc(var(--header-height) + 60px) 0 80px;
    background: linear-gradient(to bottom, #110e0a, var(--bg));
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.page-title {
    margin-bottom: 24px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .active {
    color: var(--gold);
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
}

.blog-card .card-title {
    font-size: 1.25rem;
    line-height: 1.4;
}

.single-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e0d8cc;
}

.post-content h2 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--gold-light);
}

.post-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.post-content ul, .post-content ol {
    margin-bottom: 32px;
}

.post-content li {
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    gap: 16px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

/* Error States */
.error-msg {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 8px;
    display: none;
}

.form-control.error {
    border-color: #ff6b6b;
}

.form-control.error + .error-msg {
    display: block;
}

/* Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-5 { margin-bottom: 48px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-5 { margin-top: 48px !important; }

/* Form Select Option Override */
select option {
    background-color: var(--bg);
    color: var(--text);
}

/* ==========================================================================
   HERO — Full Width Cinematic (NEW)
   ========================================================================== */

/* Override old 2-col grid for homepage hero */
.hero--fullwidth .hero-grid,
.hero--fullwidth .container {
    display: block;
}

.hero--fullwidth {
    min-height: clamp(560px, 92vh, 960px);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero--fullwidth .hero-overlay {
    background: linear-gradient(
        105deg,
        rgba(10,8,5,0.94) 0%,
        rgba(10,8,5,0.82) 40%,
        rgba(14,12,9,0.55) 70%,
        rgba(14,12,9,0.35) 100%
    );
}

/* Hero subtitle — readable over any background */
.hero--fullwidth .hero-subtitle {
    color: rgba(245, 240, 232, 0.97);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    text-shadow:
        0 1px 3px rgba(0,0,0,0.9),
        0 2px 12px rgba(0,0,0,0.8),
        0 4px 24px rgba(0,0,0,0.6);
    max-width: 580px;
    margin-bottom: 2.5rem;
    /* Subtle frosted pill behind text for max readability */
    background: rgba(10,8,5,0.28);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 12px 18px;
    border-radius: 8px;
    border-left: 3px solid rgba(201,168,76,0.5);
}

/* Full-width centered hero content container */
.hero-center {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: clamp(40px, 8vh, 80px);
    padding-bottom: clamp(40px, 8vh, 80px);
}

.hero--fullwidth .hero-content {
    max-width: 820px;
    width: 100%;
}

/* Hero H1 — bigger, bolder on full-width layout */
.hero--fullwidth h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.9),
        0 4px 20px rgba(0,0,0,0.7),
        0 8px 40px rgba(0,0,0,0.5);
}

.hero--fullwidth h1 em {
    font-style: italic;
    color: var(--gold-light);
    text-shadow:
        0 0 20px rgba(201,168,76,0.4),
        0 2px 8px rgba(0,0,0,0.8);
}

/* Eyebrow on hero also needs shadow */
.hero--fullwidth .eyebrow {
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

/* Urgency badge */
.hero-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.urgency-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: urgency-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

/* Trust bar — more items on full-width */
.hero--fullwidth .hero-trust-bar {
    flex-wrap: wrap;
    gap: 20px 32px;
}

/* Larger CTA buttons */
.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

@media (max-width: 479px) {
    .hero-buttons .btn-lg {
        width: 100%;
        justify-content: center;
    }
    .hero--fullwidth h1 {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
}

/* ==========================================================================
   MOBILE NAV — Right-Side Drawer (OVERRIDES top-slide)
   ========================================================================== */

/* Override old slide-from-top behaviour */
.mobile-menu {
    top: 0;
    left: auto;
    right: 0;
    width: min(360px, 90vw);
    height: 100vh;
    transform: translateX(100%);    /* slide from right */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
    border-left: 1px solid var(--border);
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Backdrop overlay when drawer is open */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14,12,9,0.7);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.nav-backdrop.active {
    display: block;
}

/* Header CTA — always visible on all sizes */
.header-cta {
    display: inline-flex !important;
    padding: 10px 20px;
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .header-cta {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

/* Ensure mobile toggle is always to the right of the CTA */
@media (max-width: 1023px) {
    .header-inner {
        gap: 12px;
    }
}

/* ==========================================================================
   MOBILE STICKY BOTTOM CTA BAR (Conversion)
   ========================================================================== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
    /* Only show on mobile */
}

@media (min-width: 768px) {
    .mobile-cta-bar {
        display: none;
    }
}

.mobile-cta-bar a {
    color: #0E0C09;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Push body content up so sticky bar doesn't cover content */
@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
    /* But not on the quote page itself */
    body.page-quote {
        padding-bottom: 0;
    }
}

/* ==========================================================================
   RESPONSIVE SECTION PADDING (Override fixed --section-py)
   ========================================================================== */
.section {
    padding: clamp(3rem, 8vw, 7rem) 0;
}

/* Container horizontal padding */
.container {
    padding-left: clamp(16px, 5vw, 32px);
    padding-right: clamp(16px, 5vw, 32px);
}

/* ==========================================================================
   RESPONSIVE HERO TRUST BAR
   ========================================================================== */
@media (max-width: 767px) {
    .hero-trust-bar {
        gap: 12px 20px;
    }
    .hero-trust-item {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   TOUCH TARGET MINIMUM (44x44)
   ========================================================================== */
.btn,
.nav-link,
.mobile-nav-link,
.social-icon,
.footer-links a,
.faq-question {
    min-height: 44px;
}

.social-icon {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
}

/* ==========================================================================
   RESPONSIVE TYPOGRAPHY
   ========================================================================== */
@media (max-width: 479px) {
    h1 { font-size: clamp(2rem, 9vw, 3rem); }
    h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    h3 { font-size: clamp(1.4rem, 5vw, 2rem); }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .card-content {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
}

/* ==========================================================================
   RESPONSIVE FORMS
   ========================================================================== */
@media (max-width: 767px) {
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .quote-layout {
        padding: 32px 0;
        gap: 32px;
    }
}

/* ==========================================================================
   FOCUS STATES (Accessibility)
   ========================================================================== */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ==========================================================================
   EXIT INTENT POPUP
   ========================================================================== */
.exit-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14,12,9,0.85);
    z-index: 9000;
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 6vw, 56px);
    max-width: 560px;
    width: 92%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7), var(--shadow-gold);
    animation: popupIn 0.35s cubic-bezier(0.4,0,0.2,1);
}

@keyframes popupIn {
    from { opacity:0; transform: scale(0.92) translateY(20px); }
    to   { opacity:1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.exit-popup-close:hover {
    background: var(--gold-muted);
    color: var(--gold);
}

.exit-popup h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
    color: var(--gold-light);
}

.exit-popup p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.exit-popup-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.exit-popup-form input {
    flex: 1;
    min-width: 200px;
}

/* ==========================================================================
   QUOTE PAGE — Trust Bar Above Form
   ========================================================================== */
.quote-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background: rgba(201,168,76,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 500;
}

.quote-trust-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Social proof near submit */
.social-proof-line {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-proof-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

/* ==========================================================================
   PRODUCT PAGES — Responsive Fixes
   ========================================================================== */

/* The 2-col product layout (image+table | sidebar) collapses on tablet */
@media (max-width: 900px) {
    /* Override the inline grid-template-columns: 1.2fr 1fr */
    .section .grid-3[style*="1.2fr 1fr"],
    .section > .container > .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Un-stick the sidebar on small screens */
    .quote-sidebar[style*="sticky"] {
        position: static !important;
    }
}

/* Features grid (Use Cases / Provided Docs) — stack on mobile */
.features-grid {
    display: grid;
    gap: 20px;
}

/* Desktop: 2 columns */
@media (min-width: 601px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile: single column — each card gets full width */
@media (max-width: 600px) {
    .features-grid,
    .features-grid[style*="1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* Feature block list items — prevent word splitting */
.feature-block ul li {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.5;
    margin-bottom: 6px;
}

.feature-block {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    min-width: 0; /* allow grid cell to shrink properly */
}


