/* ============================================
   Appraisal Consultants — Style System
   Classic & Elegant | Forest Green + Off-White
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2C3E2D;
    background-color: #FAFAF5;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #1B4332;
}

/* ---------- UTILITY ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #1B4332;
    color: #FAFAF5;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: 4px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #1B4332;
    color: #FAFAF5;
    border-color: #1B4332;
}

.btn--primary:hover {
    background: #2D6A4F;
    border-color: #2D6A4F;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.25);
}

.btn--ghost {
    background: transparent;
    color: #1B4332;
    border-color: #1B4332;
}

.btn--ghost:hover {
    background: #1B4332;
    color: #FAFAF5;
    transform: translateY(-1px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

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

/* ---------- SECTION HEADER ---------- */
.section-header {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: left;
}

.section-header--centered {
    text-align: center;
}

.section-header__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D6A4F;
    margin-bottom: 12px;
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #1B4332;
}

.section-header__lead {
    font-size: 1.0625rem;
    color: #5A6B5C;
    line-height: 1.8;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 24px rgba(27, 67, 50, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__line1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1B4332;
    letter-spacing: 0.02em;
}

.logo__line2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #2D6A4F;
    font-style: italic;
    letter-spacing: 0.04em;
}

/* ---------- NAV ---------- */
.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2C3E2D;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.25s ease;
    position: relative;
}

.nav__link:hover {
    color: #1B4332;
    background: rgba(27, 67, 50, 0.06);
}

.nav__link--cta {
    background: #1B4332;
    color: #FAFAF5;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: #2D6A4F;
    color: #FAFAF5;
}

/* ---------- NAV TOGGLE ---------- */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

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

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 70% 60%, rgba(64, 145, 108, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(45, 106, 79, 0.4) 0%, transparent 50%);
}

.hero__card {
    position: relative;
    z-index: 1;
    background: rgba(250, 250, 245, 0.07);
    border: 1px solid rgba(250, 250, 245, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
}

.hero__content {
    max-width: 560px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 250, 245, 0.7);
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid rgba(250, 250, 245, 0.2);
    border-radius: 100px;
}

.hero__headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    color: #FAFAF5;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__subheadline {
    font-size: 1.0625rem;
    color: rgba(250, 250, 245, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

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

.hero__actions .btn--primary {
    background: #FAFAF5;
    color: #1B4332;
    border-color: #FAFAF5;
}

.hero__actions .btn--primary:hover {
    background: #EDEDE5;
    border-color: #EDEDE5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero__actions .btn--ghost {
    border-color: rgba(250, 250, 245, 0.5);
    color: #FAFAF5;
}

.hero__actions .btn--ghost:hover {
    background: rgba(250, 250, 245, 0.15);
    border-color: rgba(250, 250, 245, 0.7);
    color: #FAFAF5;
}

/* ---------- STAT CARDS ---------- */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(250, 250, 245, 0.1);
    border: 1px solid rgba(250, 250, 245, 0.18);
    border-radius: 12px;
    padding: 24px 28px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateX(-4px);
    background: rgba(250, 250, 245, 0.15);
}

.stat-card__number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #FAFAF5;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(250, 250, 245, 0.7);
    letter-spacing: 0.04em;
}

/* ---------- HERO SCROLL ---------- */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 250, 245, 0.5);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
}

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

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

/* ---------- SERVICES ---------- */
.services {
    padding: 120px 0;
    background: #FAFAF5;
}

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

.service-card {
    background: #FFFFFF;
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B4332, #2D6A4F);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 67, 50, 0.1);
    border-color: rgba(27, 67, 50, 0.15);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, 0.07);
    border-radius: 10px;
    margin-bottom: 24px;
    color: #1B4332;
    transition: background 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: rgba(27, 67, 50, 0.12);
}

.service-card__title {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: #1B4332;
}

.service-card__description {
    font-size: 0.9375rem;
    color: #5A6B5C;
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__features li {
    font-size: 0.8125rem;
    color: #2C3E2D;
    padding-left: 18px;
    position: relative;
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #2D6A4F;
    border-radius: 50%;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 120px 0;
    background: #F2F4EE;
}

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

.about__image-wrap {
    position: relative;
}

.about__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.12);
}

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

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: #1B4332;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.08;
}

.about__content {
    max-width: 480px;
}

.about__body {
    font-size: 1rem;
    color: #5A6B5C;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 32px 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2C3E2D;
}

.value-item__icon {
    color: #2D6A4F;
    flex-shrink: 0;
}

/* ---------- PROCESS ---------- */
.process {
    padding: 120px 0;
    background: #FAFAF5;
}

.process__steps {
    max-width: 860px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    position: relative;
}

.process-step__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2D6A4F;
    opacity: 0.4;
    line-height: 1;
    padding-top: 4px;
}

.process-step__content {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.process-step__content:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process-step__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1B4332;
}

.process-step__description {
    font-size: 0.9375rem;
    color: #5A6B5C;
    line-height: 1.8;
}

.process-step__connector {
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: -16px;
    width: 1px;
    background: rgba(27, 67, 50, 0.15);
}

.process-step:last-child .process-step__connector {
    display: none;
}

/* ---------- AREAS ---------- */
.areas {
    padding: 120px 0;
    background: #1B4332;
}

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

.areas__content .section-header__title,
.areas__content .section-header__eyebrow {
    color: #FAFAF5;
}

.areas__content .section-header__eyebrow {
    color: rgba(250, 250, 245, 0.6);
}

.areas__body {
    font-size: 1rem;
    color: rgba(250, 250, 245, 0.75);
    line-height: 1.85;
    margin-bottom: 36px;
}

.areas__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    padding: 8px 18px;
    border: 1px solid rgba(250, 250, 245, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(250, 250, 245, 0.85);
    transition: all 0.25s ease;
}

.area-tag:hover {
    background: rgba(250, 250, 245, 0.1);
    border-color: rgba(250, 250, 245, 0.4);
    color: #FAFAF5;
}

.areas__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    height: 500px;
}

.areas__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 120px 0;
    background: #F2F4EE;
}

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

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 67, 50, 0.08);
}

.testimonial-card__quote {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 40px;
    height: 40px;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    color: #5A6B5C;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1B4332;
    letter-spacing: 0.02em;
}

/* ---------- CTA ---------- */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2D6A4F 0%, #1B4332 100%);
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta__content {
    flex: 1;
    max-width: 560px;
}

.cta__content .section-header__eyebrow {
    color: rgba(250, 250, 245, 0.6);
}

.cta__content .section-header__title {
    color: #FAFAF5;
}

.cta__body {
    font-size: 1.0625rem;
    color: rgba(250, 250, 245, 0.8);
    line-height: 1.8;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta__actions .btn--primary {
    background: #FAFAF5;
    color: #1B4332;
    border-color: #FAFAF5;
}

.cta__actions .btn--primary:hover {
    background: #EDEDE5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta__actions .btn--ghost {
    border-color: rgba(250, 250, 245, 0.5);
    color: #FAFAF5;
}

.cta__actions .btn--ghost:hover {
    background: rgba(250, 250, 245, 0.15);
    border-color: rgba(250, 250, 245, 0.7);
    color: #FAFAF5;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 120px 0;
    background: #FAFAF5;
}

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

.contact__body {
    font-size: 1rem;
    color: #5A6B5C;
    line-height: 1.85;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

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

.contact-detail__icon {
    color: #2D6A4F;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2D6A4F;
    margin-bottom: 4px;
}

.contact-detail__value {
    font-size: 0.9375rem;
    color: #2C3E2D;
    line-height: 1.6;
}

.contact-detail__value a {
    color: #2C3E2D;
    transition: color 0.2s ease;
}

.contact-detail__value a:hover {
    color: #2D6A4F;
}

.contact__hours {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #5A6B5C;
    padding: 16px 20px;
    background: #F2F4EE;
    border-radius: 8px;
}

.contact__hours svg {
    color: #2D6A4F;
    flex-shrink: 0;
}

/* ---------- FORM ---------- */
.contact__form-wrap {
    background: #FFFFFF;
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: 12px;
    padding: 40px;
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: #1B4332;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2C3E2D;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(27, 67, 50, 0.15);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #2C3E2D;
    background: #FAFAF5;
    transition: all 0.25s ease;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2D6A4F;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
    background: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9AAF9E;
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%232C3E2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.contact__success {
    text-align: center;
    padding: 48px 24px;
}

.contact__success svg {
    margin: 0 auto 20px;
    color: #2D6A4F;
}

.contact__success h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1B4332;
}

.contact__success p {
    font-size: 0.9375rem;
    color: #5A6B5C;
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #143326;
    padding: 72px 0 0;
}

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

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(250, 250, 245, 0.5);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
}

.footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 250, 245, 0.4);
    margin-bottom: 20px;
}

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

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(250, 250, 245, 0.7);
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #FAFAF5;
}

.footer__address {
    font-style: normal;
    font-size: 0.9375rem;
    color: rgba(250, 250, 245, 0.7);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer__contact p {
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.footer__contact a {
    color: rgba(250, 250, 245, 0.7);
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: #FAFAF5;
}

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

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

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero__card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 160px;
    }
    
    .about__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-wrap {
        max-width: 480px;
    }
    
    .areas__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .areas__image {
        height: 360px;
        max-width: 480px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #FAFAF5;
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .nav.open {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .nav__link {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }
    
    .nav__link--cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
    }
    
    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99;
    }
    
    .nav.open + .nav__overlay,
    .nav__overlay.active {
        display: block;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero__card {
        padding: 28px;
    }
    
    .hero__headline {
        font-size: 1.75rem;
    }
    
    .hero__stats {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .cta__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta__actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer__inner {
        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__card {
        padding: 24px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about__values {
        grid-template-columns: 1fr;
    }
    
    .contact__form-wrap {
        padding: 24px;
    }
    
    .services, .about, .process, .areas, .testimonials, .cta, .contact {
        padding: 80px 0;
    }
}
