/* ============================================
   BE ACTIVE BY JEREMY - MODERN WEBSITE STYLES
   Mobile-First, Conversion-Optimized Design
   ============================================ */

/* CSS Variables - Color Scheme from Original Site */
:root {
    /* Primary Colors */
    --primary-blue: #2A3990;
    --primary-blue-dark: #1C2660;
    --primary-blue-light: #3D4FA8;
    
    /* Neutral Colors */
    --text-dark: #252128;
    --text-gray: #8F8F8F;
    --bg-light: #E2E2E2;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    
    /* Accent Colors */
    --accent-orange: #FF6B35;
    --accent-green: #4ECDC4;
    --success: #10B981;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* Typography - Premium Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 { 
    font-size: 1.875rem;
    line-height: 1.2;
}

h3 { 
    font-size: 1.5rem;
    line-height: 1.3;
}

h4 { 
    font-size: 1.25rem;
    line-height: 1.4;
}

@media (min-width: 640px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }
}

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.75rem; }
    h3 { font-size: 2rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 3rem; }
    h3 { font-size: 2.25rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-align: center;
    min-height: 44px; /* Touch-friendly */
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(42, 57, 144, 0.3);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 57, 144, 0.4);
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 57, 144, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-blue);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
}

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

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 2px solid rgba(42, 57, 144, 0.15);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid rgba(42, 57, 144, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    min-height: 80px;
    position: relative;
}

@media (max-width: 767px) {
    .header-content {
        min-height: 70px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    color: var(--primary-blue);
    z-index: 1001;
    position: relative;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
    display: block;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: none;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
    .logo-img {
        height: 60px;
    }
}

/* Navigation */
.nav {
    display: none;
    align-items: center;
    gap: var(--spacing-lg);
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    font-size: 0.9375rem;
    transition: color var(--transition-base);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary-blue);
}

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

@media (min-width: 1024px) {
    .nav-link {
        color: var(--text-dark);
    }
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    cursor: pointer;
    justify-content: center;
    z-index: 1002;
    position: relative;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform-origin: center;
}

.menu-toggle.active span {
    background: var(--primary-blue);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--primary-blue-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--primary-blue-dark);
}

.hero-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.02);
    transition: transform 20s ease-out;
    position: relative;
    filter: brightness(0.95);
}

.hero:hover .hero-img {
    transform: scale(1.05);
    filter: brightness(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 38, 96, 0.45) 0%, rgba(42, 57, 144, 0.40) 50%, rgba(28, 38, 96, 0.42) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-number,
.stat-label {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .hero-content {
        padding: var(--spacing-xl) 0;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Social Proof Bar */
.social-proof-bar {
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(42, 57, 144, 0.1);
    border-bottom: 1px solid rgba(42, 57, 144, 0.1);
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

@media (min-width: 640px) {
    .proof-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

.proof-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
}

.proof-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Section Styles */
section {
    padding: var(--spacing-2xl) 0;
}

@media (max-width: 767px) {
    section {
        padding: var(--spacing-xl) 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: var(--spacing-2xl) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.section-label {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.1) 0%, rgba(42, 57, 144, 0.08) 100%);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(42, 57, 144, 0.15);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.75;
    font-weight: var(--font-weight-normal);
}

@media (max-width: 767px) {
    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Services Section */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 640px) {
    .services-grid {
        gap: var(--spacing-lg);
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

.service-card {
    background: var(--bg-white);
    border: 1px solid rgba(226, 226, 226, 0.8);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(42, 57, 144, 0.15);
    border-color: var(--primary-blue);
}

.service-card.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 4px 16px rgba(42, 57, 144, 0.12);
}

.service-card.featured:hover {
    box-shadow: 0 24px 48px rgba(42, 57, 144, 0.2);
}

.popular-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--accent-orange);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(42, 57, 144, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .service-image {
        height: 240px;
    }
}

.service-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--spacing-sm);
}

@media (min-width: 768px) {
    .service-content {
        padding: var(--spacing-xl);
    }
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(42, 57, 144, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-blue);
}

.service-title {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.75;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.service-features li {
    padding: 0.625rem 0;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-features li::marker {
    content: '';
}

.service-features li:first-child {
    margin-top: 0;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-lg);
    }
}

.step-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 226, 226, 0.5);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(42, 57, 144, 0.12);
    border-color: rgba(42, 57, 144, 0.2);
}

.step-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.step-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(42, 57, 144, 0.08) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.step-card:hover .step-image img {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .step-image {
        height: 180px;
    }
}

.step-number {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-blue);
    opacity: 0.2;
    margin: var(--spacing-md) var(--spacing-xl) var(--spacing-sm);
    line-height: 1;
}

.step-title,
.step-description {
    padding: 0 var(--spacing-xl);
}

.step-description {
    padding-bottom: var(--spacing-xl);
    margin-top: var(--spacing-sm);
}

.step-title {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-section {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 226, 226, 0.5);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(42, 57, 144, 0.2);
}

.testimonial-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.testimonial-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(42, 57, 144, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .testimonial-image {
        height: 200px;
    }
}

.testimonial-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stars {
    color: #FBBF24;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.125rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-white);
    padding: var(--spacing-2xl) 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr 1fr;
    }
}

.why-choose-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    min-height: 400px;
    background: var(--bg-light);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: imageFadeIn 0.6s ease-out 0.2s forwards;
}

.why-choose-image:hover img {
    transform: scale(1.06);
}

@media (max-width: 1023px) {
    .why-choose-image {
        min-height: 300px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .why-choose-image {
        min-height: 250px;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.benefit-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(226, 226, 226, 0.6);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(42, 57, 144, 0.2);
}

.faq-item.active {
    box-shadow: 0 4px 16px rgba(42, 57, 144, 0.12);
    border-color: var(--primary-blue);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question svg {
    transition: transform var(--transition-base);
    flex-shrink: 0;
    color: var(--primary-blue);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.faq-cta p {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-blue);
    font-weight: var(--font-weight-medium);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.social-link:hover {
    color: var(--primary-blue);
}

/* Forms */
.contact-form,
.consultation-form {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 226, 226, 0.5);
}

@media (min-width: 768px) {
    .contact-form {
        padding: var(--spacing-2xl);
    }
}

.contact-form h3,
.consultation-form h3 {
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .contact-form h3,
    .consultation-form h3 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xl);
    }
}

.form-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(42, 57, 144, 0.1);
    background: var(--bg-white);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232A3990' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Modal - Premium Mobile Responsive */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--spacing-lg);
    max-width: 600px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    border: none;
    margin: 0;
    animation: slideUpModal 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
}

@keyframes slideUpModal {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 640px) {
    .modal {
        align-items: center;
        padding: var(--spacing-md);
    }
    
    .modal-content {
        border-radius: var(--radius-xl);
        padding: var(--spacing-xl);
        max-height: 90vh;
        margin: 0;
        animation: fadeInScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes fadeInScale {
        from {
            transform: scale(0.95);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }
}

@media (min-width: 768px) {
    .modal-content {
        padding: var(--spacing-2xl);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(226, 226, 226, 0.8);
    color: var(--text-dark);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1;
    padding: 0;
}

.modal-close:hover,
.modal-close:active {
    background: var(--text-dark);
    color: var(--bg-white);
    transform: rotate(90deg);
}

@media (min-width: 640px) {
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-right: 3rem;
}

.modal-header h2 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    line-height: 1.3;
}

.modal-header p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .modal-header {
        padding-right: 0;
    }
    
    .modal-header h2 {
        font-size: 1.875rem;
    }
    
    .modal-header p {
        font-size: 1rem;
    }
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInSlide 0.3s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .form-step h3 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xl);
    }
}

.goal-options,
.equipment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 480px) {
    .goal-options {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (min-width: 640px) {
    .equipment-options {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

.goal-option,
.equipment-option {
    cursor: pointer;
}

.goal-option input,
.equipment-option input {
    display: none;
}

.goal-card {
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    min-height: 100px;
    justify-content: center;
    cursor: pointer;
}

.goal-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 57, 144, 0.15);
}

.goal-option input:checked + .goal-card {
    border-color: var(--primary-blue);
    background: rgba(42, 57, 144, 0.08);
    box-shadow: 0 4px 16px rgba(42, 57, 144, 0.2);
    transform: translateY(-2px);
}

.goal-card svg {
    color: var(--primary-blue);
    width: 36px;
    height: 36px;
}

.goal-card span {
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
    color: var(--text-dark);
}

@media (min-width: 480px) {
    .goal-card {
        padding: var(--spacing-lg);
        min-height: 120px;
    }
    
    .goal-card svg {
        width: 40px;
        height: 40px;
    }
    
    .goal-card span {
        font-size: 1rem;
    }
}

.equipment-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 56px;
}

.equipment-option:hover {
    border-color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(42, 57, 144, 0.1);
}

.equipment-option input:checked + span {
    color: var(--primary-blue);
    font-weight: var(--font-weight-semibold);
}

.equipment-option:has(input:checked) {
    border-color: var(--primary-blue);
    background: rgba(42, 57, 144, 0.08);
    box-shadow: 0 2px 8px rgba(42, 57, 144, 0.15);
}

.equipment-option span {
    font-size: 0.9375rem;
    flex: 1;
}

@media (min-width: 640px) {
    .equipment-option {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .equipment-option span {
        font-size: 1rem;
    }
}

.form-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Sticky CTA (Mobile) */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-md);
    z-index: 999;
    border-top: 1px solid rgba(226, 226, 226, 0.8);
    backdrop-filter: blur(10px);
    animation: slideUp 0.3s ease-out;
}

.sticky-cta .btn {
    box-shadow: 0 4px 12px rgba(42, 57, 144, 0.3);
}

@media (max-width: 1023px) {
    .sticky-cta.visible {
        display: block;
    }
}

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

/* Footer */
.footer {
    background: var(--primary-blue-dark);
    color: var(--bg-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-sm);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--bg-white);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile Menu Styles - Premium Design */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        z-index: 9999;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        width: 85%;
        max-width: 400px;
        border-right: 1px solid rgba(42, 57, 144, 0.1);
    }
    
    .nav.active {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    }
    
    .nav::before {
        content: '';
        display: block;
        height: 80px;
        background: var(--bg-white);
        border-bottom: 1px solid var(--bg-light);
    }
    
    .nav-link {
        width: 100%;
        padding: 1.25rem var(--spacing-xl);
        font-size: 1.0625rem;
        font-weight: var(--font-weight-medium);
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        display: block;
        color: var(--text-dark);
        transition: all var(--transition-base);
        position: relative;
    }
    
    .nav-link:first-of-type {
        margin-top: 0;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-blue);
        transform: scaleY(0);
        transition: transform var(--transition-base);
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(42, 57, 144, 0.04);
        color: var(--primary-blue);
        padding-left: calc(var(--spacing-xl) + 8px);
    }
    
    .nav-link:hover::before,
    .nav-link:active::before {
        transform: scaleY(1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav .btn {
        width: calc(100% - 3rem);
        margin: var(--spacing-lg) var(--spacing-xl);
        justify-content: center;
        box-shadow: var(--shadow-md);
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 9998;
        animation: fadeIn 0.3s ease-out;
    }
}

/* Premium Mobile Responsiveness */
@media (max-width: 767px) {
    /* Typography */
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.6;
        padding: 0 var(--spacing-sm);
    }
    
    .section-title {
        font-size: 1.875rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    /* Hero Stats */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-xl);
    }
    
    .stat {
        padding: var(--spacing-md);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: var(--font-weight-extrabold);
    }
    
    .stat-label {
        font-size: 0.875rem;
        opacity: 0.95;
    }
    
    /* Cards */
    .service-card,
    .testimonial-card,
    .step-card {
        margin-bottom: var(--spacing-lg);
    }
    
    /* Spacing */
    .why-choose-content {
        gap: var(--spacing-xl);
    }
    
    .contact-content {
        gap: var(--spacing-xl);
    }
    
    /* Social Proof */
    .proof-items {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md) 0;
    }
    
    .proof-item {
        justify-content: center;
        text-align: center;
        padding: var(--spacing-sm);
        background: rgba(255, 255, 255, 0.5);
        border-radius: var(--radius-md);
    }
    
    /* Buttons */
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-lg {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    /* Forms */
    .contact-form,
    .consultation-form {
        padding: var(--spacing-lg);
    }
    
    /* Sections */
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Image Optimization - Premium Loading */
.service-image,
.testimonial-image,
.step-image {
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.service-image img,
.testimonial-image img,
.step-image img {
    opacity: 0;
    animation: imageFadeIn 0.6s ease-out forwards;
}

@keyframes imageFadeIn {
    to {
        opacity: 1;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Print Styles */
@media print {
    .header,
    .sticky-cta,
    .modal {
        display: none;
    }
}

