/* ============================================
   SERVICES V2 - ENHANCED DESIGN
   Color Schema: Navy (#0A0F1E) | Gold (#C89D5C) | Green (#10B981)
   ============================================ */

:root {
    --navy: #0A0F1E;
    --navy-dark: #060A12;
    --navy-light: #1A2332;
    --gold-primary: #C89D5C;
    --gold-light: #D4B17A;
    --gold-dark: #B58A4A;
    --green-primary: #10B981;
    --green-light: #34D399;
    --green-dark: #059669;
    --white: #FFFFFF;
    --background: #F8F9FA;
    --border: #E5E7EB;
    --text-primary: #2E4053;
    --text-secondary: #5D6D7E;
    --text-muted: #95A5A6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.02), 0 2px 8px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.05), 0 16px 48px rgba(0,0,0,0.06);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --transition-base: all 0.3s ease;
}

/* ============================================
   SPLIT-SCREEN HERO
   ============================================ */

.hero-split-screen {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--navy);
}

.hero-split-container {
    display: flex;
    height: calc(100vh - 80px);
    position: relative;
}

.hero-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-side:hover {
    flex: 1.1;
}

.hero-federal {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.hero-sled {
    background: linear-gradient(135deg, var(--green-dark) 0%, #047857 100%);
}

.hero-side-content {
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.6s ease;
}

.hero-side:hover .hero-side-content {
    transform: translateY(-10px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(200, 157, 92, 0.3);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    width: 18px;
    height: 18px;
}

.hero-badge-sled {
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-side-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-side-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.hero-side-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-mini {
    text-align: center;
}

.stat-mini-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
}

.stat-mini-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-hero-select {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(200, 157, 92, 0.4);
}

.btn-hero-select:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(200, 157, 92, 0.5);
}

.btn-hero-select i {
    width: 20px;
    height: 20px;
}

.btn-hero-select-sled {
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.9));
    color: var(--green-dark);
}

/* Hero Divider */
.hero-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(200, 157, 92, 0.5), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.btn-both-markets {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: white;
    border: 3px solid var(--navy);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(200, 157, 92, 0.5);
    font-weight: 700;
    font-size: 0.875rem;
}

.btn-both-markets:hover {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    box-shadow: 0 12px 48px rgba(200, 157, 92, 0.6);
}

.btn-both-markets i {
    width: 28px;
    height: 28px;
}

.both-markets-tag {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
}

/* Trust Signals Banner */
.hero-trust-banner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200, 157, 92, 0.2);
    padding: 1.5rem 0;
}

.trust-signals {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
}

.trust-signal i {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

/* ============================================
   PROCESS BANNER
   ============================================ */

.process-banner-section {
    background: linear-gradient(180deg, var(--background) 0%, white 100%);
    padding: 4rem 0;
}

.process-banner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: var(--radius-2xl);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, var(--gold-primary), rgba(200, 157, 92, 0.3));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 157, 92, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(200, 157, 92, 0.3);
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.process-banner-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--navy);
    margin: 0 0 0.75rem 0;
}

.process-banner-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 0 2.5rem 0;
}

.process-phases-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.phase-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(200, 157, 92, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 157, 92, 0.15);
    transition: all 0.3s ease;
}

.phase-mini:hover {
    background: rgba(200, 157, 92, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.phase-mini i {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.phase-mini span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.phase-arrow-mini {
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.process-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(200, 157, 92, 0.3);
}

.process-banner-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(200, 157, 92, 0.4);
}

/* ============================================
   MARKET FILTER BAR
   ============================================ */

.market-filter-bar {
    position: sticky;
    top: 70px;
    background: white;
    border-bottom: 2px solid var(--border);
    padding: 1rem 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.market-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.market-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.market-tab:hover {
    border-color: var(--gold-primary);
    color: var(--navy);
}

.market-tab.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: white;
}

.market-tab i {
    width: 18px;
    height: 18px;
}

/* ============================================
   3D FLIP CARDS - SERVICES CAROUSEL
   ============================================ */

.services-main-section {
    padding: 5rem 0;
    background: white;
}

.services-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
}

.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card-3d {
    min-width: 400px;
    height: 500px;
    perspective: 1000px;
    flex-shrink: 0;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card-3d.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    background: white;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.service-card-back {
    transform: rotateY(180deg);
    overflow-y: auto;
}

.service-badge-new {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(200, 157, 92, 0.35);
}

.service-icon-3d {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(200, 157, 92, 0.3);
    transition: transform 0.3s ease;
}

.service-card-3d:hover .service-icon-3d {
    transform: rotate(-5deg) scale(1.05);
}

.service-icon-3d i {
    width: 40px;
    height: 40px;
    color: white;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.service-card-hook {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    flex: 1;
}

.service-card-markets {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.market-badge {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.market-badge-federal {
    background: rgba(10, 15, 30, 0.1);
    color: var(--navy);
    border: 1px solid var(--navy);
}

.market-badge-sled {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-dark);
    border: 1px solid var(--green-primary);
}

.btn-flip-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-flip-card:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* Card Back */
.btn-flip-back {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-flip-back:hover {
    background: rgba(0, 0, 0, 0.2);
}

.service-card-title-back {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1.5rem 0;
}

.service-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-comparison-col {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: var(--background);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.comparison-header-federal {
    color: var(--navy);
}

.comparison-header-sled {
    color: var(--green-dark);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.comparison-list li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.comparison-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

.comparison-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.meta-item i {
    width: 14px;
    height: 14px;
}

.btn-add-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gold-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-add-package:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.carousel-nav:hover {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
    color: white;
}

.carousel-nav-prev {
    left: -24px;
}

.carousel-nav-next {
    right: -24px;
}

.carousel-progress {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.progress-current {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

/* ============================================
   ROI CALCULATOR
   ============================================ */

.roi-calculator-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.roi-calculator-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200, 157, 92, 0.1) 0%, transparent 60%);
}

.roi-calculator-section .section-header {
    position: relative;
    z-index: 1;
}

.roi-calculator-section .section-title,
.roi-calculator-section .section-subtitle {
    color: white;
}

.roi-calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.roi-inputs,
.roi-outputs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 157, 92, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
}

.roi-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-range {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200, 157, 92, 0.5);
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gold-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.range-value {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.industry-benchmark {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.market-toggle {
    display: flex;
    gap: 0.5rem;
}

.market-toggle-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.market-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-primary);
}

.market-toggle-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: white;
}

/* ROI Outputs */
.roi-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.roi-metric-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.roi-metric-header i {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
}

.roi-metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.roi-metric-value-large {
    font-size: 3rem;
    color: var(--gold-primary);
}

.roi-metric-comparison {
    font-size: 0.9375rem;
}

.increase {
    color: var(--green-primary);
    font-weight: 600;
}

.win-rate-gauge {
    margin-top: 1rem;
}

.gauge-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: width 0.8s ease;
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.roi-chart-mini {
    height: 150px;
    margin: 1rem 0;
}

.roi-years {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.roi-year {
    text-align: center;
}

.year-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.year-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.payback-progress {
    margin-top: 1rem;
}

.payback-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.payback-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transition: width 0.8s ease;
}

.roi-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* ============================================
   PACKAGE BUILDER
   ============================================ */

.package-builder-section {
    padding: 5rem 0;
    background: var(--background);
}

.package-builder-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.service-pool {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 2px solid var(--border);
}

.pool-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1.5rem 0;
}

.service-pool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.service-mini-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    cursor: grab;
    transition: all 0.3s ease;
}

.service-mini-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-mini-card:active {
    cursor: grabbing;
}

.service-mini-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.service-mini-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.service-mini-name {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-mini-price {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* Drop Zone */
.package-drop-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drop-zone {
    background: white;
    border: 3px dashed var(--border);
    border-radius: var(--radius-2xl);
    min-height: 300px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.drop-zone.drag-over {
    border-color: var(--gold-primary);
    background: rgba(200, 157, 92, 0.05);
}

.drop-zone-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 250px;
    color: var(--text-muted);
    text-align: center;
}

.drop-zone-empty i {
    width: 64px;
    height: 64px;
    color: var(--border);
    margin-bottom: 1rem;
}

.drop-zone-empty h4 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.drop-zone-empty p {
    margin: 0;
    font-size: 0.9375rem;
}

.drop-zone-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Package Summary */
.package-summary {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
}

.summary-row span {
    color: var(--text-secondary);
}

.summary-row strong {
    color: var(--navy);
    font-weight: 600;
}

.discount-row {
    color: var(--green-primary);
}

.discount-value {
    color: var(--green-primary) !important;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.total-row {
    padding-top: 1rem;
    border-top: 2px solid var(--gold-primary);
    font-size: 1.125rem;
}

.total-value {
    color: var(--gold-primary) !important;
    font-size: 1.5rem;
}

.btn-block {
    width: 100%;
    margin-top: 1.5rem;
}

.quick-templates {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.templates-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 0.75rem 0;
}

.template-btn {
    display: block;
    width: 100%;
    padding: 0.625rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.template-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(200, 157, 92, 0.05);
}

/* ============================================
   COMPARISON MATRIX
   ============================================ */

.comparison-matrix-section {
    padding: 5rem 0;
    background: white;
}

.comparison-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--background);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
}

.accordion-title i {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.accordion-item[data-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item[data-expanded="true"] .accordion-content {
    max-height: 2000px;
}

.comparison-table {
    padding: 0 2rem 2rem;
}

.comparison-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.comparison-table-row.header-row {
    font-weight: 700;
    background: var(--background);
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.comparison-cell {
    padding: 0.5rem;
    font-size: 0.9375rem;
}

.federal-col {
    color: var(--navy);
}

.sled-col {
    color: var(--green-dark);
}

.portal-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem 2rem;
}

.portal-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1rem 0;
}

.portal-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portal-column li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.timeline-comparison {
    padding: 0 2rem 2rem;
}

.timeline-track {
    margin-bottom: 2rem;
}

.timeline-track h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.timeline-bar {
    display: flex;
    height: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
}

.federal-timeline {
    background: linear-gradient(90deg, rgba(10, 15, 30, 0.1), rgba(10, 15, 30, 0.05));
}

.sled-timeline {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.timeline-phase {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    border-right: 2px solid white;
    padding: 0.5rem;
}

.timeline-phase:last-child {
    border-right: none;
}

.timeline-total {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS V2
   ============================================ */

.testimonials-section-v2 {
    padding: 5rem 0;
    background: var(--background);
}

.testimonials-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card-v2 {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card-v2:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--gold-primary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-weight: 700;
    color: var(--navy);
}

.testimonial-project {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1rem 0;
}

.testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-badge {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.federal-badge {
    background: rgba(10, 15, 30, 0.1);
    color: var(--navy);
}

.sled-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-dark);
}

.both-badge {
    background: rgba(200, 157, 92, 0.1);
    color: var(--gold-dark);
}

/* Stats Banner */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(200, 157, 92, 0.15) 0%, transparent 60%);
}

.final-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: white;
    margin: 0 0 1rem 0;
}

.final-cta-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    color: white;
    font-weight: 500;
}

.cta-benefit i {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: white;
    box-shadow: 0 4px 16px rgba(200, 157, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 157, 92, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--navy);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn i {
    width: 18px;
    height: 18px;
}

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

@media (max-width: 1024px) {
    .hero-split-container {
        flex-direction: column;
        height: auto;
    }

    .hero-side {
        min-height: 50vh;
    }

    .hero-divider {
        width: 100%;
        height: 2px;
        flex-direction: column;
    }

    .btn-both-markets {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 1rem 0;
    }

    .roi-calculator-wrapper,
    .package-builder-wrapper {
        grid-template-columns: 1fr;
    }

    .service-card-3d {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero-side-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-signals {
        flex-direction: column;
        gap: 1rem;
    }

    .market-tabs {
        flex-direction: column;
    }

    .service-card-3d {
        min-width: 300px;
    }

    .service-comparison {
        grid-template-columns: 1fr;
    }

    .service-pool-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .portal-lists {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-side-title {
        font-size: 2rem;
    }

    .hero-side-subtitle {
        font-size: 1rem;
    }

    .phase-arrow-mini {
        transform: rotate(90deg);
    }

    .process-phases-mini {
        flex-direction: column;
    }

    .service-card-3d {
        min-width: 280px;
    }

    .roi-metric-value {
        font-size: 2rem;
    }

    .roi-metric-value-large {
        font-size: 2.5rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.section {
    padding: 4rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--navy);
    margin: 0 0 0.75rem 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   LEAD CAPTURE MODAL
   ============================================ */

.lead-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lead-modal {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--navy);
}

.lead-modal h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    margin: 0 0 0.5rem 0;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.lead-modal .form-group {
    margin-bottom: 1.5rem;
}

.lead-modal .form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.lead-modal .form-group input,
.lead-modal .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--navy);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lead-modal .form-group input:focus,
.lead-modal .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(200, 157, 92, 0.1);
}

.lead-modal .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(200, 157, 92, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 157, 92, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.75rem 0;
}

.form-success p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .lead-modal {
        padding: 2rem 1.5rem;
    }

    .lead-modal h2 {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.9375rem;
    }
}
