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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a2e23;
    background-color: #faf9f6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #1B5E3B;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 1000;
    border-radius: 0 0 0.5rem 0.5rem;
}

.skip-link:focus {
    top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Typography ───────────────────────────────────── */
.section__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1B5E3B;
    margin-bottom: 0.75rem;
}

.section__eyebrow--light {
    color: rgba(255, 255, 255, 0.6);
}

.section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #0f3120;
    margin-bottom: 1rem;
}

.section__title--light {
    color: #fff;
}

.section__title-accent {
    font-style: italic;
    font-weight: 400;
}

.section__subtitle {
    font-size: 1.125rem;
    color: #4a6352;
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #1B5E3B;
    color: #fff;
    border: 2px solid #1B5E3B;
}

.btn--primary:hover {
    background: #174f32;
    border-color: #174f32;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 59, 0.3);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn--white {
    background: #fff;
    color: #1B5E3B;
    border: 2px solid #fff;
}

.btn--white:hover {
    background: #f0f7f2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

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

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(27, 94, 59, 0.1);
    padding: 0.75rem 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.nav.scrolled .nav__logo {
    color: #0f3120;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
}

.nav__logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

.nav__logo-icon {
    color: #fff;
    transition: color 0.3s ease;
}

.nav.scrolled .nav__logo-icon {
    color: #1B5E3B;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7bb58e;
    transition: width 0.3s ease;
}

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

.nav__link:hover {
    color: #fff;
}

.nav.scrolled .nav__link {
    color: #4a6352;
}

.nav.scrolled .nav__link:hover {
    color: #1B5E3B;
}

.nav.scrolled .nav__link::after {
    background: #1B5E3B;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav__cta:hover {
    background: rgba(255, 255, 255, 0.25);
}

.nav.scrolled .nav__cta {
    color: #1B5E3B;
    background: #eaf3ee;
    border-color: #a9cfb5;
}

.nav.scrolled .nav__cta:hover {
    background: #d3e5d8;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 110;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav.scrolled .nav__toggle-line {
    background: #1B5E3B;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 105;
    background: rgba(8, 28, 17, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.mobile-nav__link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    padding: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-nav.open .mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.open .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open .mobile-nav__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open .mobile-nav__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open .mobile-nav__link:nth-child(4) { transition-delay: 0.25s; }

.mobile-nav__divider {
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.mobile-nav__cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #7bb58e;
    padding: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.3s;
}

.mobile-nav.open .mobile-nav__cta {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 28, 17, 0.92) 0%,
        rgba(27, 94, 59, 0.85) 40%,
        rgba(54, 122, 78, 0.75) 70%,
        rgba(84, 149, 106, 0.6) 100%
    );
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(8, 28, 17, 0.4) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem 1.5rem;
    padding-top: 5rem;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a9cfb5;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero__title-accent {
    font-style: italic;
    font-weight: 400;
    color: #a9cfb5;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.hero__trust-item svg {
    color: #7bb58e;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 7rem 0;
    background: #faf9f6;
}

.services .section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.services .section__subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 49, 32, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(27, 94, 59, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 49, 32, 0.12);
}

.service-card__img {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__body {
    padding: 1.75rem;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ee;
    border-radius: 0.75rem;
    color: #1B5E3B;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: #1B5E3B;
    color: #fff;
}

.service-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f3120;
    margin-bottom: 0.625rem;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: #4a6352;
    line-height: 1.65;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 7rem 0;
    background: #f5f3ed;
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid #1B5E3B;
    border-radius: 1rem;
    z-index: 0;
}

.about__image-wrap img {
    position: relative;
    z-index: 1;
    border-radius: 1rem;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(15, 49, 32, 0.15);
}

.about__image-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 2;
    background: #1B5E3B;
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    box-shadow: 0 15px 40px rgba(27, 94, 59, 0.3);
    max-width: 260px;
}

.about__image-float svg {
    flex-shrink: 0;
    color: #7bb58e;
}

.about__content {
    padding: 1rem 0;
}

.about__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #1B5E3B, #7bb58e);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.about__text {
    font-size: 1.0625rem;
    color: #4a6352;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about__value-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ee;
    border-radius: 0.625rem;
    color: #1B5E3B;
}

.about__value strong {
    display: block;
    font-size: 1rem;
    color: #0f3120;
    margin-bottom: 0.125rem;
}

.about__value-desc {
    font-size: 0.875rem;
    color: #6b8a72;
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #081c11 0%, #1B5E3B 50%, #367a4e 100%);
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us__desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 1.5rem;
    max-width: 440px;
}

.why-us__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stat__number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #a9cfb5;
    margin-bottom: 0.375rem;
}

.stat__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
    padding: 5rem 0;
    background: #faf9f6;
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: #fff;
    border-radius: 1.5rem;
    padding: 3.5rem 4rem;
    box-shadow: 0 10px 50px rgba(15, 49, 32, 0.08);
    border: 1px solid rgba(27, 94, 59, 0.08);
}

.cta__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #0f3120;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.cta__title-accent {
    font-style: italic;
    font-weight: 400;
    color: #1B5E3B;
}

.cta__desc {
    font-size: 1.0625rem;
    color: #4a6352;
    line-height: 1.7;
    max-width: 400px;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 7rem 0;
    background: #f5f3ed;
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #1B5E3B, #7bb58e);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.contact__text {
    font-size: 1.0625rem;
    color: #4a6352;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ee;
    border-radius: 0.625rem;
    color: #1B5E3B;
}

.contact__detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f3120;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact__detail p {
    font-size: 0.9375rem;
    color: #4a6352;
    line-height: 1.6;
}

.contact__detail a {
    color: #1B5E3B;
    transition: color 0.3s ease;
}

.contact__detail a:hover {
    color: #367a4e;
    text-decoration: underline;
}

/* Contact Form */
.contact__form-wrap {
    width: 100%;
}

.contact__form-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 49, 32, 0.08);
    border: 1px solid rgba(27, 94, 59, 0.06);
}

.contact__form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3120;
    margin-bottom: 0.375rem;
}

.contact__form-subtitle {
    font-size: 0.9375rem;
    color: #6b8a72;
    margin-bottom: 1.75rem;
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a2e23;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a2e23;
    background: #faf9f6;
    border: 1.5px solid #d9d4c8;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
    border-color: #1B5E3B;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 94, 59, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #a0a89e;
}

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

/* Success Message */
.contact__success {
    text-align: center;
    padding: 2rem;
}

.contact__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3ee;
    border-radius: 50%;
    color: #1B5E3B;
}

.contact__success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3120;
    margin-bottom: 0.5rem;
}

.contact__success-text {
    font-size: 0.9375rem;
    color: #4a6352;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: #081c11;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer__logo svg {
    color: #7bb58e;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__link-group strong {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7bb58e;
    margin-bottom: 0.25rem;
}

.footer__link-group a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer__link-group a:hover {
    color: #fff;
}

.footer__link-group span {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer__bottom a:hover {
    color: #7bb58e;
}

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__layout,
    .why-us__inner,
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-wrap {
        max-width: 500px;
    }

    .cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .cta__desc {
        max-width: 100%;
    }

    .cta__actions {
        flex-direction: row;
        justify-content: center;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero__title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero__trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services {
        padding: 4rem 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card__img {
        height: 180px;
    }

    .about {
        padding: 4rem 0;
    }

    .about__image-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }

    .about__image-accent {
        display: none;
    }

    .about__image-wrap img {
        height: 350px;
    }

    .why-us {
        padding: 4rem 0;
    }

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

    .cta {
        padding: 3rem 0;
    }

    .contact {
        padding: 4rem 0;
    }

    .contact__form-card {
        padding: 1.75rem;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .hero__content {
        padding-top: 4rem;
    }

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

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

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

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

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