:root {
    /* Cultural editorial color palette */
    --primary-indigo: #1a1b3a;
    --secondary-graphite: #2d2d2d;
    --accent-amber: #d4a574;
    --accent-neon: #00bcd4;
    --text-paper: #f8f7f4;
    --text-secondary: #9ca3af;
    --background-primary: #0f0f1a;
    --background-secondary: #161625;
    --background-tertiary: #1e1e2e;
    --border-light: rgba(212, 165, 116, 0.2);
    --shadow-subtle: rgba(0, 0, 0, 0.3);
    --shadow-warm: rgba(212, 165, 116, 0.1);
}

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

body {
    font-family: 'Crimson Pro', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-paper);
    background: var(--background-primary);
    font-size: 18px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-amber);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.2em;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

nav a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

nav a:hover {
    color: var(--accent-amber);
    border-bottom-color: var(--accent-amber);
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-neon);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav a:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    cursor: pointer;
}

.nav-dropdown .dropdown-content {
    display: none;
}

.nav-dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--text-secondary);
    border-bottom: 1px solid var(--text-secondary);
    margin-left: 8px;
    transform: rotate(45deg);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    vertical-align: middle;
}

.nav-dropdown.active > a::after {
    transform: rotate(225deg);
    border-color: var(--accent-amber);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-secondary);
    box-shadow: 0 20px 60px var(--shadow-subtle);
    min-width: 340px;
    z-index: 1001;
    border-radius: 8px;
    padding: 0;
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.dropdown-section {
    padding: 20px 0;
}

.dropdown-section:first-child {
    padding-top: 16px;
}

.dropdown-section:last-child {
    padding-bottom: 16px;
}

.dropdown-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 32px 12px 32px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 12px 32px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 32px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 2px solid transparent;
    margin: 4px 0;
}

.dropdown-item:hover {
    background: rgba(212, 165, 116, 0.05);
    color: var(--text-paper);
    border-left-color: var(--accent-amber);
    padding-left: 36px;
}

.dropdown-icon {
    font-size: 16px;
    margin-right: 16px;
    width: 20px;
    text-align: center;
    margin-top: 2px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    opacity: 1;
    color: var(--accent-amber);
}

.dropdown-text {
    flex: 1;
}

.dropdown-title {
    font-weight: 500;
    color: var(--text-paper);
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.3;
}

.dropdown-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
    font-weight: 400;
    line-height: 1.4;
}

.dropdown-item:hover .dropdown-title {
    color: var(--accent-amber);
}

.dropdown-item:hover .dropdown-subtitle {
    color: var(--text-paper);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 26, 0.1) 0%,
        rgba(15, 15, 26, 0.7) 50%,
        rgba(15, 15, 26, 0.9) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 15, 26, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-paper);
    max-width: 600px;
    padding: 80px 48px 120px 48px;
    animation: slideInFromBottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--text-paper);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 32px;
    color: var(--accent-amber);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.15em;
}

.hero p {
    font-size: clamp(1.1rem, 2.2vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Feature Sections */
.feature-section {
    padding: 140px 0;
    position: relative;
}

.feature-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.3) 0%, rgba(22, 22, 37, 0.5) 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.feature-text {
    padding: 60px 0;
    position: relative;
}

.feature-text::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 60px;
    width: 2px;
    height: calc(100% - 120px);
    background: var(--accent-amber);
    opacity: 0.6;
}

.feature-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    letter-spacing: 0.2em;
}

.feature-text h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-paper);
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.feature-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-weight: 400;
}

.feature-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-subtle);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px var(--shadow-warm);
}

.feature-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-image:hover img {
    transform: scale(1.03);
    filter: contrast(1.1) brightness(1);
}

/* Split Feature */
.split-feature {
    padding: 160px 0;
    background: var(--background-secondary);
    position: relative;
}

.split-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.03) 0%, transparent 70%);
}

.split-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 120px;
    align-items: flex-start;
}

.split-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 25px 80px var(--shadow-subtle);
    border: 1px solid var(--border-light);
}

.split-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    filter: contrast(1.02) brightness(0.97);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split-image:hover img {
    transform: scale(1.02);
    filter: contrast(1.08) brightness(1.02);
}

.split-text {
    padding: 80px 0;
    position: relative;
}

.split-text::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 80px;
    width: 1px;
    height: calc(100% - 160px);
    background: linear-gradient(to bottom, var(--accent-neon), transparent);
    opacity: 0.4;
}

.split-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-paper);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 400;
}

/* Benefits Section */
.benefits-section {
    padding: 160px 0;
    text-align: left;
    background: var(--background-primary);
    position: relative;
}

.benefits-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 80px;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    letter-spacing: 0.2em;
    position: relative;
}

.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--accent-neon);
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 60px 0 20px 0;
    color: var(--text-paper);
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
}

.benefits-content h3::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--accent-neon);
    border-radius: 50%;
}

.benefits-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
}

/* Editorial enhancements */
.feature-text h2:first-child {
    margin-top: 0;
}

.split-text h2:first-child {
    margin-top: 0;
}

.testimonials-section h2:first-child {
    margin-top: 0;
}

/* Thin separators */
.feature-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 48px;
    right: 48px;
    height: 1px;
    background: var(--border-light);
    opacity: 0.3;
}

.split-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 48px;
    right: 48px;
    height: 1px;
    background: var(--border-light);
    opacity: 0.3;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 48px;
    right: 48px;
    height: 1px;
    background: var(--border-light);
    opacity: 0.3;
}

/* Museum-like spacing */
.feature-section:last-child::after {
    display: none;
}

/* Testimonials */
.testimonials-section {
    padding: 140px 0;
    background: var(--background-tertiary);
    position: relative;
}

.testimonials-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 80px;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-align: left;
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--accent-neon);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--background-secondary);
    padding: 50px 40px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-amber), var(--accent-neon));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 20px 60px var(--shadow-warm);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 28px;
}

.testimonial-stars span {
    color: var(--accent-amber);
    font-size: 16px;
    letter-spacing: 3px;
    opacity: 0.8;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-paper);
    margin-bottom: 32px;
    font-style: normal;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
    letter-spacing: 0.1em;
}

/* Footer */
footer {
    background: var(--background-secondary);
    color: var(--text-paper);
    padding: 100px 0 60px 0;
    position: relative;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--accent-amber);
    border-bottom-color: var(--accent-amber);
    transform: translateX(8px);
}

.footer-legal {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-neon);
}

.footer-disclaimer {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    text-align: left;
    padding: 32px;
    background: var(--background-tertiary);
    border-radius: 4px;
    border: 1px solid var(--border-light);
    font-weight: 400;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: left;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    letter-spacing: 0.1em;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 16px;
    margin-left: auto;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.burger-menu:hover {
    background: rgba(212, 165, 116, 0.2);
}

.burger-line {
    width: 20px;
    height: 2px;
    background: var(--accent-amber);
    margin: 3px 0;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 1px;
}

.burger-menu.open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.open .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--background-primary);
    z-index: 1000;
    padding-top: 120px;
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--border-light);
}

.mobile-menu.open {
    display: block;
    animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.mobile-menu ul {
    list-style: none;
    padding: 0 48px;
}

.mobile-menu li {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInItem 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu li:nth-child(6) { animation-delay: 0.6s; }

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

.mobile-menu a {
    display: block;
    padding: 20px 24px;
    color: var(--text-paper);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.mobile-menu a:hover {
    background: rgba(212, 165, 116, 0.1);
    border-left-color: var(--accent-amber);
    transform: translateX(12px);
    color: var(--accent-amber);
}

.menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: rgba(212, 165, 116, 0.1);
    color: var(--accent-amber);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }

    .feature-grid,
    .split-grid {
        gap: 80px;
        grid-template-columns: 1fr 1fr;
    }

    .content-container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 20px 24px;
    }

    nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .dropdown-content {
        min-width: 300px;
        left: 24px;
        right: 24px;
        transform: none;
    }

    .dropdown-item {
        padding: 16px 24px;
    }

    .hero {
        min-height: 75vh;
        margin-top: 80px;
    }

    .hero-content {
        padding: 60px 24px 100px 24px;
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero .subtitle {
        font-size: 13px;
    }

    .hero p {
        font-size: clamp(1rem, 2.8vw, 1.1rem);
    }

    .content-container {
        padding: 0 24px;
    }

    .feature-section {
        padding: 100px 0;
    }

    .feature-grid,
    .split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-text {
        padding: 40px 0;
    }

    .feature-text::before {
        left: -24px;
    }

    .split-feature {
        padding: 120px 0;
    }

    .split-text {
        padding: 60px 0;
    }

    .split-text::before {
        left: -24px;
    }

    .benefits-section {
        padding: 120px 0;
    }

    .benefits-content {
        padding: 0 20px;
    }

    .testimonials-section {
        padding: 100px 0;
    }

    .testimonials-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    footer {
        padding: 80px 0 50px 0;
    }

    .footer-content {
        padding: 0 24px;
    }

    .footer-nav {
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-legal {
        gap: 40px;
    }

    .footer-disclaimer {
        padding: 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 16px 20px;
    }

    .hero-content {
        padding: 50px 20px 80px 20px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .content-container {
        padding: 0 20px;
    }

    .feature-section {
        padding: 80px 0;
    }

    .feature-text::before {
        display: none;
    }

    .split-text::before {
        display: none;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-disclaimer {
        font-size: 14px;
        padding: 20px;
    }
}