/* ===================================
   MILITANT GRIND - BLACK OPS ELITE
   No-BS Dark Operator Aesthetic
   Military Gold + Jet Black System
   =================================== */

/* ===================================
   COLOR SYSTEM - BLACK OPS COMMAND
   =================================== */
:root {
    /* Primary Palette */
    --black-ops: #0D0D0D;           /* Primary black */
    --charcoal-ops: #1F1F1F;        /* Section alternation */
    --military-gold: #F2CB05;       /* Action/CTA */
    --light-gray: #EAEAEA;          /* Primary text */
    --red-alert: #FF3C38;           /* Danger/urgency (sparingly) */
    --steel: #7A7A7A;               /* Secondary text */

    /* Typography Stack */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-tactical: 'Unica One', 'Orbitron', sans-serif;

    /* Spacing */
    --section-padding: 8rem 0;
    --section-padding-mobile: 4rem 0;

    /* Transitions */
    --transition-snap: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
}

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*:where(:not(:hover)) {
    transition-duration: 0.15s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-gray);
    background: var(--black-ops);
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - COMMAND HIERARCHY
   =================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--military-gold);
    font-family: var(--font-tactical);
}

.section-title-large {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.05;
    color: var(--light-gray);
}

.section-title-medium {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--light-gray);
    margin:15px 0;
}

/* Tactical Accent Styling */
.text-handwritten-accent, .text-handwritten-accent-light {
    font-family: var(--font-tactical);
    color: var(--military-gold);
    font-style: normal;
    text-transform: uppercase;
    font-size:30px;
}

.text-underline-accent {
    position: relative;
    color: var(--military-gold);
}

/* ===================================
   IMAGE SLIDER - SHAH CUSTOM
   =================================== */

/* ===== Multi Column Slider ===== */
.mc-slider {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.mc-viewport {
  overflow: hidden;
}

.mc-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
}

/* Item Card */
.mc-item {
  flex: 0 0 calc(25% - 15px);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:30px;
}
.mc-item img{width:250px;}

/* Navigation Buttons */
.mc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  background: #f2cb05;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.mc-btn.prev { left: -15px; }
.mc-btn.next { right: -15px; }

/* Responsive Columns */
@media (max-width: 1024px) {
  .mc-item { flex-basis: calc(33.333% - 14px); }
}

@media (max-width: 768px) {
  .mc-item { flex-basis: calc(50% - 10px); }
}

@media (max-width: 480px) {
  .mc-item { flex-basis: 100%; }
}


/* ===================================
   BUTTON SYSTEM - BLACK OPS CTA
   =================================== */
.btn-black-ops {
    background-color: var(--military-gold);
    color: var(--black-ops);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 0;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-tactical);
    box-shadow: 0 0 0 2px var(--military-gold) inset;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-black-ops:hover {
    background-color: var(--black-ops);
    color: var(--military-gold);
    box-shadow: 0 0 0 2px var(--military-gold), 0 0 20px rgba(242, 203, 5, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-gray);
    padding: 1.25rem 2.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 0;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-tactical);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    color: var(--black-ops);
    transform: translateY(-2px);
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
}

/* Section Alternation */
.section-dark {
    background: var(--black-ops);
}

.section-charcoal {
    background: var(--charcoal-ops);
}

/* ===================================
   HEADER SYSTEM - PRODUCTION STABLE
   =================================== */

/* Consolidated Header Wrapper */
.main-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: var(--black-ops);
}

/* Top Bar */
.top-bar {
    background: #000;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(242, 203, 5, 0.15);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-links a {
    color: var(--steel);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: var(--military-gold);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.top-bar-cta {
    color: var(--military-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Orbitron', sans-serif;
    transition: color 0.2s ease;
}

.top-bar-cta:hover {
    color: var(--light-gray);
}

/* Navigation Bar */
.nav {
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--black-ops);
    border-bottom: 1px solid rgba(242, 203, 5, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-family: 'Orbitron', sans-serif;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--military-gold);
}

.nav-apply-btn {
    background: var(--military-gold);
    color: var(--black-ops);
    padding: 0.75rem 1.75rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.nav-apply-btn:hover {
    background: var(--black-ops);
    color: var(--military-gold);
    box-shadow: 0 0 0 2px var(--military-gold), 0 0 15px rgba(242, 203, 5, 0.3);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--military-gold);
    transition: all 0.3s ease;
}

/* Mobile Toggle Animation */
.mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   HERO SECTION - VISUAL KILL SHOT
   =================================== */
.hero-section {
    background: var(--black-ops);
    padding: 12rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.headline-primary {
    display: block;
    color: var(--light-gray);
    font-size:40px;
    line-height:50px;
    margin-bottom:15px;
}

.headline-secondary {
    display: block;
    color: var(--steel);
    font-size: 3.5rem;
}

.headline-tertiary {
    display: block;
    color: var(--military-gold);
    font-size: 2.5rem;
    margin-top: 1rem;
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--steel);
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border: 2px solid var(--military-gold);
    filter: grayscale(100%) contrast(1.2);
}

/* ===================================
   HERO PREMIUM - FLEXBOX LAYOUT
   =================================== */
.hero-premium {
    background: var(--black-ops);
    padding: 8rem 0 6rem;
    min-height: 90vh;
    position: relative;
}

.hero-premium-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.hero-image-side {
    flex: 0 0 500px;
    width: 500px;
}

.hero-portrait-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--charcoal-ops) 0%, var(--black-ops) 100%);
    border: 2px solid var(--military-gold);
}

.hero-portrait-wrapper::before {
    content: 'HERO IMAGE PLACEHOLDER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(242, 203, 5, 0.15);
    text-align: center;
    z-index: 0;
    width: 80%;
}

.hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    background: #000;
}

.badge-watermark {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(13, 13, 13, 0.95);
    border: 2px solid var(--military-gold);
    padding: 0.8rem 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--military-gold);
    line-height: 1.5;
    z-index: 10;
}

.hero-quote-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(31, 31, 31, 0.92));
    border-left: 3px solid var(--military-gold);
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.hero-quote-overlay p {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    color: var(--military-gold);
    line-height: 1.5;
    margin: 0;
}

.hero-credentials {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(31, 31, 31, 0.6);
    border-left: 3px solid var(--military-gold);
}

.credential-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--military-gold);
    margin-bottom: 0.4rem;
}

.credential-detail {
    font-size: 0.85rem;
    color: var(--steel);
    line-height: 1.6;
    margin-bottom: 0.2rem;
}

.hero-messaging-side {
    flex: 1;
    padding-top: 1rem;
}

/* ===================================
   TRUST BAR - RESULTS METRICS
   =================================== */
.trust-bar {
    background: var(--charcoal-ops);
    padding: 4rem 0;
    border-top: 1px solid rgba(242, 203, 5, 0.2);
    border-bottom: 1px solid rgba(242, 203, 5, 0.2);
}

.trust-bar-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--military-gold);
    text-align: center;
    margin-bottom: 2.5rem;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-metric {
    text-align: center;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--military-gold);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: var(--steel);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   PAIN SECTION - PROBLEM AMPLIFICATION
   =================================== */
.pain-section {
    background: var(--black-ops);
    padding: var(--section-padding);
}

.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.pain-card {
    background: var(--charcoal-ops);
    padding: 3rem;
    border: 1px solid rgba(242, 203, 5, 0.15);
    position: relative;
    transition: var(--transition-smooth);
}

.pain-card:hover {
    border-color: var(--military-gold);
    transform: translateY(-4px);
}

.pain-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(242, 203, 5, 0.2);
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.pain-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--military-gold);
    margin-bottom: 1.5rem;
}

.pain-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--steel);
    margin-bottom: 2rem;
}

.pain-result {
    font-size: 1rem;
    color: var(--red-alert);
    font-weight: 700;
    font-style: italic;
    padding: 1rem;
    background: rgba(255, 60, 56, 0.1);
    border-left: 3px solid var(--red-alert);
}

/* ===================================
   COST OF DELAY BOX
   =================================== */
.cost-of-delay-box {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 60, 56, 0.1);
    border: 2px solid var(--red-alert);
}

.cost-of-delay-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--military-gold);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.cost-item {
    text-align: center;
    padding: 2rem;
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(255, 60, 56, 0.3);
}

.cost-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red-alert);
    margin-bottom: 0.75rem;
}

.cost-item p {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.cost-kicker {
    text-align: center;
    font-size: 1.25rem;
    color: var(--military-gold);
    font-weight: 700;
    font-style: italic;
    margin-top: 2rem;
}

/* ===================================
   VSL SECTION - VIDEO BRIDGE
   =================================== */
.vsl-section {
    background: var(--charcoal-ops);
    padding: var(--section-padding);
}

.vsl-container {
    max-width: 900px;
    margin: 0 auto;
}

.vsl-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--black-ops);
    border: 2px solid var(--military-gold);
    margin-bottom: 3rem;
}

.vsl-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0D0D0D 0%, #1F1F1F 100%);
    cursor: pointer;
}

.vsl-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--military-gold);
    margin-bottom: 1rem;
}

.vsl-placeholder-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-gray);
}

.vsl-bullets {
    background: var(--black-ops);
    padding: 3rem;
    border: 1px solid rgba(242, 203, 5, 0.2);
}

.vsl-bullets h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--military-gold);
    margin-bottom: 2rem;
}

.vsl-bullets ul {
    list-style: none;
    padding: 0;
}

.vsl-bullets li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--steel);
    border-bottom: 1px solid rgba(242, 203, 5, 0.1);
}

.vsl-bullets li:last-child {
    border-bottom: none;
}

.vsl-bullets li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--military-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===================================
   HOW IT WORKS - 3-STEP PROTOCOL
   =================================== */
.how-it-works-section {
    background: var(--black-ops);
    padding: var(--section-padding);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--charcoal-ops);
    padding: 3rem;
    border: 1px solid rgba(242, 203, 5, 0.15);
    border-left: 4px solid var(--military-gold);
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-left-color: var(--red-alert);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(242, 203, 5, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--military-gold);
    margin-bottom: 1.5rem;
}

.step-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--steel);
}

/* ===================================
   OFFER STACK - DELIVERABLES
   =================================== */
.offer-stack-section {
    background: var(--charcoal-ops);
    padding: var(--section-padding);
}

.offer-deliverables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.deliverable-card {
    background: var(--black-ops);
    padding: 2.5rem;
    border: 1px solid rgba(242, 203, 5, 0.15);
    border-left: 4px solid var(--military-gold);
    transition: var(--transition-smooth);
}

.deliverable-card:hover {
    border-left-color: var(--red-alert);
    transform: translateX(8px);
}

.deliverable-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--military-gold);
    margin-bottom: 1rem;
}

.deliverable-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--steel);
}

.deliverable-outcome {
    grid-column: 1 / -1;
    background: rgba(242, 203, 5, 0.1);
    border-left-color: var(--red-alert);
    text-align: center;
    padding: 3rem;
}

.offer-guarantee {
    background: rgba(255, 60, 56, 0.1);
    padding: 2.5rem;
    border: 2px solid var(--red-alert);
    text-align: center;
}

.offer-guarantee strong {
    color: var(--military-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   COMPARISON TABLE - BEFORE/AFTER
   =================================== */
.comparison-table-section {
    background: var(--black-ops);
    padding: var(--section-padding);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-col {
    background: var(--charcoal-ops);
    padding: 3rem;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.comparison-before {
    border-color: var(--red-alert);
}

.comparison-after {
    border-color: var(--military-gold);
    background: rgba(242, 203, 5, 0.05);
}

.comparison-col h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.comparison-before h3 {
    color: var(--red-alert);
}

.comparison-after h3 {
    color: var(--military-gold);
}

.comparison-col ul {
    list-style: none;
    padding: 0;
}

.comparison-col li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(242, 203, 5, 0.1);
}

.comparison-col li:last-child {
    border-bottom: none;
}

.comparison-before li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--red-alert);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-after li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--military-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===================================
   PROOF SECTION - TESTIMONIALS
   =================================== */
.proof-section {
    background: var(--charcoal-ops);
    padding: var(--section-padding);
}

.proof-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--black-ops);
    padding: 4rem;
    border: 1px solid rgba(242, 203, 5, 0.2);
    border-left: 4px solid var(--military-gold);
    margin-top: 3rem;
}

.testimonial-intro {
    font-size: 1.125rem;
    color: var(--steel);
    margin-bottom: 1.5rem;
}

.testimonial-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.testimonial-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--military-gold);
    font-weight: 700;
}

.testimonial-result {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--military-gold);
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(242, 203, 5, 0.1);
    border-left: 4px solid var(--military-gold);
}

.testimonial-kicker {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--red-alert);
    font-weight: 600;
}

/* ===================================
   ORIGIN STORY - VILLAIN-CODED
   =================================== */
.origin-section {
    background: var(--black-ops);
    padding: var(--section-padding);
}

.origin-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.origin-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--steel);
    margin-bottom: 2rem;
}

.origin-kicker {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--military-gold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 2rem;
    border: 2px solid var(--military-gold);
    background: rgba(242, 203, 5, 0.05);
    margin-top:30px;
}

/* ===================================
   DIAGNOSTIC SECTION - FREE OFFER
   =================================== */
.diagnostic-section {
    background: var(--charcoal-ops);
    padding: var(--section-padding);
}

.diagnostic-details {
    background: var(--black-ops);
    padding: 4rem;
    border: 1px solid rgba(242, 203, 5, 0.2);
    margin-bottom: 3rem;
}

.diagnostic-includes h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--military-gold);
    margin-bottom: 1.5rem;
}

.diagnostic-bullets {
    list-style: none;
    padding: 0;
}

.diagnostic-bullets li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--steel);
    border-bottom: 1px solid rgba(242, 203, 5, 0.1);
}

.diagnostic-bullets li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--military-gold);
    font-weight: 700;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    background: var(--black-ops);
    padding: var(--section-padding);
    text-align: center;
}

.final-cta-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light-gray);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.final-cta-subheadline {
    font-size: 1.25rem;
    color: var(--steel);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--charcoal-ops);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(242, 203, 5, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 1rem;
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-brand img{width:120px;}

.footer-war-tagline {
    font-size: 1.125rem;
    color: var(--military-gold);
    font-family: var(--font-tactical);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(242, 203, 5, 0.2);
    border-bottom: 1px solid rgba(242, 203, 5, 0.2);
}

.footer-war-tagline strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--military-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--steel);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-snap);
}

.footer-links a:hover {
    color: var(--military-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 203, 5, 0.1);
    color: var(--steel);
    font-size: 0.875rem;
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media (max-width: 968px) {
    h1 { font-size: 36px; }
    h2 { font-size: 2.5rem; }

    .hero-grid,
    .pain-grid,
    .steps-grid,
    .comparison-grid,
    .offer-deliverables,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-metrics {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: var(--section-padding-mobile);
    }

    .cost-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 8rem 0 4rem;
    }

    .badge-watermark {
        top: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.65rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-black-ops,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .section-title-medium {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-premium-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .hero-premium {
        padding: 6rem 0 4rem;
    }

    .hero-image-side {
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-portrait-wrapper {
        height: 400px;
    }

    .hero-portrait-wrapper::before {
        font-size: 0.9rem;
    }

    .badge-watermark {
        top: 1rem;
        left: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.6rem;
    }

    .hero-quote-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem 1.2rem;
    }

    .hero-quote-overlay p {
        font-size: 0.85rem;
    }

    .hero-credentials {
        margin-top: 1rem;
        padding: 1rem 1.2rem;
    }

    .credential-label {
        font-size: 0.8rem;
    }

    .credential-detail {
        font-size: 0.8rem;
    }

    /* Mobile Header System */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 124px;
        flex-direction: column;
        background: var(--black-ops);
        width: 100%;
        height: calc(100vh - 124px);
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 3rem;
        gap: 2rem;
        border-top: 1px solid rgba(242, 203, 5, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.1rem;
        display: block;
        padding: 1rem;
    }

    .nav-apply-btn {
        display: inline-block;
        margin: 1rem auto;
    }

    .top-bar-cta {
        font-size: 0.7rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links svg {
        width: 16px;
        height: 16px;
    }

    .logo-img {
        height: 38px;
    }

    .nav {
        height: 70px;
    }
}

/* ===================================
   A+ SURGICAL FIXES
   =================================== */

/* FIX #7: Hero Quote Overlay */
.hero-quote-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95), rgba(31, 31, 31, 0.9));
    border-left: 3px solid var(--military-gold);
    padding: 1.5rem 1.75rem;
    backdrop-filter: blur(10px);
    z-index: 5;
}

.hero-quote-overlay p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--military-gold);
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.01em;
}

/* FIX #1: VSL Thumbnail with Play Overlay */
.vsl-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--charcoal-ops);
    border: 2px solid rgba(242, 203, 5, 0.3);
    cursor: pointer;
    overflow: hidden;
}

.vsl-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

.vsl-thumbnail-wrapper:hover .vsl-thumbnail-image {
    filter: brightness(0.5);
    transform: scale(1.05);
}

.vsl-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vsl-play-button {
    width: 100px;
    height: 100px;
    background: rgba(242, 203, 5, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--black-ops);
    box-shadow: 0 0 30px rgba(242, 203, 5, 0.6);
    transition: all 0.3s ease;
}

.vsl-thumbnail-wrapper:hover .vsl-play-button {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(242, 203, 5, 0.8);
}

.vsl-play-button svg {
    fill: var(--black-ops);
    margin-left: 4px;
}

.vsl-duration-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--black-ops);
    color: var(--military-gold);
    padding: 0.5rem 1rem;
    font-family: var(--font-tactical);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 1px solid var(--military-gold);
}

/* FIX #6: Villain CTA Section */
.villain-cta-section {
    background: var(--charcoal-ops);
    padding: 4rem 0;
    border-top: 1px solid rgba(242, 203, 5, 0.2);
    border-bottom: 1px solid rgba(242, 203, 5, 0.2);
}

.villain-cta-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.villain-cta-headline {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.villain-cta-subtext {
    font-size: 1.75rem;
    color: var(--military-gold);
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.villain-cta-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.villain-point {
    background: var(--black-ops);
    padding: 2rem;
    border: 1px solid var(--red-alert);
    text-align: left;
}

.villain-point-right {
    border-color: var(--military-gold);
}

.villain-point strong {
    display: block;
    color: var(--military-gold);
    font-family: var(--font-tactical);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.villain-cta-kicker {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--steel);
}

/* FIX #8: Scarcity in Offer Stack */
.offer-scarcity-warning {
    background: linear-gradient(135deg, var(--black-ops), rgba(255, 60, 56, 0.1));
    border: 2px solid var(--red-alert);
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.scarcity-headline {
    font-size: 1.5rem;
    color: var(--red-alert);
    font-family: var(--font-tactical);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.offer-scarcity-warning strong {
    color: var(--light-gray);
    font-size: 1.25rem;
}

.scarcity-reason {
    color: var(--steel);
    margin-top: 1rem;
    font-size: 1rem;
}

/* FIX #4: Diagnostic Section Break (Prominent CTA) */
.diagnostic-section-break {
    background: linear-gradient(135deg, var(--red-alert), rgba(255, 60, 56, 0.8));
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.diagnostic-section-break::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(13, 13, 13, 0.1) 10px,
        rgba(13, 13, 13, 0.1) 20px
    );
    pointer-events: none;
}

.diagnostic-break-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.diagnostic-break-eyebrow {
    font-family: var(--font-tactical);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--black-ops);
    margin-bottom: 1rem;
}

.diagnostic-break-headline {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black-ops);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.diagnostic-break-subtext {
    font-size: 1.25rem;
    color: var(--black-ops);
    margin-bottom: 1rem;
    font-weight: 600;
}

.diagnostic-break-urgency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black-ops);
    margin-bottom: 2rem;
}

.btn-diagnostic-prominent {
    box-shadow: 0 0 30px rgba(13, 13, 13, 0.5);
}

/* FIX #2: Scroll Animations (Fade-In, Slide-In) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply scroll animations to key sections */
.section-header-center,
.pain-card-premium,
.pillar-card-premium,
.step-card,
.deliverable-card,
.testimonial-premium {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-header-center {
    animation-delay: 0.1s;
}

.pain-card-premium:nth-child(1) {
    animation-delay: 0.2s;
    margin-bottom:20px;
}

.pain-card-premium:nth-child(2) {
    animation-delay: 0.3s;
    margin-bottom:20px;
}

.pain-card-premium:nth-child(3) {
    animation-delay: 0.4s;
}

.pillar-card-premium:nth-child(1) {
    animation-delay: 0.1s;
    margin-bottom:20px;
}

.pillar-card-premium:nth-child(2) {
    animation-delay: 0.2s;
    margin-bottom:20px;
}

.pillar-card-premium:nth-child(3) {
    animation-delay: 0.3s;
    margin-bottom:20px;
}

.pillar-card-premium:nth-child(4) {
    animation-delay: 0.4s;
    margin-bottom:20px;
}

.pillar-card-premium:nth-child(5) {
    animation-delay: 0.5s;
}

.step-card:nth-child(1) {
    animation-delay: 0.2s;
}

.step-card:nth-child(2) {
    animation-delay: 0.3s;
}

.step-card:nth-child(3) {
    animation-delay: 0.4s;
}

.deliverable-card {
    animation-delay: 0.15s;
}

.testimonial-premium {
    animation-delay: 0.2s;
}

.positioning-clarifier h3{margin-top:40px;}
.positioning-clarifier h4{margin:15px 0;

/* Footer Social Icons Enhancement */
.footer-social a svg {
    transition: all 0.3s ease;
}

.footer-social a:hover svg {
    fill: var(--military-gold);
    transform: scale(1.1);
}

/* Mobile Responsive Adjustments for New Elements */
@media (max-width: 968px) {
    .hero-quote-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem 1.25rem;
    }

    .hero-quote-overlay p {
        font-size: 0.875rem;
    }

    .villain-cta-headline {
        font-size: 2rem;
    }

    .villain-cta-subtext {
        font-size: 1.25rem;
    }

    .villain-cta-breakdown {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diagnostic-break-headline {
        font-size: 2rem;
    }

    .diagnostic-break-subtext {
        font-size: 1.1rem;
    }

    .diagnostic-break-urgency {
        font-size: 1.25rem;
    }

    .vsl-play-button {
        width: 80px;
        height: 80px;
    }

    .vsl-play-button svg {
        width: 50px;
        height: 50px;
    }
}
.program-card{
    margin-bottom:30px;
}
.program-card h3{
    margin:15px 0;
}
.impact-story{
    margin-bottom:30px;
}
.impact-story h3{
    margin-bottom:15px;
}
}

/* ================================
   APPLICATION FORM – OPERATOR GRADE
   ================================ */

.application-form-section {
    padding: 6rem 0;
    background: #0b0b0b;
}

.form-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem;
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
}

.form-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 1.5rem;
}

.form-header h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: rgba(255,255,255,0.65);
    max-width: 520px;
}

/* Sections */
.form-section {
    margin-bottom: 3.5rem;
}

.form-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    color: rgba(255,255,255,0.7);
}

/* Groups */
.form-group {
    margin-bottom: 1.6rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.7);
}

/* Inputs */
.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 0.85rem 0.9rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.12);
    outline: none;
    transition: border 0.15s ease, background 0.15s ease;
}

.application-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Focus state */
.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    border-color: #ffffff;
    background: #111;
}

/* Select arrow fix */
.application-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

/* Submit */
.form-submit {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.form-submit button {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.12em;
    padding: 1rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 2.2rem 1.6rem;
    }
}

/* ================================
   THANK YOU PAGE – CENTERED
   ================================ */

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-content .apply-hero-intro {
    margin-bottom: 2.5rem;
}

/* Back Home Button */
.btn-home {
    display: inline-block;
    padding: 0.85rem 2.4rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
}


