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

:root {
    --emerald-900: #042f26;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #faf8f5;
    --cream-100: #f5f0e8;
    --cream-200: #ebe4d6;
    --cream-300: #d4c4a8;
    --warm-700: #8b6914;
    --warm-600: #a67c00;
    --warm-500: #c49a3c;
    --warm-400: #d4a574;
    --warm-300: #e8c9a0;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --text-muted: #9a9a9a;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-50);
    line-height: 1.6;
    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;
    transition: color 0.2s ease;
}

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

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

/* ===== Typography ===== */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--emerald-700);
}

.section-title--light,
.section-title--light em {
    color: var(--white);
}

.section-title--light em {
    color: var(--warm-400);
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-700);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(6, 95, 70, 0.3);
}

.btn--primary:hover {
    background: var(--emerald-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 95, 70, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--emerald-800);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--light:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 0.95rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--emerald-700);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.nav.scrolled .nav__logo-text {
    color: var(--text-dark);
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--emerald-600);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
    color: var(--emerald-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--emerald-700);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
}

.nav__cta:hover {
    background: var(--emerald-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.3);
}

/* Nav toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(4, 47, 38, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

.mobile-menu__content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--cream-50);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
}

.mobile-menu.open .mobile-menu__content {
    transform: translateX(0);
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-200);
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu__link:hover {
    color: var(--emerald-700);
    padding-left: 8px;
}

.mobile-menu__divider {
    height: 1px;
    background: var(--cream-200);
    margin: 16px 0;
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--emerald-700);
    padding: 12px 0;
}

.mobile-menu__address {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 8px;
}

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

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(6, 95, 70, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(212, 165, 116, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--emerald-600);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    max-width: 560px;
}

.hero__headline em {
    font-style: italic;
    color: var(--emerald-700);
}

.hero__subheadline {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating stat cards */
.hero__stats {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    aspect-ratio: 1;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-card__icon {
    width: 44px;
    height: 44px;
    background: var(--cream-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 12px;
}

.stat-card__value {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-card__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-card--1 {
    top: 5%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.stat-card--2 {
    top: 30%;
    right: 0;
    animation: float2 7s ease-in-out infinite;
}

.stat-card--3 {
    bottom: 30%;
    left: 0;
    animation: float3 5.5s ease-in-out infinite;
}

.stat-card--4 {
    bottom: 5%;
    left: 20%;
    animation: float4 6.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(-1deg); }
}

/* Hero image */
.hero__image {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 42vw;
    max-width: 560px;
    z-index: 0;
    opacity: 0.9;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    filter: saturate(0.85) contrast(1.05);
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll svg {
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scrollArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.services .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--cream-200);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 95, 70, 0.08);
    border-color: transparent;
}

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

.service-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream-200);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-card__number {
    color: var(--cream-300);
}

.service-card__icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--cream-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card__icon-wrap {
    background: var(--emerald-700);
    color: var(--white);
    transform: scale(1.05);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 20px;
    filter: saturate(0.8) contrast(1.02);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--emerald-700);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about__value svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ===== Why Us ===== */
.why-us {
    padding: 120px 0;
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 10% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.why-us__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-us__text {
    margin-bottom: 60px;
}

.why-us__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.why-us__stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 56px;
}

.why-stat {
    text-align: center;
}

.why-stat__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.why-stat__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.03em;
}

.why-us__cta {
    display: flex;
    justify-content: center;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.contact__info {
    max-width: 480px;
}

.contact__desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

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

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--cream-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact__link {
    color: var(--emerald-700);
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact__link:hover {
    color: var(--emerald-600);
    text-decoration: underline;
}

.contact__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Contact form */
.contact__form-wrap {
    max-width: 480px;
}

.contact__form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--cream-200);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-200);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all 0.2s ease;
    outline: none;
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__input:focus {
    border-color: var(--emerald-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.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='%236b6b6b' 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;
    cursor: pointer;
}

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

/* Form success */
.form__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form__success.show {
    display: block;
    animation: fadeIn 0.4s var(--ease-out);
}

.form__success-icon {
    width: 72px;
    height: 72px;
    background: var(--cream-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--emerald-600);
}

.form__success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--emerald-900);
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--emerald-600);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 4px;
}

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

.footer__phone,
.footer__email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--white);
}

.footer__address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

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

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(-24px);
}

[data-animate="fade-right"].visible {
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(24px);
}

[data-animate="fade-left"].visible {
    transform: translateX(0);
}

/* Stagger children */
.services__grid [data-animate] {
    transition-delay: calc(var(--i, 0) * 0.08s);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__image {
        display: none;
    }
    
    .hero__stats {
        max-width: 100%;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        aspect-ratio: auto;
    }
    
    .stat-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        animation: none !important;
        text-align: center;
    }
    
    .hero__stats .stat-card__icon {
        margin: 0 auto 10px;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-wrap img {
        height: 420px;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__info {
        max-width: 100%;
    }
    
    .why-us__stats {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero__headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about__values {
        grid-template-columns: 1fr;
    }
    
    .why-us {
        padding: 80px 0;
    }
    
    .why-us__stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact__form-card {
        padding: 32px 24px;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px 18px;
    }
    
    .stat-card__value {
        font-size: 1.1rem;
    }
    
    .stat-card__label {
        font-size: 0.72rem;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.25rem);
    }
}
