/* =====================================================
   1. THEME VARIABLES & CORE RESET
===================================================== */
:root {
    /* Primary Brand Palette */
    --color-brand: #f97316;
    --color-brand-hover: #ea580c;
    --brand-gradient: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    --brand-glow: rgba(249, 115, 22, 0.35);
    --color-brand-soft: rgba(249, 115, 22, 0.08);

    /* Surfaces, Borders & Text Tones */
    --color-amber-border: #fed7aa;
    --bg-surface-warm: #fafaf9;
    --text-dark: #1c1917;
    --text-muted: #78716c;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-surface-warm);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.hero-paragraph {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
}


/* =====================================================
   2. HEADER & NAVIGATION
===================================================== */
.custom-navbar {
    background-color: rgba(250, 250, 249, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-amber-border) !important;
    padding: 0.75rem 0;
    transition: all 0.2s ease-in-out;
    z-index: 1030;
}

/* Unique Stratadeets Logo Styling */
.brand-name {
    font-family: 'Lobster', cursive !important;
    font-weight: 400 !important;
    font-size: 2rem !important;
    letter-spacing: -0.02em;
    line-height: 1;
}

.strata {
    color: var(--color-brand, #f97316) !important;
}

.deets {
    color: var(--text-dark, #1c1917) !important;
}

.nav-link-modern {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.nav-link-modern:hover {
    color: var(--color-brand);
    background-color: var(--color-brand-soft);
}


/* =====================================================
   3. BUTTONS, BADGES & UTILITIES
===================================================== */
/* Primary Action Button */
.btn-energetic,
.hero-button {
    background: var(--brand-gradient) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 9999px;
    box-shadow: 0 6px 18px var(--brand-glow) !important;
    transition: all 0.25s ease !important;
}

.btn-energetic:hover,
.hero-button:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.45) !important;
}

/* Secondary Outline Button */
.btn-outline-energetic {
    color: var(--color-brand) !important;
    border: 2px solid var(--color-brand) !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
}

.btn-outline-energetic:hover {
    background: var(--brand-gradient) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

/* Badges */
.badge-energetic {
    background-color: var(--color-brand-soft);
    color: var(--color-brand);
    font-size: 0.9rem;
}

.badge i {
    font-size: 1rem;
}

/* Global Helpers */
.bg-surface {
    background-color: var(--bg-surface-warm) !important;
}

.bg-brand {
    background-color: var(--color-brand) !important;
}

.text-brand {
    color: var(--color-brand) !important;
}

.bg-brand-soft {
    background-color: var(--color-brand-soft) !important;
}

.border-brand {
    border-color: var(--color-brand) !important;
}

.max-w-700 {
    max-width: 700px;
}

.shadow-brand {
    box-shadow: 0 12px 30px -5px rgba(249, 115, 22, 0.2);
}


/* =====================================================
   4. LAYOUT SECTIONS & HERO
===================================================== */
.landing-section {
    padding: 5rem 0;
}

.section-heading {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-vibrant {
    background:
        radial-gradient(
            circle at top center,
            rgba(249, 115, 22, 0.15),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            #fffbeb 0%,
            var(--bg-surface-warm) 100%
        );
}


/* =====================================================
   5. CARDS & COMPONENTS
===================================================== */
.card-modern {
    border: 1px solid rgba(251, 146, 60, 0.18) !important;
    box-shadow: 0 10px 25px -5px rgba(120, 113, 108, 0.06) !important;
}

.card-problem-solution {
    position: relative;
    overflow: hidden;
}

/* Feature Grid Boxes */
.feature-box {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px -5px rgba(249, 115, 22, 0.12) !important;
}

.icon-bubble {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Pricing Card Features */
.pricing-example {
    border-color: var(--color-amber-border) !important;
}

.pricing-calculation strong,
.pricing-calculation span {
    color: var(--color-brand);
}


/* =====================================================
   6. PARALLAX VISUAL BREAK
===================================================== */
.image-break {
    height: 420px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* =====================================================
   7. FOOTER
===================================================== */
.footer-modern {
    background-color: #ffffff;
    border-top: 1px solid var(--color-amber-border) !important;
}

.footer-link-subtle {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-subtle:hover {
    color: var(--color-brand);
}

/* Subtle Footer Logo Override */
.footer-brand-name {
    font-family: 'Lobster', cursive !important;
    font-size: 1.15rem !important; /* Scaled down for a subtle, low-profile look */
    line-height: 1;
    opacity: 0.9;
}


/* =====================================================
   8. MEDIA QUERIES & RESPONSIVE BREAKPOINTS
===================================================== */
/* Desktop Breakpoints */
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid var(--color-amber-border);
    }

    .problem-side {
        border-right: 1px solid var(--color-amber-border);
    }
}

/* Mobile / Tablet Breakpoints */
@media (max-width: 991.98px) {
    .problem-side {
        border-bottom: 1px solid var(--color-amber-border);
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .image-break {
        background-attachment: scroll;
        height: 250px;
    }
}