/* 
  =========================================
  99STRDEALS BRAND STYLE SHEET
  Elite CSS System for Premium STR Scaling
  =========================================
*/

/* ═══════════════════════════════════════════ */
/* 1. DESIGN SYSTEM & INITIALIZATION           */
/* ═══════════════════════════════════════════ */
:root {
    /* Color Palette */
    --bg-obsidian: #070a13;
    --bg-obsidian-rgb: 7, 10, 19;
    --card-charcoal: #121826;
    --card-charcoal-rgb: 18, 24, 38;
    
    --accent-cyan: #00d4ff;
    --accent-cyan-rgb: 0, 212, 255;
    --accent-purple: #7c3aed;
    --accent-purple-rgb: 124, 58, 237;
    
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --border-glow: rgba(0, 212, 255, 0.15);
    --border-glow-purple: rgba(124, 58, 237, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    
    --danger-red: #ef4444;
    --success-green: #10b981;
    --warning-amber: #f59e0b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, var(--bg-obsidian) 100%);
    --gradient-glow: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.05) 50%, transparent 100%);
    
    /* Layout & Details */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    background: rgba(0, 212, 255, 0.05);
    margin-bottom: 20px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

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

.text-danger {
    color: var(--danger-red);
}

.text-success {
    color: var(--success-green);
}

/* ═══════════════════════════════════════════ */
/* 2. GLOBAL COMPONENTS                        */
/* ═══════════════════════════════════════════ */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-arrow {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Glassmorphism Background elements */
.glass-panel {
    background: rgba(18, 24, 38, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-obsidian);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 0.1em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-cyan);
    position: absolute;
    top: 0;
    left: 0;
    animation: loading-bar 1.5s infinite ease-in-out;
}

@keyframes loading-bar {
    0% { width: 0%; left: 0%; }
    50% { width: 100%; left: 0%; }
    100% { width: 0%; left: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(7, 10, 19, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar-scrolled {
    height: 70px;
    background: rgba(7, 10, 19, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 24px;
    margin-right: 6px;
    color: var(--accent-cyan);
}

.logo-text {
    color: var(--text-light);
}

.logo-text span {
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

.nav-link-cta {
    background: var(--gradient-primary);
    color: var(--text-light) !important;
    padding: 8px 20px !important;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
}

.nav-link-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.25);
}

.nav-link-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* ═══════════════════════════════════════════ */
/* 3. HOMEPAGE SPECIFIC SECTIONS              */
/* ═══════════════════════════════════════════ */

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.04) 50%, transparent 100%);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--text-light);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-guarantees {
    display: flex;
    gap: 24px;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-guarantee svg {
    margin-right: 6px;
    color: var(--accent-cyan);
}

/* Hero Right Visual Column */
.hero-visual {
    position: relative;
    width: 100%;
}

.dashboard-mockup {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: var(--card-charcoal);
}

.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(18, 24, 38, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
}

.floating-stat-1 {
    top: 20%;
    left: -40px;
    border-color: var(--border-glow);
}

.floating-stat-2 {
    bottom: 15%;
    right: -20px;
    border-color: var(--border-glow-purple);
}

.floating-stat-icon {
    font-size: 24px;
}

.floating-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
}

.floating-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 2;
    cursor: pointer;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.5s infinite ease-in-out;
}

@keyframes scroll-wheel-anim {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* Trust Banner Logos Sliding */
.trust-banner {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.trust-logos-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 40px;
}

.trust-logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition-fast);
}

.trust-logo-item:hover {
    opacity: 0.9;
    color: var(--accent-cyan);
}

/* Problem / Agitation */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--card-charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--danger-red), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.problem-card:hover::before {
    opacity: 0.3;
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger-red);
    margin-bottom: 24px;
}

.problem-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.problem-desc strong {
    color: var(--text-light);
}

/* Solution Advantage */
.solution-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.solution-text {
    position: relative;
}

.solution-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.solution-feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    margin-top: 2px;
}

.solution-feature h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.solution-feature p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Teaser / Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card-charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent, var(--gradient-primary));
    opacity: 0.3;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255,255,255,0.1);
}

.service-card:hover .service-card-accent {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-color, var(--accent-cyan));
    margin-bottom: 28px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: rgba(var(--icon-color-rgb, var(--accent-cyan-rgb)), 0.06);
    border-color: rgba(var(--icon-color-rgb, var(--accent-cyan-rgb)), 0.3);
}

.service-title {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    color: var(--text-muted);
}

.service-card:hover .service-tag {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

.service-learn-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-learn-more svg {
    transition: var(--transition-fast);
}

.service-card:hover .service-learn-more svg {
    transform: translateX(4px);
}

/* How It Works Process */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
}

.step:hover .step-number {
    color: rgba(0, 212, 255, 0.05);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.step p {
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Case Study / Testimonials */
.case-study-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.case-study-image img {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.casestudy-quote {
    position: relative;
    margin-bottom: 40px;
}

.casestudy-quote svg {
    position: absolute;
    top: -20px;
    left: -20px;
}

.casestudy-quote blockquote {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    color: var(--text-light);
}

.casestudy-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.casestudy-author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.casestudy-author-info {
    display: flex;
    flex-direction: column;
}

.casestudy-author-info strong {
    font-size: 16px;
}

.casestudy-author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
}

.metric-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* High Converting Final CTA */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    background: rgba(18, 24, 38, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-lg);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto 30px auto;
    gap: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    padding: 6px;
    border-radius: var(--border-radius-sm);
}

.cta-input {
    flex: 1;
    padding: 0 18px;
    font-size: 15px;
    color: var(--text-light);
}

.cta-input::placeholder {
    color: var(--text-muted);
}

.cta-submit {
    flex-shrink: 0;
}

.cta-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 36px;
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.cta-guarantee svg {
    color: var(--accent-cyan);
}

/* ═══════════════════════════════════════════ */
/* 4. SUBPAGES COMMON STYLING                 */
/* ═══════════════════════════════════════════ */

/* Page Banner / Header */
.page-banner {
    padding: 140px 0 80px 0;
    background: radial-gradient(circle at 10% 30%, rgba(124, 58, 237, 0.06) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-breadcrumbs {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb-separator {
    color: var(--accent-cyan);
}

.breadcrumb-current {
    color: var(--text-light);
}

/* Services Grid & Inner Listings */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.detailed-service-card {
    background: var(--card-charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 48px;
    transition: var(--transition-smooth);
    position: relative;
}

.detailed-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: var(--border-glow);
}

.detailed-service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.detailed-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

.detailed-service-title {
    font-size: 24px;
}

.detailed-service-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.detailed-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

.detailed-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.detailed-feature-item svg {
    color: var(--accent-cyan);
    flex-shrink: 0;
}

/* Dedicated VA Services Styling */
.va-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.va-divisions {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.va-division-card {
    background: var(--card-charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 48px;
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 40px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.va-division-card:hover {
    border-color: var(--border-glow-purple);
    transform: translateY(-3px);
}

.va-division-left {
    text-align: center;
}

.va-division-badge {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-purple);
    border: 1px solid var(--border-glow-purple);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.va-division-icon {
    width: 72px;
    height: 72px;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    margin: 0 auto 20px auto;
}

.va-division-tasks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.va-task-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.va-task-item svg {
    color: var(--accent-purple);
    flex-shrink: 0;
    margin-top: 3px;
}

.va-task-item strong {
    color: var(--text-light);
}

.va-task-item span {
    color: var(--text-muted);
}

/* Grid representing VA match and training */
.va-academy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.academy-card {
    background: var(--card-charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
}

.academy-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-glow);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 20px;
}

.academy-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.academy-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* Contact Page Split Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-column {
    padding-right: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-content p, .contact-info-content a {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-info-content a:hover {
    color: var(--accent-cyan);
}

.contact-card-form {
    background: var(--card-charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 48px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

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

.contact-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-form-input, .contact-form-select, .contact-form-textarea {
    width: 100%;
    background: rgba(7, 10, 19, 0.5);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.contact-form-input:focus, .contact-form-select:focus, .contact-form-textarea:focus {
    border-color: var(--accent-cyan);
    background: rgba(7, 10, 19, 0.8);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}

.contact-form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 40px;
}

.contact-form-textarea {
    height: 120px;
    resize: none;
}

.contact-form-submit {
    width: 100%;
}

.calendar-mock-container {
    background: var(--card-charcoal);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 40px;
    margin-top: 40px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar-month {
    font-size: 16px;
    font-weight: 700;
}

.calendar-arrows {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
}

.calendar-arrow {
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-arrow:hover {
    color: var(--text-light);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.calendar-grid-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 10px;
}

.calendar-date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-date-inactive {
    color: rgba(255,255,255,0.08);
    pointer-events: none;
}

.calendar-date-active {
    background: rgba(255,255,255,0.02);
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

.calendar-date-active:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.calendar-date-selected {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.time-slots-container {
    margin-top: 24px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

.time-slots-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot-btn {
    padding: 10px;
    font-size: 13px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-fast);
}

.time-slot-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.time-slot-selected {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Success Card */
.form-success-container {
    text-align: center;
    padding: 30px 10px;
}

.success-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-green);
    margin: 0 auto 24px auto;
}

.success-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.success-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════ */
/* 5. FOOTER SECTION                           */
/* ═══════════════════════════════════════════ */
.footer {
    background-color: #04060b;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-brand .logo span span {
    color: var(--accent-cyan);
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 24px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-column ul a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-contact svg {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--text-light);
}

/* ═══════════════════════════════════════════ */
/* 6. ON-SCROLL ANIMATIONS SYSTEM             */
/* ═══════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

.scale-in {
    transform: scale(0.92);
}

/* Animated active state classes */
.animated.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.animated.fade-in-left {
    opacity: 1;
    transform: translateX(0);
}

.animated.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

.animated.scale-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════ */
/* 7. RESPONSIVE DESIGN (MEDIA QUERIES)        */
/* ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .section-title { font-size: 36px; }
    .hero-title { font-size: 46px; }
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .va-division-card { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 992px) {
    .navbar { height: 70px; }
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(7, 10, 19, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    .nav-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link { font-size: 18px; }
    .hero { min-height: auto; padding-top: 120px; padding-bottom: 80px; }
    .hero-content { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-guarantees { justify-content: center; }
    .hero-visual { max-width: 600px; margin: 0 auto; }
    .floating-stat-1 { left: -20px; }
    .solution-grid { grid-template-columns: 1fr; gap: 50px; }
    .steps-container { grid-template-columns: 1fr; }
    .case-study-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-detailed-grid { grid-template-columns: 1fr; }
    .va-academy-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-info-column { padding-right: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 30px; }
    .hero-title { font-size: 38px; }
    .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .hero-guarantees { flex-direction: column; gap: 12px; align-items: center; }
    .problem-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-content { padding: 40px 24px; }
    .cta-title { font-size: 28px; }
    .cta-form { flex-direction: column; background: none; border: none; padding: 0; }
    .cta-input { padding: 14px 18px; border: 1px solid var(--border-light); border-radius: var(--border-radius-sm); background: rgba(255,255,255,0.02); }
    .cta-guarantees { flex-direction: column; align-items: center; gap: 16px; }
    .contact-card-form { padding: 24px; }
    .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
}
