:root {
    --emerald-900: #042f2e;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #047857;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --cream-50: #fafaf5;
    --cream-100: #f5f5e8;
    --cream-200: #e8e8d0;
    --cream-300: #d4d4b8;
    --ink-900: #0a0a08;
    --ink-700: #1a1a16;
    --ink-600: #2a2a24;
    --ink-500: #3a3a34;
    --ink-400: #5a5a52;
    --ink-300: #7a7a72;
    --ink-200: #9a9a90;
    --ink-100: #b0b0a6;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --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);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-700);
    background-color: var(--cream-50);
    overflow-x: hidden;
}

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

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

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

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 250, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(4, 47, 46, 0.08);
}

.nav.scrolled .nav__brand-text {
    color: var(--ink-900);
}

.nav.scrolled .nav__link {
    color: var(--ink-600);
}

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

.nav.scrolled .nav__link--cta {
    background: var(--emerald-700);
    color: white;
}

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

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    transition: color 0.4s var(--ease-out);
}

.nav__brand-icon {
    display: flex;
    align-items: center;
    color: var(--emerald-400);
}

.nav__brand-text {
    transition: color 0.4s var(--ease-out);
}

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

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

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

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

.nav__link:hover {
    color: white;
}

.nav__link--cta {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: white;
    transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: white;
    color: var(--emerald-800);
    border-color: white;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-line {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 47, 46, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(4, 120, 87, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(6, 78, 59, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(16, 185, 129, 0.25) 0%, transparent 60%),
        linear-gradient(160deg, #042f2e 0%, #064e3b 35%, #047857 65%, #065f46 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

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

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 44px;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s var(--ease-out);
}

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

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

.btn--ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

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

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero__trust-item svg {
    color: var(--emerald-400);
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    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.4), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── SECTIONS ─── */
.section {
    padding: 120px 0;
}

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

.section__header--center {
    text-align: center;
}

.section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 16px;
    position: relative;
}

.section__label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--emerald-500);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

.section__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink-400);
    font-weight: 300;
}

/* ─── SERVICES ─── */
.services {
    background: var(--cream-50);
}

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

.service-card {
    background: white;
    border: 1px solid var(--cream-200);
    border-radius: 16px;
    padding: 40px 32px;
    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: linear-gradient(90deg, var(--emerald-600), var(--emerald-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

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

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

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 14px;
    color: var(--emerald-700);
    margin-bottom: 24px;
    transition: all 0.3s var(--ease-out);
}

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

.service-card__title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--ink-400);
    font-weight: 300;
}

/* ─── ABOUT ─── */
.about {
    background: var(--cream-100);
}

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

.about__image-wrap {
    position: relative;
}

.about__image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 32px 80px rgba(4, 47, 46, 0.12);
}

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

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-400));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

.about__badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(4, 47, 46, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about__badge-number {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
}

.about__badge-text {
    font-size: 0.8125rem;
    color: var(--ink-400);
    font-weight: 400;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ink-500);
    margin-bottom: 20px;
    font-weight: 300;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-200);
}

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

.about__stat-number {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
}

.about__stat-label {
    font-size: 0.75rem;
    color: var(--ink-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.about__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--cream-200);
    flex-shrink: 0;
}

/* ─── WHY US ─── */
.why-us {
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 0% 100%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 0%, rgba(52, 211, 153, 0.1) 0%, transparent 60%);
}

.why-us .section__label {
    color: var(--emerald-400);
}

.why-us .section__label::before {
    background: var(--emerald-500);
}

.why-us .section__title {
    color: white;
}

.why-us .section__title em {
    color: var(--emerald-300);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 44px 36px;
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(8px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.why-card__number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s var(--ease-out);
}

.why-card:hover .why-card__number {
    color: rgba(52, 211, 153, 0.2);
}

.why-card__title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    background: var(--cream-50);
}

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

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

.testimonial-card::before {
    content: '"';
    font-family: var(--serif);
    font-size: 6rem;
    color: var(--emerald-100);
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(4, 47, 46, 0.08);
    border-color: transparent;
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: var(--emerald-500);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-500);
    margin-bottom: 24px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-700);
    padding-top: 20px;
    border-top: 1px solid var(--cream-200);
}

/* ─── CTA / CONTACT ─── */
.cta {
    background: var(--cream-100);
}

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

.cta__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

.cta__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink-400);
    font-weight: 300;
    margin-bottom: 36px;
}

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

.cta__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--ink-600);
    transition: color 0.3s var(--ease-out);
}

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

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

.cta__form-wrap {
    background: white;
    border-radius: 24px;
    padding: 44px 36px;
    box-shadow: 0 24px 64px rgba(4, 47, 46, 0.08);
    border: 1px solid var(--cream-200);
}

.cta__form-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink-600);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-200);
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--ink-900);
    background: var(--cream-50);
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    outline: none;
}

.form-input::placeholder {
    color: var(--ink-200);
}

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

.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='%237a7a72' 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 {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    text-align: center;
    color: var(--emerald-700);
}

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

.form-success svg {
    color: var(--emerald-500);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--ink-900);
    padding: 80px 0 0;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.footer__logo svg {
    color: var(--emerald-400);
    flex-shrink: 0;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

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

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s var(--ease-out);
    font-weight: 300;
}

.footer__links a:hover {
    color: var(--emerald-400);
}

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

.footer__contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s var(--ease-out);
}

.footer__contact a:hover {
    color: var(--emerald-400);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

/* ─── REVEAL ANIMATIONS ─── */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }
[data-reveal].revealed:nth-child(5) { transition-delay: 0.35s; }
[data-reveal].revealed:nth-child(6) { transition-delay: 0.4s; }

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

    .about__layout {
        gap: 48px;
    }

    .cta__inner {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    }

    .nav__links.active {
        transform: translateX(0);
    }

    .nav__link {
        color: var(--ink-700) !important;
        font-size: 1.0625rem;
    }

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

    .nav__link--cta {
        background: var(--emerald-700) !important;
        color: white !important;
        border-color: var(--emerald-700) !important;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
        min-height: 100svh;
    }

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

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

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

    .hero__scroll {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

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

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

    .about__image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__content {
        max-width: 100%;
    }

    .about__badge {
        left: 0;
        bottom: 16px;
    }

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

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

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

    .cta__form-wrap {
        padding: 28px 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    .hero__headline {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .section__title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

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

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