/* =====================================================
   GLOBAL RESET
===================================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Subtle background grid */

body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
}

/* =====================================================
   QUINTESSENTIAL ATMOSPHERIC DEPTH
===================================================== */

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle at 20% 30%,
        rgba(255,153,51,0.06),
        transparent 40%
    ),
    radial-gradient(
        circle at 80% 70%,
        rgba(19,136,8,0.06),
        transparent 40%
    );
    z-index: -1;
    pointer-events: none;
}

/* =====================================================
   SECTION SEPARATORS
===================================================== */

.hero-extended,
.export-problem-deep,
.execution-framework,
.technical-depth,
.case-scenario,
.roadmap,
.authority-closure {
    position: relative;
}

.hero-extended::after,
.export-problem-deep::after,
.execution-framework::after,
.technical-depth::after,
.case-scenario::after,
.roadmap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
}

/* =====================================================
   EXECUTIVE TYPOGRAPHY REFINEMENT
===================================================== */

h1, h2, h3 {
    letter-spacing: -0.5px;
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

/* =====================================================
   QUINTESSENTIAL GLASS CARDS
===================================================== */

.card,
.price-card,
.metric-card {
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 20px 60px rgba(0,0,0,0.4);
}

.card:hover,
.price-card:hover,
.metric-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.3);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 25px 80px rgba(0,0,0,0.6);
}
/* =====================================================
   ROADMAP TIMELINE STYLE
===================================================== */

.roadmap {
    position: relative;
}

.roadmap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 120px;
    bottom: 120px;
    width: 1px;
    background: rgba(255,255,255,0.1);
    transform: translateX(-50%);
}

.roadmap p:first-of-type {
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: center;
}
/* =====================================================
   PREMIUM BUTTON
===================================================== */

.section-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s cubic-bezier(.16,1,.3,1);
}

.section-animate.active {
    opacity: 1;
    transform: translateY(0);
}

footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(12px);
}

/* =====================================================
   CONTAINER
===================================================== */

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

/* =====================================================
   HEADER
===================================================== */

.warroom-header {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(18px);
    background: rgba(15, 15, 15, 0.7);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
    transition: 0.3s ease;
}

.warroom-header.scrolled {
    padding: 8px 0;
    background: rgba(10, 10, 10, 0.85);
}

.nav-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
}

.logo span {
    margin-right: 4px;
}

.b1 { color: #ff9933; }
.b2 { color: #ffffff; }
.b3 { color: #138808; }

.division {
    margin-left: 12px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* NAV */

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-cta {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.nav-cta:hover {
    background: #fff;
    color: #000;
}

/* MOBILE */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: white;
}

@media (max-width: 900px) {

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background: rgba(10,10,10,0.95);
        width: 220px;
        padding: 20px;
        transform: translateX(100%);
        transition: 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }
}

/* =====================================================
   HERO
===================================================== */

.hero {
    text-align: center;
    padding: 180px 0 140px 0;
    background: linear-gradient(135deg, #111, #1a1a1a);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 25px;
}

.seo-boost {
    font-size: 1.05rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.primary-btn {
    background: #ffffff;
    color: #000;
    padding: 14px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 40px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.25);
}

/* =====================================================
   LONG FORM AUTHORITY SECTIONS
===================================================== */

.hero-extended,
.export-problem-deep,
.execution-framework,
.technical-depth,
.case-scenario,
.roadmap,
.authority-closure {
    padding: 120px 0;
}

.hero-extended,
.case-scenario,
.roadmap {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.01)
    );
}

/* Headings */

.export-problem-deep h2,
.execution-framework h2,
.technical-depth h2,
.case-scenario h2,
.roadmap h2,
.authority-closure h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.execution-framework h3 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding: 14px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.execution-framework h3:hover {
    transform: translateX(6px);
    background: rgba(255,255,255,0.08);
}

/* Paragraph Styling */

.hero-extended p,
.export-problem-deep p,
.execution-framework p,
.technical-depth p,
.case-scenario p,
.roadmap p,
.authority-closure p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 22px;
    max-width: 850px;
}

/* Bullet Lists */

.export-problem-deep ul,
.case-scenario ul,
.technical-depth ul {
    list-style: none;
    margin-top: 20px;
}

.export-problem-deep li,
.case-scenario li,
.technical-depth li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
}

.export-problem-deep li::before,
.case-scenario li::before,
.technical-depth li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933, #138808);
}

/* Roadmap emphasis */

.roadmap p:first-of-type {
    font-weight: 600;
    opacity: 0.95;
    line-height: 2;
}

/* Authority Closure Center */

.authority-closure {
    text-align: center;
}

.authority-closure p {
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   GRID + CARDS
===================================================== */

.grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card,
.price-card {
    background: #1a1a1a;
    padding: 30px;
    border: 1px solid #333;
    transition: 0.3s ease;
}

.card:hover,
.price-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
}

.price {
    font-size: 1.5rem;
    margin: 10px 0;
}

/* =====================================================
   INTELLIGENCE DASHBOARD
===================================================== */

.intelligence {
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.metric-card {
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 40px rgba(255,255,255,0.03);
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 60px rgba(255,255,255,0.1);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   FORM
===================================================== */

.assessment form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

input,
textarea {
    padding: 12px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: white;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #ffffff;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #222;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2rem;
    }

    .export-problem-deep h2,
    .execution-framework h2,
    .technical-depth h2,
    .case-scenario h2,
    .roadmap h2,
    .authority-closure h2 {
        font-size: 1.7rem;
    }

    .hero-extended p,
    .export-problem-deep p,
    .execution-framework p,
    .technical-depth p,
    .case-scenario p,
    .roadmap p,
    .authority-closure p {
        font-size: 0.95rem;
    }
}