/* ============================================================
   SOLAR RAVAN — Main Stylesheet
   Converted from solar.ravan.ai (GoHighLevel → WordPress)
   ============================================================ */

/* ---- 1. CSS Variables / Design Tokens ---- */
:root {
    /* Brand Colors */
    --primary:        #FF7900;
    --primary-dark:   #E65400;
    --primary-light:  #FF9D4D;
    --dark:           #130E0C;
    --dark-alt:       #070707;
    --light:          #FFF8F1;
    --cream:          #FCF7F3;
    --accent:         #0066FF;
    --accent-dark:    #004BB9;
    --accent-light:   #4D94FF;
    --white:          #FFFFFF;
    --black:          #000000;
    --text-dark:      #111111;
    --text-light:     #FFFFFF;
    --gray:           #CBD5E0;
    --overlay:        rgba(0, 0, 0, 0.5);

    /* Gradients */
    --gradient:        linear-gradient(135deg, #FF7A00 0%, #E65400 100%);
    --accent-gradient: linear-gradient(135deg, #0066FF 0%, #004BB9 100%);
    --glass-bg:        rgba(10, 10, 10, 0.7);

    /* Typography */
    --font-inter:      'Inter', sans-serif;
    --font-roboto:     'Roboto', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;

    /* Spacing */
    --section-pad:     80px 20px;
    --container-max:   1100px;
}

/* ---- 2. Global Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    background-color: var(--dark);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ---- 3. Utility ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   SECTION A — GHL INTRO (Two-Column: Pitch + Form)
   ============================================================ */
.intro-section {
    background-color: var(--dark);
    padding: 60px 20px;
}

.intro-section .intro-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left column: pitch */
.intro-pitch {
    flex: 1 1 55%;
}

.intro-headline {
    font-family: var(--font-inter);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.intro-subheadline {
    font-family: var(--font-inter);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 24px;
}

/* Video thumbnail in intro */
.intro-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 28px;
    border: 3px solid var(--primary);
    border-radius: 8px;
    overflow: hidden;
}

.intro-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Feature bullets in intro */
.intro-feature-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0 10px;
}

.intro-bullet-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.intro-bullet-list li {
    font-family: var(--font-inter);
    font-size: 18px;
    color: var(--white);
    padding: 6px 0 6px 1.6em;
    position: relative;
    line-height: 1.5;
}

.intro-bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Right column: form */
.intro-form-col {
    flex: 1 1 42%;
}

/* ---- GHL Form Wrapper ---- */
.ghl-form-wrapper {
    background-color: var(--cream);
    border: 3px solid var(--primary);
    border-radius: 10px;
    padding: 30px 24px;
    max-width: 548px;
}

.ghl-form-wrapper h3 {
    font-family: var(--font-inter);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}

.ghl-form-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 200px;
}

.ghl-form-wrapper label {
    display: block;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 6px;
}

.ghl-form-wrapper input[type="text"],
.ghl-form-wrapper input[type="email"],
.ghl-form-wrapper input[type="tel"] {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    border: 3px solid var(--black);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-inter);
    font-size: 16px;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.ghl-form-wrapper input:focus {
    border-color: var(--primary);
}

.ghl-form-wrapper .form-group {
    margin-bottom: 16px;
}

.ghl-form-wrapper .radio-group,
.ghl-form-wrapper .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ghl-form-wrapper .radio-option,
.ghl-form-wrapper .checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--black);
    cursor: pointer;
}

.ghl-form-wrapper input[type="radio"],
.ghl-form-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.ghl-form-wrapper .terms-text {
    font-size: 14px;
    color: var(--black);
    font-style: italic;
}

.ghl-form-submit {
    display: block;
    width: 100%;
    background-color: #010101;
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 22px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.2s, transform 0.1s;
}

.ghl-form-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* ============================================================
   SECTION B — ANIMATED HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #130E0C 0%, #1a1200 40%, #0a0700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

/* Background waves */
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,121,0,0.04) 0%, rgba(255,121,0,0.02) 100%);
    transform-origin: 50% 50%;
    border-radius: 40%;
}

.wave-1 {
    top: -30%;
    left: -25%;
    animation: waveAnim 12s ease-in-out infinite;
    transform: skewY(-12deg) translateY(-30%);
}

.wave-2 {
    top: -35%;
    right: -25%;
    animation: waveAnim 15s ease-in-out infinite reverse;
    transform: skewY(-15deg) translateY(-35%);
    background: linear-gradient(135deg, rgba(0,102,255,0.04) 0%, rgba(0,102,255,0.01) 100%);
}

@keyframes waveAnim {
    0%, 100% { transform: skewY(-12deg) translateY(-30%) scaleX(1); }
    50%       { transform: skewY(-12deg) translateY(-25%) scaleX(1.05); }
}

/* Particles */
.particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 121, 0, 0.4);
}

@keyframes float3D {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    33%  { transform: translate3d(15px, -20px, 10px) scale(1.1); }
    66%  { transform: translate3d(-10px, 10px, -5px) scale(0.9); }
    100% { transform: translate3d(5px, -5px, 15px) scale(1.05); }
}

/* Savings animation */
.savings-animation {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-number {
    position: absolute;
    color: rgba(255, 121, 0, 0.35);
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 700;
    animation: floatUp 12s ease-in-out infinite;
    user-select: none;
}

@keyframes floatUp {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    80%  { opacity: 0.7; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

/* Floating emojis / icons */
.floating-emoji,
.floating-icon {
    position: absolute;
    font-size: 28px;
    z-index: 2;
    animation: floatBob 6s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
}

.floating-emoji { top: 15%; left: 8%; animation-duration: 7s; }
.icon-1 { top: 30%; right: 10%; animation-duration: 8s; animation-delay: 1s; }
.icon-2 { top: 60%; left: 5%; animation-duration: 9s; animation-delay: 2s; }
.icon-3 { bottom: 25%; right: 8%; animation-duration: 7s; animation-delay: 0.5s; }
.icon-4 { top: 75%; left: 12%; animation-duration: 8.5s; animation-delay: 1.5s; }

@keyframes floatBob {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-18px) rotate(5deg); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-inter);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(255,121,0,0.5); }
    50%       { box-shadow: 0 0 15px rgba(255,121,0,0.9); }
}

.hero-subtitle {
    font-family: var(--font-inter);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.hero-text {
    font-family: var(--font-inter);
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 12px;
}

.hero-text .highlight {
    color: var(--primary);
    font-weight: 700;
}

/* CTA wrapper */
.hero-cta-wrapper {
    margin: 24px 0 16px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,121,0,0.15) 0%, rgba(230,84,0,0.1) 100%);
    border: 1px solid rgba(255,121,0,0.4);
    border-radius: 8px;
    padding: 14px 24px;
    font-family: var(--font-inter);
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* CTA Button */
.btn-container {
    margin: 16px 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #010101 0%, #1a1a1a 100%);
    color: var(--white);
    font-family: var(--font-inter);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    padding: 18px 42px;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 8px 30px rgba(255,121,0,0.3), 0 0 0 2px rgba(255,121,0,0.3);
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,121,0,0.5), 0 0 0 3px rgba(255,121,0,0.4);
}

.btn .pulse-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.3); }
}

.btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    animation: shineMove 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shineMove {
    0%   { left: -100%; }
    20%, 100% { left: 150%; }
}

/* Stat cards */
.stats-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.stat-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,121,0,0.25);
    border-radius: 16px;
    padding: 20px 24px;
    flex: 1 1 140px;
    max-width: 200px;
    text-align: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-number {
    font-family: var(--font-inter);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-text {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-desc {
    font-family: var(--font-inter);
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* Trust badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 8px 20px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.trust-badge span {
    color: #4ade80;
    font-weight: 700;
}

/* ============================================================
   SECTION C — REAL WORLD VIDEO RECORDINGS
   ============================================================ */
.videos-section {
    background-color: var(--dark);
    padding: 60px 20px;
}

.videos-section .section-heading {
    font-family: var(--font-inter);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.videos-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(255,121,0,0.3);
}

.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ============================================================
   SECTION D — FEATURES (Meet Ravan.ai)
   ============================================================ */
.features-section {
    position: relative;
    background: linear-gradient(135deg, #0a0700 0%, #130e0c 50%, #070707 100%);
    padding: 80px 20px;
    overflow: hidden;
}

/* Features background */
.features-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.features-wave {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,122,0,0.04) 0%, transparent 60%);
    animation: featuresPulse 8s ease-in-out infinite;
}

@keyframes featuresPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.1); opacity: 1; }
}

.features-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,122,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,122,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.particles-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Section header */
.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.section-title-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-montserrat);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-inter);
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Case Study */
.case-study {
    position: relative;
    z-index: 2;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,122,0,0.25);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.case-study-title {
    font-family: var(--font-montserrat);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.case-study-name {
    color: var(--primary);
    display: block;
    font-size: 0.85em;
    margin-bottom: 8px;
}

.case-study-quote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 20px 0;
    background: rgba(255,122,0,0.06);
    border-radius: 0 8px 8px 0;
    font-family: var(--font-inter);
    font-size: 18px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Video in case study */
.case-study-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.case-study-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.video-label {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study p {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.box-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}

.box-list li {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    padding: 6px 0 6px 24px;
    position: relative;
}

.box-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Case study stats */
.case-study-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.case-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,122,0,0.2);
    border-radius: 12px;
    padding: 16px 20px;
    flex: 1 1 120px;
    text-align: center;
    transition: all 0.4s ease;
}

.case-stat:hover {
    background: rgba(255,122,0,0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-value {
    font-family: var(--font-montserrat);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-value.up   { color: #4ade80; }
.stat-value.down { color: #4ade80; }

.stat-label {
    font-family: var(--font-inter);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
}

.result-text {
    background: linear-gradient(135deg, rgba(255,122,0,0.1) 0%, rgba(230,84,0,0.05) 100%);
    border: 1px solid rgba(255,122,0,0.3);
    border-radius: 10px;
    padding: 18px 24px;
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    margin-top: 10px !important;
}

/* Problem / Solution */
.problem-solution {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto 60px;
}

.problem-box,
.solution-box {
    border-radius: 16px;
    padding: 36px;
}

.problem-box {
    background: linear-gradient(135deg, rgba(255,50,50,0.08) 0%, rgba(180,0,0,0.05) 100%);
    border: 1px solid rgba(255,50,50,0.25);
}

.solution-box {
    background: linear-gradient(135deg, rgba(255,122,0,0.1) 0%, rgba(230,84,0,0.06) 100%);
    border: 1px solid rgba(255,122,0,0.3);
}

.box-title {
    font-family: var(--font-montserrat);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.box-icon {
    font-size: 24px;
}

.problem-box p,
.solution-box p {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* How It Works / Timeline */
.how-it-works {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto 60px;
}

.hiw-title {
    font-family: var(--font-montserrat);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(255,122,0,0.1) 100%);
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px 28px;
    transition: all 0.4s ease;
}

.timeline-item:hover {
    background: rgba(255,122,0,0.08);
    border-color: rgba(255,122,0,0.3);
    transform: translateX(8px);
}

.timeline-step {
    flex-shrink: 0;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 30px;
    white-space: nowrap;
    counter-increment: step;
}

.timeline-content {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    padding-top: 8px;
}

/* Feature cards grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 18px 18px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    border-color: rgba(255,122,0,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,122,0,0.2);
}

.feature-icon-wrapper {
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 36px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.feature-title {
    font-family: var(--font-montserrat);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-desc {
    font-family: var(--font-inter);
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* Features CTA */
.features-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255,122,0,0.06);
    border: 1px solid rgba(255,122,0,0.2);
    border-radius: 20px;
    padding: 48px 36px;
    max-width: 800px;
    margin: 0 auto;
}

.features-cta-text {
    font-family: var(--font-inter);
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 16px;
}

.features-cta-text span {
    color: var(--primary);
    font-weight: 700;
}

.btn-cta-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 24px;
}

.btn-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(ellipse, rgba(255,122,0,0.4) 0%, transparent 70%);
    border-radius: 60px;
    filter: blur(12px);
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 60px;
    position: relative;
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 8px 24px rgba(255,122,0,0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255,122,0,0.6);
}

/* ============================================================
   SECTION E — OFFER STACK ("What You Get")
   ============================================================ */
.customx-offer-section {
    position: relative;
    background: linear-gradient(135deg, #0a0700 0%, #130e0c 60%, #050505 100%);
    padding: 80px 20px;
    overflow: hidden;
}

/* Offer background */
.customx-offer-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.customx-offer-diagonal {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: linear-gradient(135deg, rgba(255,122,0,0.06) 0%, transparent 70%);
    transform: rotate(45deg);
}

.customx-offer-diagonal-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 70%;
    background: linear-gradient(135deg, rgba(255,122,0,0.04) 0%, transparent 70%);
    transform: rotate(45deg);
}

.customx-offer-waves {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.customx-wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 200px;
    background: linear-gradient(to top, rgba(255,122,0,0.03) 0%, transparent 100%);
    border-radius: 40% 60% 60% 40%;
    animation: waveFloat 8s ease-in-out infinite;
}

.customx-wave:nth-child(2) { animation-delay: 2.5s; animation-duration: 11s; opacity: 0.6; }
.customx-wave:nth-child(3) { animation-delay: 5s; animation-duration: 14s; opacity: 0.4; }

@keyframes waveFloat {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50%       { transform: translateX(-5%) scaleY(1.1); }
}

.customx-offer-circles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.customx-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,122,0,0.08) 0%, transparent 70%);
    animation: circlePulse 8s ease-in-out infinite;
}

.customx-circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.customx-circle-2 { width: 300px; height: 300px; bottom: 100px; left: -50px; animation-delay: 2s; }
.customx-circle-3 { width: 200px; height: 200px; top: 50%; left: 50%; animation-delay: 4s; }
.customx-circle-4 { width: 150px; height: 150px; bottom: 200px; right: 20%; animation-delay: 1s; }

@keyframes circlePulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.15); opacity: 1; }
}

.customx-particles-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.customx-particle {
    position: absolute;
    border-radius: 50%;
    animation: particleRise 20s linear infinite;
}

@keyframes particleRise {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Offer container */
.customx-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Section header */
.customx-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.customx-section-eyebrow {
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.customx-section-title {
    font-family: var(--font-montserrat);
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.customx-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.customx-section-subtitle {
    font-family: var(--font-inter);
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Offer Stack */
.customx-offer-stack-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.customx-offer-stack-border {
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 22px;
    z-index: 0;
    opacity: 0.6;
    filter: blur(1px);
}

.customx-offer-stack {
    position: relative;
    z-index: 1;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,122,0,0.3);
}

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

.customx-offer-title {
    font-family: var(--font-montserrat);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: var(--white);
}

.customx-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.customx-offer-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.4s ease;
}

.customx-offer-item:hover {
    background: rgba(255,122,0,0.08);
    border-color: rgba(255,122,0,0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.customx-offer-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.customx-offer-item-title {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.customx-offer-item-title span {
    color: var(--primary);
}

.customx-offer-item-desc {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* Bonus */
.customx-offer-bonus {
    background: linear-gradient(135deg, rgba(255,122,0,0.12) 0%, rgba(230,84,0,0.06) 100%);
    border: 1px solid rgba(255,122,0,0.4);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.customx-offer-bonus-label {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
}

.customx-offer-bonus-title {
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.customx-offer-bonus-title span { color: var(--primary); }

.customx-offer-bonus-desc {
    font-family: var(--font-inter);
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* Guarantee */
.customx-offer-guarantee {
    background: rgba(74,222,128,0.06);
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
}

.customx-guarantee-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.customx-guarantee-badge span { font-size: 12px; }

.customx-guarantee-title {
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.customx-guarantee-title span { color: #4ade80; }

.customx-guarantee-desc {
    font-family: var(--font-inter);
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* Testimonials */
.customx-testimonials {
    margin-bottom: 60px;
}

.customx-testimonials-header {
    text-align: center;
    margin-bottom: 36px;
}

.customx-testimonials-title {
    font-family: var(--font-montserrat);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.customx-testimonials-subtitle {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel */
.customx-testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.customx-carousel-arrows {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
    padding: 0 10px;
}

.customx-carousel-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255,122,0,0.85);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s;
    user-select: none;
}

.customx-carousel-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.customx-testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.customx-testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.customx-testimonial-card:hover {
    border-color: rgba(255,122,0,0.4);
    background: rgba(255,122,0,0.06);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.customx-testimonial-content {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.customx-testimonial-highlight {
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
}

.customx-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.customx-author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.customx-author-name {
    font-family: var(--font-montserrat);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.customx-author-position {
    font-family: var(--font-inter);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.customx-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.customx-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s;
}

.customx-nav-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Eligibility */
.customx-eligibility {
    margin-bottom: 60px;
}

.customx-eligibility-box {
    background: rgba(10,10,10,0.8);
    border: 1px solid rgba(255,122,0,0.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.customx-eligibility-title {
    font-family: var(--font-montserrat);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.customx-eligibility-desc {
    font-family: var(--font-inter);
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    line-height: 1.6;
}

.customx-criteria-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.customx-criteria-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 24px;
    transition: all 0.3s ease;
}

.customx-criteria-item:hover {
    background: rgba(255,122,0,0.08);
    border-color: rgba(255,122,0,0.3);
    transform: translateX(8px);
}

.customx-criteria-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.customx-criteria-text {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    text-align: left;
    line-height: 1.5;
}

/* Final CTA */
.customx-final-cta {
    position: relative;
    text-align: center;
}

.customx-final-cta-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, rgba(255,122,0,0.2) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.customx-final-cta-box {
    position: relative;
    z-index: 1;
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(255,122,0,0.4);
    border-radius: 24px;
    padding: 60px 48px;
    overflow: hidden;
}

.customx-final-cta-stripes {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--gradient);
    border-radius: 24px 24px 0 0;
}

.customx-final-cta-title {
    font-family: var(--font-montserrat);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.customx-final-cta-title span { color: var(--primary); }

.customx-final-cta-text {
    font-family: var(--font-inter);
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 12px;
}

.customx-btn-cta-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 32px;
    margin-bottom: 28px;
}

.customx-btn-glow {
    position: absolute;
    inset: -12px;
    background: radial-gradient(ellipse, rgba(255,122,0,0.5) 0%, transparent 70%);
    filter: blur(15px);
    border-radius: 60px;
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.customx-btn-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 22px;
    font-weight: 700;
    padding: 20px 52px;
    border-radius: 60px;
    position: relative;
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(255,122,0,0.4);
}

.customx-btn-final:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255,122,0,0.6);
}

.customx-footer-blurb {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.customx-footer-blurb span {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================================
   RESPONSIVE — Mobile First
   ============================================================ */
@media (max-width: 768px) {
    /* Intro */
    .intro-section .intro-inner {
        flex-direction: column;
    }
    .intro-pitch,
    .intro-form-col {
        flex: none;
        width: 100%;
    }

    /* Hero */
    .hero { padding: 60px 16px; }
    .floating-emoji, .floating-icon { display: none; }
    .stats-container { flex-direction: column; align-items: center; }
    .stat-card { max-width: 280px; width: 100%; }

    /* Videos */
    .videos-grid { grid-template-columns: 1fr; }

    /* Features */
    .problem-solution { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .timeline::before { display: none; }

    /* Testimonials */
    .customx-testimonial-card { flex: 0 0 85%; }
    .customx-carousel-arrows { display: none; }

    /* Offer */
    .customx-offer-grid { grid-template-columns: 1fr; }
    .customx-final-cta-box { padding: 40px 24px; }
    .customx-eligibility-box { padding: 32px 20px; }

    /* Case study */
    .case-study { padding: 24px 20px; }
    .case-study-stats { flex-direction: column; }
    .case-stat { flex: none; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 26px; }
    .btn { font-size: 18px; padding: 16px 30px; }
    .customx-btn-final { font-size: 18px; padding: 16px 32px; }
    .customx-offer-stack { padding: 24px 16px; }
    .videos-grid { gap: 12px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
