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

:root {
    --forest: #1B4332;
    --forest-light: #2D6A4F;
    --forest-mid: #40916C;
    --mint: #52B788;
    --light-mint: #74C69D;
    --pale: #95D6AE;
    --off-white: #D8F3DC;
    --cream: #F0F7E8;
    --white: #FFFFFF;
    --dark: #081C15;
    --text: #1A1A1A;
    --text-light: #4A4A4A;
    --text-muted: #6B6B6B;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(27, 67, 50, 0.08);
    --shadow-lg: 0 12px 48px rgba(27, 67, 50, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--forest);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(240, 247, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--forest);
}

.logo-text {
    letter-spacing: -0.02em;
}

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

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--forest);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: var(--transition);
    border-radius: 2px;
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest);
    color: var(--off-white);
}

.btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
}

.btn-secondary:hover {
    background: var(--forest);
    color: var(--off-white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: var(--off-white);
}

.btn-dark:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.15;
}

.shape-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--forest);
    top: -200px;
    right: -150px;
}

.shape-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--mint);
    bottom: -80px;
    left: -80px;
}

.shape-rect-1 {
    width: 200px;
    height: 200px;
    background: var(--pale);
    top: 20%;
    left: 5%;
    border-radius: 40px;
    transform: rotate(15deg);
}

.shape-rect-2 {
    width: 120px;
    height: 320px;
    background: var(--light-mint);
    bottom: 10%;
    right: 8%;
    border-radius: 60px;
    transform: rotate(-10deg);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid var(--forest-mid);
    top: 15%;
    right: 25%;
    opacity: 0.08;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    border: 1px solid var(--pale);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--forest);
}

.hero-title .accent {
    color: var(--forest-mid);
    position: relative;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--pale);
    opacity: 0.5;
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--forest);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--pale);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--forest);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.1;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.float-card-icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-text {
    display: flex;
    flex-direction: column;
}

.float-card-text strong {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--forest);
    font-size: 0.95rem;
}

.float-card-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 0 120px;
    position: relative;
    background: var(--white);
}

.services-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--cream);
    overflow: hidden;
}

.pattern-dots {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--pale) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
}

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

.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest-mid);
    background: var(--off-white);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pale);
    background: var(--white);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--forest);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-img-main img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 320px;
    height: 280px;
    object-fit: cover;
}

.about-pattern {
    position: absolute;
    top: -30px;
    right: 40px;
    z-index: 0;
    opacity: 0.4;
}

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

.about-content .section-tag {
    margin-bottom: 16px;
}

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

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--forest);
}

.about-feature span {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

/* ========== APPROACH ========== */
.approach {
    padding: 100px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(216, 243, 220, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

.approach-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.approach-header .section-tag {
    background: rgba(216, 243, 220, 0.15);
    color: var(--pale);
}

.approach-header .section-title {
    color: var(--off-white);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.approach-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(216, 243, 220, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.step-visual {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-shape {
    position: absolute;
    border-radius: var(--radius-sm);
}

.step-shape-1 { width: 50px; height: 50px; background: var(--mint); top: 0; left: 10px; opacity: 0.6; }
.step-shape-2 { width: 30px; height: 30px; background: var(--pale); bottom: 5px; right: 5px; border-radius: 50%; }
.step-shape-3 { width: 40px; height: 40px; background: var(--light-mint); top: 10px; right: 10px; border-radius: 50%; }
.step-shape-4 { width: 55px; height: 55px; background: var(--forest-mid); bottom: 0; left: 5px; opacity: 0.7; }
.step-shape-5 { width: 35px; height: 35px; background: var(--pale); bottom: 10px; left: 10px; border-radius: 50%; }
.step-shape-6 { width: 50px; height: 50px; background: var(--mint); top: 5px; right: 5px; opacity: 0.5; }
.step-shape-7 { width: 60px; height: 60px; background: var(--light-mint); top: 5px; left: 5px; opacity: 0.4; border-radius: 50%; }
.step-shape-8 { width: 30px; height: 30px; background: var(--pale); bottom: 5px; right: 10px; }

.approach-step h3 {
    font-size: 1.15rem;
    color: var(--off-white);
    margin-bottom: 10px;
}

.approach-step p {
    font-size: 0.9rem;
    color: rgba(216, 243, 220, 0.7);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

.step-connector {
    display: none;
}

/* ========== LOCATION ========== */
.location {
    padding: 100px 0;
    background: var(--white);
}

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

.location-info .section-tag {
    margin-bottom: 16px;
}

.location-info .section-title {
    margin-bottom: 36px;
}

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

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

.location-icon {
    width: 52px;
    height: 52px;
    background: var(--off-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--forest);
    margin-bottom: 4px;
}

.location-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.location-item a {
    color: var(--forest-mid);
}

.location-item a:hover {
    color: var(--forest);
    text-decoration: underline;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 500px;
    display: block;
}

/* ========== CTA ========== */
.cta {
    padding: 100px 0;
    background: var(--cream);
}

.cta-card {
    background: var(--forest);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(216, 243, 220, 0.06);
    top: -100px;
    right: -50px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(82, 183, 136, 0.1);
    bottom: -60px;
    left: 10%;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    background: rgba(149, 214, 174, 0.12);
    top: 20%;
    left: 40%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content .section-tag {
    background: rgba(216, 243, 220, 0.15);
    color: var(--pale);
    margin-bottom: 16px;
}

.cta-content .section-title {
    color: var(--off-white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(216, 243, 220, 0.7);
    line-height: 1.7;
}

.cta-form-wrapper {
    position: relative;
    z-index: 1;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pale);
}

.form-group input,
.form-group textarea {
    background: rgba(216, 243, 220, 0.1);
    border: 1px solid rgba(216, 243, 220, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(216, 243, 220, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--pale);
    background: rgba(216, 243, 220, 0.15);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin: 0 auto 20px;
}

.form-success h3 {
    color: var(--off-white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-success p {
    color: rgba(216, 243, 220, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(216, 243, 220, 0.1);
}

.footer-brand p {
    color: rgba(216, 243, 220, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pale);
    margin-bottom: 16px;
}

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

.footer-links a {
    color: rgba(216, 243, 220, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--off-white);
}

.footer-contact p {
    color: rgba(216, 243, 220, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(216, 243, 220, 0.6);
}

.footer-contact a:hover {
    color: var(--off-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(216, 243, 220, 0.4);
    font-size: 0.8rem;
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-float-card {
        left: 10px;
        bottom: 20px;
    }

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

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

    .about-img-secondary {
        right: 20px;
        bottom: -20px;
    }

    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .location-layout {
        grid-template-columns: 1fr;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(240, 247, 232, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(27, 67, 50, 0.08);
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav.open {
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-image-wrapper img {
        height: 400px;
    }

    .hero-float-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-flex;
    }

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

    .about-img-main img {
        height: 360px;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -60px;
        margin-left: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .location-map {
        order: -1;
    }

    .map-placeholder iframe {
        height: 300px;
    }

    .cta-card {
        padding: 32px 24px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
