/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: #0a1628;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #0a1628;
    letter-spacing: -0.01em;
}

.nav-logo-icon {
    color: #0a1628;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo-icon {
    color: #0a1628;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0a1628;
    opacity: 0.65;
    transition: opacity 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #5eead4;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    opacity: 1;
}

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

.nav-link--cta {
    background: #0a1628;
    color: #fff;
    opacity: 1;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: #132240;
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #0a1628;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #0a1628;
    padding: 12px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

.mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link:hover {
    color: #5eead4;
}

.mobile-menu-link--cta {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #0a1628;
    color: #fff;
    padding: 16px 40px;
    border-radius: 100px;
}

.mobile-menu-link--cta:hover {
    background: #132240;
    color: #fff;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(94, 234, 212, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(10, 22, 40, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(94, 234, 212, 0.1) 0%, transparent 50%),
        #ffffff;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(10, 22, 40, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 22, 40, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a1628;
    opacity: 0.5;
    margin-bottom: 28px;
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0a1628;
    margin-bottom: 28px;
}

.hero-em {
    font-style: italic;
    color: #0a1628;
    position: relative;
}

.hero-em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #5eead4, transparent);
    opacity: 0.6;
}

.hero-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: #0a1628;
    opacity: 0.65;
    max-width: 560px;
    margin: 0 auto 40px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--primary {
    background: #0a1628;
    color: #ffffff;
}

.btn--primary:hover {
    background: #132240;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.btn--ghost {
    background: transparent;
    color: #0a1628;
    border: 1px solid rgba(10, 22, 40, 0.2);
}

.btn--ghost:hover {
    border-color: #5eead4;
    color: #0a1628;
}

.btn--outline {
    background: transparent;
    color: #0a1628;
    border: 1px solid rgba(10, 22, 40, 0.25);
}

.btn--outline:hover {
    border-color: #5eead4;
    background: rgba(94, 234, 212, 0.06);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 0.9375rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a1628;
    opacity: 0.35;
}

/* ── Sections ── */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 16px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: rgba(94, 234, 212, 0.4);
}

.section-label::before {
    right: calc(100% + 12px);
}

.section-label::after {
    left: calc(100% + 12px);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0a1628;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #0a1628;
    opacity: 0.6;
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(94, 234, 212, 0.3);
    border-radius: 4px;
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    width: 100%;
    aspect-ratio: 520/640;
    object-fit: cover;
}

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

.about-content .section-label {
    margin-bottom: 20px;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-content p {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: #0a1628;
    opacity: 0.7;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #0a1628;
    line-height: 1.3;
}

.stat-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0a1628;
    opacity: 0.45;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(10, 22, 40, 0.1);
    flex: 0 0 auto;
}

/* ── Services ── */
.services {
    background: #fafcfc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(10, 22, 40, 0.06);
    border-radius: 4px;
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #5eead4, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.06);
    border-color: rgba(94, 234, 212, 0.2);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(94, 234, 212, 0.3);
    border-radius: 12px;
    margin-bottom: 24px;
    color: #0a1628;
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #0a1628;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.75;
    color: #0a1628;
    opacity: 0.65;
}

/* ── Areas ── */
.areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.areas-description {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: #0a1628;
    opacity: 0.65;
    margin-bottom: 36px;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.areas-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.areas-list li span:first-child {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #0a1628;
}

.area-tag {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5eead4;
    background: rgba(94, 234, 212, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
}

.areas-image-wrap {
    position: relative;
}

.areas-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    background: rgba(94, 234, 212, 0.12);
    border-radius: 4px;
    z-index: 0;
}

.areas-image {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    width: 100%;
    aspect-ratio: 480/560;
    object-fit: cover;
}

/* ── Testimonials ── */
.testimonials {
    background: #0a1628;
    color: #ffffff;
}

.testimonials .section-label {
    color: #5eead4;
}

.testimonials .section-label::before,
.testimonials .section-label::after {
    background: rgba(94, 234, 212, 0.3);
}

.testimonials .section-title {
    color: #ffffff;
}

.testimonials .section-sub {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(94, 234, 212, 0.2);
    transform: translateY(-2px);
}

.testimonial-quote {
    color: #5eead4;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

/* ── CTA Section ── */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 50%, #e8f4f8 100%);
}

.cta-card {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.cta-eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0a1628;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: #0a1628;
    opacity: 0.6;
    margin-bottom: 40px;
}

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

/* ── Contact ── */
.contact {
    background: #fafcfc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-description {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: #0a1628;
    opacity: 0.65;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
    color: #0a1628;
    opacity: 0.6;
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0a1628;
    opacity: 0.4;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #0a1628;
    line-height: 1.6;
}

.contact-value a {
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #5eead4;
}

/* Form */
.contact-form-wrap {
    background: #ffffff;
    border: 1px solid rgba(10, 22, 40, 0.06);
    border-radius: 4px;
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a1628;
    opacity: 0.6;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #0a1628;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(10, 22, 40, 0.12);
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: #0a1628;
    opacity: 0.3;
}

.form-input:focus {
    border-bottom-color: #5eead4;
}

.form-select {
    cursor: pointer;
    opacity: 0.7;
}

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

/* Form success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}

.form-success.visible {
    display: flex;
}

.form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #0a1628;
    margin-top: 8px;
}

.form-success-text {
    font-size: 0.9375rem;
    font-weight: 300;
    color: #0a1628;
    opacity: 0.6;
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: #0a1628;
    color: #ffffff;
    padding: 72px 0 40px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
}

.footer-tagline {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    margin-left: 38px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #5eead4;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer {
    max-width: 400px;
    text-align: right;
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid,
    .areas-layout,
    .contact-grid {
        gap: 48px;
    }
    
    .services-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 100px 24px 80px;
    }
    
    .about-grid,
    .areas-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-wrap {
        order: -1;
    }
    
    .about-image-wrap::before {
        top: -12px;
        left: -12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 36px 28px;
    }
    
    .areas-image-wrap::after {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrap {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        text-align: center;
        max-width: 100%;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
    }
}
