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

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

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* ─── Navigation ─── */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 36, 52, 0.0);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav-fixed.scrolled {
    background: rgba(11, 36, 52, 0.97);
    box-shadow: 0 1px 0 rgba(110, 217, 185, 0.1);
}

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

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

.nav-logo-icon {
    color: #6ED9B9;
}

.nav-logo-text {
    white-space: nowrap;
}

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

.nav-link {
    color: rgba(245, 241, 235, 0.75);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #6ED9B9;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F5F1EB;
}

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

.nav-link--cta {
    background: #6ED9B9;
    color: #0B2434;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.nav-link--cta:hover {
    background: #A8EFD7;
    transform: translateY(-1px);
    color: #0B2434;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #F5F1EB;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 36, 52, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    color: rgba(245, 241, 235, 0.8);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #6ED9B9;
}

.mobile-nav-link--cta {
    margin-top: 8px;
    background: #6ED9B9;
    color: #0B2434;
    padding: 12px 32px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    background: #0B2434;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 72px 0 0;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(110, 217, 185, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(110, 217, 185, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    color: #6ED9B9;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #F5F1EB;
    margin-bottom: 24px;
}

.hero-headline--accent {
    color: #6ED9B9;
    font-style: italic;
}

.hero-sub {
    color: rgba(245, 241, 235, 0.7);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #F5F1EB;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(245, 241, 235, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(110, 217, 185, 0.3);
}

.hero-image {
    position: relative;
}

.hero-image-frame {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 520/680;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid #6ED9B9;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.5;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(245, 241, 235, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #6ED9B9;
    color: #0B2434;
}

.btn--primary:hover {
    background: #A8EFD7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 217, 185, 0.3);
}

.btn--ghost {
    background: transparent;
    color: #F5F1EB;
    border: 1px solid rgba(245, 241, 235, 0.3);
}

.btn--ghost:hover {
    border-color: #6ED9B9;
    color: #6ED9B9;
}

.btn--light {
    background: #F5F1EB;
    color: #0B2434;
}

.btn--light:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--full {
    width: 100%;
}

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

.section-eyebrow {
    color: #6ED9B9;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0B2434;
    margin-bottom: 24px;
}

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

.section-sub {
    color: rgba(11, 36, 52, 0.6);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ─── About ─── */
.about {
    background: #F5F1EB;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.about-image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 36, 52, 0.9);
    color: #F5F1EB;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
}

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

.about-text {
    color: rgba(11, 36, 52, 0.72);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 36, 52, 0.12);
}

.about-signature-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0B2434;
    margin-bottom: 4px;
}

.about-signature-title {
    font-size: 0.875rem;
    color: rgba(11, 36, 52, 0.5);
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background: #F5F1EB;
    border-radius: 12px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 36, 52, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6ED9B9, #A8EFD7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(110, 217, 185, 0.5);
    margin-bottom: 16px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    background: #0B2434;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ED9B9;
    margin-bottom: 20px;
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0B2434;
    margin-bottom: 12px;
}

.service-card-desc {
    color: rgba(11, 36, 52, 0.65);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ─── Neighborhoods ─── */
.neighborhoods {
    background: #0B2434;
    padding: 100px 0;
}

.neighborhoods-header {
    text-align: center;
    margin-bottom: 60px;
}

.neighborhoods-header .section-eyebrow {
    color: #6ED9B9;
}

.neighborhoods-header .section-heading {
    color: #F5F1EB;
}

.neighborhoods-header .section-sub {
    color: rgba(245, 241, 235, 0.55);
}

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

.neighborhood-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 480/320;
    cursor: pointer;
}

.neighborhood-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.neighborhood-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 36, 52, 0.85) 0%, rgba(11, 36, 52, 0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.neighborhood-card:hover .neighborhood-card-overlay {
    background: linear-gradient(to top, rgba(11, 36, 52, 0.9) 0%, rgba(11, 36, 52, 0.2) 60%);
}

.neighborhood-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #F5F1EB;
    margin-bottom: 4px;
}

.neighborhood-card-tag {
    font-size: 0.8125rem;
    color: #6ED9B9;
    font-weight: 400;
}

/* ─── Testimonials ─── */
.testimonials {
    background: #F5F1EB;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 36, 52, 0.08);
}

.testimonial-card-quote {
    margin-bottom: 20px;
}

.testimonial-card-text {
    color: rgba(11, 36, 52, 0.72);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card-author {
    padding-top: 20px;
    border-top: 1px solid rgba(11, 36, 52, 0.08);
}

.testimonial-card-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0B2434;
}

/* ─── CTA Band ─── */
.cta-band {
    background: #0B2434;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(110, 217, 185, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-band-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.cta-band-label {
    color: #6ED9B9;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-band-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #F5F1EB;
    line-height: 1.15;
    margin-bottom: 32px;
}

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

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

.contact-info {
    padding: 20px 0;
}

.contact-desc {
    color: rgba(11, 36, 52, 0.65);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0B2434;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-detail:hover {
    color: #6ED9B9;
}

.contact-detail svg {
    color: #6ED9B9;
    flex-shrink: 0;
}

.contact-affiliation {
    padding-top: 24px;
    border-top: 1px solid rgba(11, 36, 52, 0.1);
}

.contact-affiliation-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(11, 36, 52, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contact-affiliation-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0B2434;
}

/* Form */
.contact-form-wrap {
    background: #F5F1EB;
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #0B2434;
    letter-spacing: 0.03em;
}

.form-input {
    background: #fff;
    border: 1.5px solid rgba(11, 36, 52, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: #0B2434;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: #6ED9B9;
    box-shadow: 0 0 0 3px rgba(110, 217, 185, 0.15);
}

.form-input::placeholder {
    color: rgba(11, 36, 52, 0.35);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B2434' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-note {
    font-size: 0.8125rem;
    color: rgba(11, 36, 52, 0.45);
    text-align: center;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

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

.form-success-icon {
    width: 64px;
    height: 64px;
    background: #6ED9B9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B2434;
}

.form-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0B2434;
}

.form-success-text {
    color: rgba(11, 36, 52, 0.65);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 320px;
}

/* ─── Footer ─── */
.footer {
    background: #0B2434;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #F5F1EB;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-logo svg {
    color: #6ED9B9;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(245, 241, 235, 0.5);
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(245, 241, 235, 0.35);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #F5F1EB;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links span {
    font-size: 0.875rem;
    color: rgba(245, 241, 235, 0.55);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6ED9B9;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 241, 235, 0.08);
    padding: 24px 0;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(245, 241, 235, 0.3);
    line-height: 1.6;
}

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

    .neighborhoods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }

    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image-frame {
        aspect-ratio: 4/5;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image-wrap img {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }

    .neighborhood-card {
        aspect-ratio: 16/10;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

    .contact-form-wrap {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .cta-band {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-divider {
        display: none;
    }
}
