/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --accent-light: #60a5fa;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --container-width: 1200px;
    --spacing-unit: 1rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-xl);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-light);
    transform: translateY(-2px);
}

.nav-menu .cta-button {
    background: var(--gradient-accent);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.nav-menu .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.nav-menu .cta-button::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--bg-white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--bg-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-white);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--gradient-accent);
    color: var(--bg-white);
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.video-container h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.video-placeholder-content {
    text-align: center;
    padding: 2rem;
}

/* Simplified Trust Indicators */
.trust-indicators-simple {
    padding: 5rem 0;
    background: var(--bg-white);
}

.trust-indicators-simple h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item-simple {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.trust-item-simple:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trust-item-simple h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-item-simple p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: fixed;
    position: relative;
}

.trust-indicators::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.85);
    z-index: 0;
}

.trust-indicators .container {
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.trust-item:hover::before {
    left: 0;
}

.trust-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Icon Styles */
.trust-item::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.trust-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--bg-white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.page-header .container {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--bg-white);
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.pillar-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.pillar-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.pillar-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.pillar-card-large {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
}

.pillar-card-large:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--accent-color);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    color: var(--bg-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.pillar-card-large:hover .pillar-icon {
    transform: rotate(5deg) scale(1.1);
}

.pillar-card-large h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.pillar-card-large h2::after {
    display: none;
}

.pillar-card-large p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
}

.pillar-card-large ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.pillar-card-large li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.pillar-card-large li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.step:hover::before {
    transform: scaleY(1);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    color: var(--bg-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
}

.step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
}

.process-step-detailed {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    position: relative;
}

.process-step-detailed::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 0 24px 0 100%;
    pointer-events: none;
}

.process-step-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-header {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.step-number-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    color: var(--bg-white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.process-step-detailed:hover .step-number-large {
    transform: scale(1.1) rotate(5deg);
}

.step-header h2 {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
    font-size: 2.25rem;
}

.step-header h2::after {
    display: none;
}

.step-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
}

.step-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.step-content li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-accent);
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.timeline-item:not(:last-child) .timeline-marker::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% + 1rem);
    background: var(--gradient-accent);
    opacity: 0.3;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-light);
}

/* Disclaimer Boxes */
.disclaimer-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 5px solid #ffc107;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.disclaimer-box p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.8;
}

.disclaimer-box-large {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--border-color);
    padding: 3rem;
    border-radius: 24px;
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
}

.disclaimer-box-large h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.disclaimer-box-large p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.disclaimer-box-large p:last-child {
    margin-bottom: 0;
}

/* Simplified Benefits Section */
.benefits-section-simple {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.benefits-section-simple h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card-simple {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-card-simple h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.benefit-card-simple p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.9);
    z-index: 0;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
}

.benefit-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 800;
}

.benefit-card > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefit-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--text-light);
    position: relative;
    line-height: 1.7;
    font-size: 1rem;
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* Why Preview */
.why-preview {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 6rem 0;
    position: relative;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Process Preview */
.process-preview {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--bg-white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Inline CTA - for sections that need CTAs */
.inline-cta {
    background: var(--gradient-accent);
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.inline-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.inline-cta .container {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.inline-cta h3 {
    color: var(--bg-white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.inline-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-section h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Training Components */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.training-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.training-card:hover::before {
    transform: scaleX(1);
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--accent-color);
}

.training-card h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.training-card p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

.training-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.training-card li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.training-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
    padding: 6rem 0;
}

.philosophy-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.philosophy-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-box h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.philosophy-box h2::after {
    left: 0;
    transform: none;
}

.philosophy-box .lead {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.philosophy-box p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.approach-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
}

.approach-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

.approach-item h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Support Systems */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.support-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
}

.support-item::after {
    content: '💡';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.support-item:hover::after {
    opacity: 1;
    transform: scale(1) rotate(15deg);
}

.support-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.support-item h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.support-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Fit Section */
.fit-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.fit-content h2 {
    margin-bottom: 3rem;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.fit-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fit-card:hover::before {
    opacity: 1;
}

.fit-card.good-fit {
    border-left-color: var(--success-color);
}

.fit-card.not-fit {
    border-left-color: var(--error-color);
}

.fit-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: var(--shadow-xl);
}

.fit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.fit-card.good-fit .fit-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: var(--success-color);
}

.fit-card.not-fit .fit-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.2) 100%);
    color: var(--error-color);
}

.fit-card:hover .fit-icon {
    transform: scale(1.1) rotate(5deg);
}

.fit-card h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.fit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Not Fit Section */
.not-fit-section {
    padding: 6rem 0;
}

/* Expectations Section */
.expectations-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
    padding: 6rem 0;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.expectation-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.expectation-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.expectation-item h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.expectation-item p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
}

.expectation-item ul {
    margin-left: 1.5rem;
    color: var(--text-light);
}

.expectation-item li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.expectation-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Assessment Section */
.assessment-section {
    padding: 6rem 0;
}

.assessment-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.assessment-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-accent);
}

.assessment-box h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.assessment-box h2::after {
    display: none;
}

.assessment-box p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.assessment-list {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2rem;
}

.assessment-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
    border-left: 4px solid var(--accent-color);
    color: var(--text-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.assessment-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border-top: 4px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.1;
    font-weight: 800;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--accent-color);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.125rem;
}

.testimonial-author {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-topics {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 6rem 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.topic-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
}

.topic-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.topic-item h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.topic-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Application Form */
.application-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.application-form {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: var(--bg-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.checkbox-label span {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.error-message {
    display: block;
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 600;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid var(--success-color);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.5s ease-out;
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-message p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.application-info {
    padding: 6rem 0;
    background: var(--bg-light);
}

.info-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.info-box h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.info-box h2::after {
    left: 0;
    transform: none;
}

.info-box p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
}

.info-box ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.info-box li {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1rem;
}

.info-box li::marker {
    color: var(--accent-color);
    font-weight: bold;
}

/* Legal Section */
.legal-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-item {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.legal-item:hover {
    box-shadow: var(--shadow-xl);
}

.legal-item h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.25rem;
}

.legal-item h2::after {
    left: 0;
    transform: none;
}

.legal-item h3 {
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.legal-item p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-item ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.legal-item li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1rem;
}

.legal-item li::marker {
    color: var(--accent-color);
}

.legal-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.75rem 0;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.125rem;
    }

    .page-header {
        padding: 4rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        max-width: 100%;
    }

    .step {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .step-header h2 {
        text-align: center;
        font-size: 1.75rem;
    }

    .step-number-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline::before {
        display: none;
    }

    .timeline-marker::after {
        display: none;
    }

    .application-form {
        padding: 2.5rem 1.5rem;
    }

    .pillar-card-large,
    .process-step-detailed {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .trust-grid,
    .pillars-grid,
    .training-grid,
    .fit-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .pillar-card-large,
    .process-step-detailed,
    .application-form,
    .philosophy-box {
        padding: 2rem 1.25rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }
}

/* Scroll Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section,
    .btn {
        display: none;
    }
}
