@font-face {
    font-family: 'Unbounded';
    src: url('../fonts/Unbounded.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Smeltex-Medium';
    src: url('../fonts/Smeltex-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-dark: #000000;
    --bg-light: #FFFFFF;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --text-gray: #6B7280;
    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-light: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Smeltex-Medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--text-dark);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-login:hover {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border: 1px solid var(--accent);
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 2;
}


.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.3s ease-out;
    padding-top: 80px;
}

.hero-email-preview {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin-bottom: 48px;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    min-height: 40px;
    opacity: 0;
    animation: slideUpFade 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.email-text {
    color: #60A5FA;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.cursor {
    color: #60A5FA;
    animation: blink 1s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 
        0 0 20px rgba(96, 165, 250, 0.4),
        0 0 40px rgba(59, 130, 246, 0.3);
}


.hero-title .line {
    display: block;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    animation: fadeInWord 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title .line:nth-child(1) .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: 0.5s; }
.hero-title .line:nth-child(1) .word:nth-child(3) { animation-delay: 0.7s; }

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

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

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: slideUpFade 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    opacity: 0;
    animation: slideUpFade 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta.primary {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.hero-cta.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-cta.primary:hover::before {
    left: 100%;
}

.hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.6);
}

.hero-cta.primary i {
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.hero-cta.primary:hover i {
    transform: translateX(4px);
}

.hero-cta.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    opacity: 0;
    animation: slideUpFade 1.5s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards;
}

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

.stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FFFFFF 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.4s ease;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

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

/* Sections */
section {
    padding: 160px 48px;
    border-bottom: 1px solid var(--border-dark);
    transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.text-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-content {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-with-image.reverse .image-content {
    transform: translateX(-40px);
}

.image-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .image-content {
        order: -1;
    }
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-text.large {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Vision Section - Colored */
.vision {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.vision .section-title {
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.vision .section-text {
    color: rgba(255, 255, 255, 0.9);
}

.vision .section-text.large {
    color: var(--text-light);
}

.vision .feature-image {
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

.vision .feature-image:hover {
    box-shadow: 0 25px 80px rgba(255, 255, 255, 0.3);
}

/* Reconnecting Section - White */
.reconnecting {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.reconnecting .section-title {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}

.reconnecting .section-text {
    color: rgba(0, 0, 0, 0.7);
}

.reconnecting .feature-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.reconnecting .feature-image:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.domain-extensions {
    margin-top: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.domain-extensions.visible {
    opacity: 1;
    transform: translateY(0);
}

.domain-extensions-label {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    font-weight: 600;
}

.extensions-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.extension-badge {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: #3B82F6;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.extension-badge:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.extension-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.extension-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .extensions-list {
        gap: 12px;
    }
    
    .extension-badge,
    .extension-more {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Beyond Section - Dark */
.beyond {
    background: var(--bg-dark);
}

.beyond .section-title {
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.beyond .feature-image {
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.beyond .feature-image:hover {
    box-shadow: 0 25px 80px rgba(59, 130, 246, 0.4);
}

.email-clients {
    margin-top: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-clients.visible {
    opacity: 1;
    transform: translateY(0);
}

.email-clients-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.email-clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.client-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s;
}

.client-logo:hover img {
    opacity: 1;
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .email-clients-logos {
        gap: 24px;
    }
    
    .client-logo {
        width: 64px;
        height: 64px;
    }
}

/* Features Section - White */
.features {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.features .section-title {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}

.features .section-text {
    color: rgba(0, 0, 0, 0.7);
}

.features .feature-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features .feature-image:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

/* Principles Section - Dark */
.principles {
    background: var(--bg-dark);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 80px;
}

.principle-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.principle-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-card:hover .principle-icon {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.principle-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
    transition: color 0.4s ease;
}

.principle-card:hover .principle-icon i {
    color: var(--accent);
}

.principle-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    transition: color 0.4s ease;
}

.principle-card:hover h3 {
    color: var(--accent);
}

.principle-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Testimonials Section - White */
.testimonials {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonials .section-title {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}

.testimonials .section-text {
    color: rgba(0, 0, 0, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card {
    padding: 40px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    background: var(--bg-light);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* CTA Section - Dark */
.cta-section {
    background: var(--bg-dark);
    text-align: center;
    padding: 200px 48px;
}

.cta-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #60A5FA 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(96, 165, 250, 0.5));
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.btn-primary {
    padding: 16px 48px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 8px 24px rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 12px 32px rgba(96, 165, 250, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    padding: 16px 48px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
    transform: translateY(-3px);
}

/* Footer - Dark */
.footer {
    background: var(--bg-dark);
    padding: 80px 48px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 120px;
    margin-bottom: 64px;
}

.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-light);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .principles-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 20px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 100px 24px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .section-text.large {
        font-size: 1.125rem;
    }
    
    .cta-section {
        padding: 120px 24px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .footer {
        padding: 60px 24px 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
