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

:root {
    --forest-700: #1a3a2a;
    --forest-600: #2d5a33;
    --forest-500: #3d7043;
    --forest-400: #5c8f60;
    --offwhite: #f5f2eb;
    --warm: #ebe7dd;
    --cream: #faf8f4;
    --line: rgba(26, 58, 42, 0.12);
    --line-strong: rgba(26, 58, 42, 0.22);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--offwhite);
    color: var(--forest-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 242, 235, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(26, 58, 42, 0.08);
}

.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-size: 1.1rem;
    color: var(--forest-700);
    letter-spacing: -0.02em;
}

.nav-logo-text {
    font-weight: 300;
    letter-spacing: -0.01em;
}

.nav-logo-text span {
    font-weight: 600;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--forest-600);
    letter-spacing: 0.01em;
    transition: color var(--transition);
    position: relative;
}

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

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

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--forest-700);
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    font-family: inherit;
}

.btn-forest {
    background: var(--forest-700);
    color: var(--offwhite);
    border-color: var(--forest-700);
}

.btn-forest:hover {
    background: var(--forest-600);
    border-color: var(--forest-600);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--forest-700);
    border-color: var(--line-strong);
}

.btn-outline:hover {
    border-color: var(--forest-500);
    color: var(--forest-600);
    transform: translateY(-1px);
}

.btn-cream {
    background: var(--cream);
    color: var(--forest-700);
    border-color: var(--cream);
}

.btn-cream:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.12);
}

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border-color: rgba(250, 248, 244, 0.4);
}

.btn-outline-cream:hover {
    border-color: var(--cream);
    background: rgba(250, 248, 244, 0.1);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 0.95rem;
}

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

/* ── Hero ── */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--offwhite);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 58, 42, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(61, 112, 67, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(26, 58, 42, 0.06);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--forest-600);
    letter-spacing: 0.03em;
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--forest-500);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--forest-700);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--forest-600);
    margin-bottom: 36px;
    max-width: 460px;
}

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

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--forest-400);
    font-weight: 400;
}

.hero-note svg {
    opacity: 0.6;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(26, 58, 42, 0.12);
}

.hero-card-main {
    width: 100%;
    aspect-ratio: 520/380;
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 26, 20, 0.85) 0%, transparent 100%);
}

.hero-card-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}

.hero-card-sublabel {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
    letter-spacing: 0.03em;
}

/* Stat Cards */
.stat-card {
    position: absolute;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: 0 8px 32px rgba(26, 58, 42, 0.1);
    z-index: 2;
}

.stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--forest-700);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--forest-500);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
}

.stat-card-1 {
    top: 20px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

.stat-card-2 {
    bottom: 60px;
    left: -20px;
    animation: float 4s ease-in-out infinite 1.3s;
}

.stat-card-3 {
    bottom: -10px;
    right: 40px;
    animation: float 4s ease-in-out infinite 2.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Divider ── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--forest-300);
    flex-shrink: 0;
}

/* ── Section Shared ── */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-400);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--forest-700);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--forest-500);
    max-width: 520px;
}

.section-header {
    margin-bottom: 56px;
}

/* ── Services ── */
.services {
    padding: 100px 24px;
}

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

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

.service-card:hover {
    border-color: var(--line-strong);
    background: rgba(26, 58, 42, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 58, 42, 0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(26, 58, 42, 0.06);
    color: var(--forest-600);
    margin-bottom: 22px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--forest-700);
    color: var(--offwhite);
}

.service-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--forest-700);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--forest-500);
}

/* ── About ── */
.about {
    padding: 100px 24px;
    background: rgba(26, 58, 42, 0.02);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.about-image {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 58, 42, 0.1);
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--offwhite);
    box-shadow: 0 12px 40px rgba(26, 58, 42, 0.1);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--forest-600);
    margin-bottom: 16px;
}

.about-values {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 16px;
    border-left: 2px solid var(--line-strong);
}

.value-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--forest-700);
}

.value-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--forest-500);
    line-height: 1.6;
}

/* ── Why Us ── */
.why-us {
    padding: 100px 24px;
}

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

.why-card {
    padding: 40px 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--forest-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    border-color: var(--line-strong);
    background: rgba(26, 58, 42, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 58, 42, 0.08);
}

.why-card-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.4rem;
    color: var(--forest-200);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--forest-700);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--forest-500);
}

/* ── CTA ── */
.cta-section {
    padding: 100px 24px;
    background: var(--forest-700);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 30% 50%, rgba(92, 143, 96, 0.15) 0%, transparent 60%),
                      radial-gradient(ellipse at 80% 20%, rgba(250, 248, 244, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 500px;
}

.cta-content .section-tag {
    color: var(--forest-300);
}

.cta-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--offwhite);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--forest-200);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
    padding: 100px 24px;
}

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

.contact-info {
    max-width: 480px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(26, 58, 42, 0.06);
    color: var(--forest-600);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest-400);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--forest-700);
    line-height: 1.5;
}

.contact-value a {
    transition: color var(--transition);
}

.contact-value a:hover {
    color: var(--forest-500);
}

.contact-map {
    margin-top: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

.contact-map iframe {
    width: 100%;
    height: 220px;
    display: block;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--forest-700);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--forest-500);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest-500);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--offwhite);
    color: var(--forest-700);
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 300;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--forest-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-500);
    box-shadow: 0 0 0 3px rgba(61, 112, 67, 0.1);
}

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

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

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

.success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(26, 58, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-600);
}

.success-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--forest-700);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--forest-500);
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: var(--forest-800);
    color: var(--forest-200);
    padding: 64px 24px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(220, 232, 223, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--offwhite);
    margin-bottom: 14px;
}

.footer-logo span {
    font-weight: 300;
    letter-spacing: -0.01em;
}

.footer-logo span span {
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--forest-300);
    max-width: 260px;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-300);
    margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--forest-200);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--offwhite);
}

.footer-contact li {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--forest-200);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--forest-400);
}

.footer-bottom a {
    color: var(--forest-300);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--offwhite);
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(245, 242, 235, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-menu-link {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--forest-700);
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--forest-500);
}

.mobile-menu-cta {
    margin-top: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
        min-height: 400px;
    }

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

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

    .about-image {
        max-width: 480px;
    }

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

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-grid {
        gap: 40px;
    }

    .hero-headline {
        font-size: 2rem;
    }

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

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

    .hero-visual {
        min-height: 320px;
    }

    .stat-card {
        padding: 14px 16px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-card-1 {
        top: 10px;
        right: -10px;
    }

    .stat-card-2 {
        bottom: 40px;
        left: -10px;
    }

    .stat-card-3 {
        bottom: 0;
        right: 20px;
    }

    .services {
        padding: 64px 20px;
    }

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

    .service-card {
        padding: 28px 24px;
    }

    .about {
        padding: 64px 20px;
    }

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

    .why-us {
        padding: 64px 20px;
    }

    .why-card {
        padding: 28px 24px;
    }

    .cta-section {
        padding: 64px 20px;
    }

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

    .cta-actions .btn {
        justify-content: center;
    }

    .contact {
        padding: 64px 20px;
    }

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

    .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) {
    .hero-headline {
        font-size: 1.7rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-card-1 { right: 0; }
    .stat-card-2 { left: 0; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
