/* ============================================
   Brad Campbell — Mortgage Lender Website
   Forest Green + Off-White · Vibrant Modern
   ============================================ */

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

:root {
    --forest-600: #1B5E20;
    --forest-500: #2d6a2f;
    --forest-700: #154a18;
    --cream-50: #FDFCF8;
    --cream-100: #FAFAF4;
    --lime-400: #a8d96e;
    --lime-500: #8BC34A;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #6b6b6b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.15;
    font-weight: 700;
}

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

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

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest-600);
    color: #fff;
    border-color: var(--forest-600);
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
    background: var(--forest-700);
    border-color: var(--forest-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

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

.btn-white {
    background: #fff;
    color: var(--forest-600);
    border-color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

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

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

/* ── Section Labels ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest-600);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--forest-600);
    border-radius: 2px;
}

.section-label-light {
    color: rgba(255,255,255,0.7);
}

.section-label-light::before {
    background: rgba(255,255,255,0.5);
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title-light {
    color: #fff;
}

.section-title .text-forest-600 {
    color: var(--forest-600);
}

.section-sub {
    font-size: 18px;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

.section-sub-light {
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin: 0 auto;
}

/* ── Navigation ── */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
    padding: 16px 0;
}

.nav-fixed.scrolled {
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    transition: color var(--transition);
}

.nav-fixed.scrolled .nav-logo {
    color: var(--forest-600);
}

.nav-logo-text {
    display: none;
}

@media (min-width: 640px) {
    .nav-logo-text { display: inline; }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 900px) {
    .nav-links { display: flex; }
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-fixed.scrolled .nav-link {
    color: var(--text-mid);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-fixed.scrolled .nav-link:hover {
    color: var(--forest-600);
    background: rgba(27, 94, 32, 0.06);
}

.nav-cta-btn {
    padding: 10px 22px;
    background: var(--forest-600);
    color: #fff !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
    transition: all var(--transition);
}

.nav-cta-btn:hover {
    background: var(--forest-700);
    transform: translateY(-1px);
}

/* Mobile menu button */
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
    transition: all var(--transition);
}

.nav-fixed.scrolled .menu-btn {
    background: rgba(27, 94, 32, 0.08);
    color: var(--forest-600);
}

.menu-btn:hover { background: rgba(255,255,255,0.2); }
.nav-fixed.scrolled .menu-btn:hover { background: rgba(27, 94, 32, 0.12); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--forest-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.mobile-menu-close:hover { background: rgba(255,255,255,0.18); }

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

.mobile-menu-link {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.mobile-menu-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

.mobile-menu-cta {
    margin-top: 16px;
    background: var(--forest-600);
    color: #fff !important;
    border-radius: var(--radius-lg);
    padding: 16px 36px;
}

.mobile-menu-cta:hover { background: var(--forest-700); }

.mobile-menu-contact {
    margin-top: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-phone, .mobile-menu-email {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.mobile-menu-phone:hover, .mobile-menu-email:hover { color: #fff; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a250b 0%, #1B5E20 35%, #2d6a2f 60%, #154a18 100%);
    padding: 120px 24px 80px;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(168, 217, 110, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(139, 195, 74, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Geometric shapes */
.geo {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
}

.geo-circle-1 {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 3px solid var(--lime-400);
    top: -80px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.geo-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--lime-400);
    bottom: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite reverse;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: var(--lime-500);
    border-radius: var(--radius-lg);
    top: 25%;
    left: 8%;
    transform: rotate(45deg);
    animation: spin 12s linear infinite;
}

.geo-square-2 {
    width: 60px;
    height: 60px;
    border: 3px solid var(--lime-400);
    border-radius: var(--radius-sm);
    bottom: 30%;
    right: 12%;
    transform: rotate(20deg);
    animation: float 5s ease-in-out infinite;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid var(--lime-500);
    top: 15%;
    right: 25%;
    opacity: 0.08;
    animation: spin 15s linear infinite reverse;
}

.geo-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--lime-400) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    bottom: 25%;
    right: 5%;
    opacity: 0.3;
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    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;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime-400);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
    font-size: clamp(44px, 8vw, 88px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-accent {
    background: linear-gradient(135deg, var(--lime-400), var(--lime-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 24px 40px;
    backdrop-filter: blur(12px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.hero-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--lime-400);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave-svg {
    width: 100%;
    height: 80px;
}

/* ── Services ── */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--cream-50);
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-600), var(--lime-500));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-card-highlight {
    background: var(--forest-600);
    border-color: var(--forest-600);
}

.service-card-highlight .service-title { color: #fff; }
.service-card-highlight .service-desc { color: rgba(255,255,255,0.75); }
.service-card-highlight .service-features li { color: rgba(255,255,255,0.8); }
.service-card-highlight .service-features li::before { color: var(--lime-400); }
.service-card-highlight:hover { border-color: var(--forest-700); }

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--lime-400);
    color: var(--forest-900);
    font-size: 11px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27,94,32,0.08), rgba(27,94,32,0.04));
    border-radius: var(--radius-md);
    color: var(--forest-600);
    margin-bottom: 24px;
}

.service-card-highlight .service-icon {
    background: rgba(255,255,255,0.12);
    color: var(--lime-400);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 14px;
    color: var(--text-mid);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-600);
    font-weight: 700;
    font-size: 13px;
}

/* Services decorative */
.services-deco { position: absolute; pointer-events: none; }
.geo-circle-3 {
    width: 300px; height: 300px; border-radius: 50%;
    border: 2px solid rgba(27,94,32,0.06);
    bottom: -80px; left: -80px;
}
.geo-square-3 {
    width: 80px; height: 80px;
    background: rgba(168,217,110,0.15);
    border-radius: var(--radius-lg);
    top: 60px; right: -20px;
    transform: rotate(30deg);
}

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

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

@media (min-width: 900px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.about-image-wrap {
    position: relative;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 560/680;
}

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.15;
}

.about-floating-card {
    position: absolute;
    bottom: 32px;
    left: -16px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-floating-number {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.about-floating-value {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--forest-600);
}

.about-content .section-label { margin-bottom: 12px; }

.about-text {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-value-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: 50%;
    color: #fff;
    margin-top: 2px;
}

.about-value span {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
    padding-top: 3px;
}

/* ── Process ── */
.process {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a250b 0%, #1B5E20 50%, #154a18 100%);
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 80% at 10% 50%, rgba(168,217,110,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 90% 30%, rgba(139,195,74,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 64px;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 36px;
        right: -10px;
        width: 20px;
        height: 2px;
        background: rgba(255,255,255,0.2);
    }
}

.process-step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--lime-400);
    margin-bottom: 16px;
}

.process-step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    color: var(--lime-400);
    transition: all var(--transition);
}

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

.process-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials {
    padding: 100px 0;
    background: var(--cream-50);
    overflow: hidden;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: var(--forest-600);
    opacity: 0.1;
    position: absolute;
    top: 16px;
    left: 28px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.testimonial-author-location {
    font-size: 13px;
    color: var(--text-light);
}

.testimonials-deco { position: absolute; pointer-events: none; }
.geo-circle-4 {
    width: 250px; height: 250px; border-radius: 50%;
    border: 2px solid rgba(27,94,32,0.06);
    top: -60px; right: -60px;
}

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-500) 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .cta-inner {
        flex-direction: row;
        text-align: left;
        gap: 48px;
    }
}

.cta-geo { display: none; }
@media (min-width: 768px) {
    .cta-geo { display: block; }
}

.geo-circle-5 {
    width: 200px; height: 200px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.08);
    position: absolute;
    top: -60px; left: 10%;
}

.geo-square-4 {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    position: absolute;
    bottom: -20px; right: 20%;
    transform: rotate(30deg);
}

.cta-content { flex: 1; }

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    max-width: 440px;
    line-height: 1.7;
}

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

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--cream-100);
}

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

@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.contact-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: var(--radius-md);
    color: #fff;
}

.contact-detail-label {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

/* Contact form */
.contact-form-wrap {
    position: relative;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--forest-600);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27,94,32,0.08);
}

.form-input::placeholder { color: var(--text-light); }

.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 14px center;
    padding-right: 40px;
    cursor: pointer;
}

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

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

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: 50%;
    color: #fff;
}

.form-success-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: #0a1a0a;
    padding: 64px 0 0;
    color: rgba(255,255,255,0.6);
}

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

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand { }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

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

.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-links li a:hover { color: var(--lime-400); }

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 48px 0 32px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-legal {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    line-height: 1.6;
    max-width: 600px;
}

/* ── Scroll animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
