/* =============================================
   CSS Variables & Reset
============================================= */
:root {
    /* Land-Centric Color Palette */
    --primary: #2D5016;
    --primary-dark: #1A3009;
    --primary-light: #4A7C23;
    --secondary: #8B7355;
    --accent: #D4A853;
    --earth: #5C4033;
    --earth-light: #8B6914;
    --forest: #228B22;
    --sunset: #E07B39;
    --dark: #1C1C1C;
    --dark-light: #2D2D2D;
    --gray-900: #1A1A1A;
    --gray-800: #2D2D2D;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #6B6B6B;
    --gray-400: #8F8F8F;
    --gray-300: #BFBFBF;
    --gray-200: #E0E0E0;
    --gray-100: #F0F0F0;
    --gray-50: #F8F8F8;
    --white: #FFFFFF;
    --cream: #FDF8F3;
    --danger: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-earth: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 100%);
    --gradient-sunset: linear-gradient(135deg, rgba(224, 123, 57, 0.9) 0%, rgba(212, 168, 83, 0.9) 100%);
    --gradient-forest: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* =============================================
   Utility Classes
============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* =============================================
   Buttons
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(45, 80, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.5);
}

.btn-outline-dark {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* =============================================
   Top Banner
============================================= */
.top-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 0.9rem;
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.35);
}

.social-icons svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-banner p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.top-banner p a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.top-banner p a:hover {
    opacity: 0.9;
}

/* =============================================
   Navigation
============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.has-banner {
    top: 44px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    top: 0 !important;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--gray-900);
}

.logo-accent {
    color: var(--accent);
}

.navbar.scrolled .logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

.nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.navbar:not(.scrolled) .nav-cta {
    background: var(--white);
    color: var(--primary) !important;
    box-shadow: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--gray-900);
}

/* =============================================
   Hero Section with Background Image
============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center center / cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-overlay {
    display: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title-line {
    display: block;
}

.hero-title-line.highlight {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.hero-cta .btn {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.5);
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* =============================================
   Partners Section (Scrolling Logos)
============================================= */
.partners-section {
    padding: 60px 0;
    background: var(--cream);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.partners-scroll {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-logo {
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo svg {
    width: 120px;
    height: 40px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); }
}

/* =============================================
   Problem Section with Topographic Pattern
============================================= */
.problem-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content .section-tag {
    color: var(--primary);
}

.problem-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--gray-900);
}

.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    min-width: 200px;
}

.rotating-text {
    display: inline-block;
    position: relative;
    height: 1.3em;
    overflow: hidden;
    vertical-align: bottom;
}

.text-item {
    display: block;
    position: absolute;
    width: 100%;
    text-align: left;
    color: var(--sunset);
    text-decoration: line-through;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.text-item.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.problem-description {
    text-align: left;
    max-width: 650px;
    margin: 0 auto 40px;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.problem-description h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.problem-description p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.problem-description p:last-child {
    margin-bottom: 0;
}

/* =============================================
   Promises Section with Floating Images
============================================= */
.promises-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.promises-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/topo-pattern.png') center center / cover no-repeat;
    opacity: 0.6;
}

.promises-section .container {
    position: relative;
    z-index: 1;
}

.promises-section .section-title {
    color: var(--white);
    margin-bottom: 60px;
}

/* Promises Layout - Images + List */
.promises-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Floating Images - Overlapping Stack */
.promises-images {
    position: relative;
    width: 100%;
    height: 520px;
}

.floating-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, z-index 0s;
}

.floating-image:hover {
    z-index: 10 !important;
    transform: scale(1.05) !important;
}

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

/* Position each image with overlap - larger sizes */
.float-1 {
    width: 340px;
    height: 240px;
    top: 0;
    left: 0;
    z-index: 4;
    animation: floatUp1 4s ease-in-out infinite;
}

.float-2 {
    width: 320px;
    height: 220px;
    top: 40px;
    left: 220px;
    z-index: 3;
    animation: floatUp2 4.5s ease-in-out infinite 0.5s;
}

.float-3 {
    width: 330px;
    height: 230px;
    top: 220px;
    left: 30px;
    z-index: 2;
    animation: floatUp3 5s ease-in-out infinite 1s;
}

.float-4 {
    width: 310px;
    height: 210px;
    top: 270px;
    left: 250px;
    z-index: 1;
    animation: floatUp4 4.2s ease-in-out infinite 1.5s;
}

/* Different float animations for organic movement */
@keyframes floatUp1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

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

@keyframes floatUp3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(0.5deg);
    }
}

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

/* Promise List with Arrows */
.promises-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 120px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promise-arrow {
    font-size: 2rem;
    color: var(--primary-light);
    font-weight: 300;
    line-height: 1;
}

.promise-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

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

.promises-cta .btn {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.5);
}

.promises-cta .btn:hover {
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.6);
}

/* Responsive for Promises */
@media (max-width: 992px) {
    .promises-images {
        height: 380px;
    }
    
    .float-1 {
        width: 220px;
        height: 160px;
    }
    
    .float-2 {
        width: 200px;
        height: 140px;
        left: 160px;
    }
    
    .float-3 {
        width: 210px;
        height: 150px;
        top: 150px;
        left: 20px;
    }
    
    .float-4 {
        width: 190px;
        height: 130px;
        top: 180px;
        left: 170px;
    }
}

@media (max-width: 768px) {
    .promises-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .promises-images {
        order: 1;
        height: 320px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .promises-list {
        order: 2;
        padding-left: 0;
    }
    
    .promise-text {
        font-size: 1.25rem;
    }
    
    .float-1 {
        width: 180px;
        height: 130px;
        top: 0;
        left: 0;
    }
    
    .float-2 {
        width: 170px;
        height: 120px;
        top: 20px;
        left: 140px;
    }
    
    .float-3 {
        width: 175px;
        height: 125px;
        top: 130px;
        left: 10px;
    }
    
    .float-4 {
        width: 165px;
        height: 115px;
        top: 150px;
        left: 150px;
    }
}

/* =============================================
   Process Section
============================================= */
.process-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header .section-title {
    margin-bottom: 16px;
}

.process-header .section-subtitle {
    margin-bottom: 24px;
}

.process-steps {
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow-x: auto;
    padding: 20px 0;
}

.step {
    flex: 1;
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.step.highlight-step {
    background: var(--gradient-primary);
    border-color: transparent;
}

.step.highlight-step .step-number,
.step.highlight-step h3 {
    color: var(--white);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step-content h3 {
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 600;
    line-height: 1.5;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

/* =============================================
   Reasons Section with Topographic Background
============================================= */
.reasons-section {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.reasons-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/topo-pattern.png') center center / cover no-repeat;
    opacity: 0.5;
}

.reasons-section .container {
    position: relative;
    z-index: 1;
}

.reasons-section .section-title {
    margin-bottom: 48px;
    color: var(--white);
}

.reasons-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.reason-card {
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.reason-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.reason-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.reason-card h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    font-weight: 600;
}

/* =============================================
   Benefits Section
============================================= */
.benefits-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header .section-title {
    margin-bottom: 16px;
}

.benefits-header .section-subtitle {
    margin-bottom: 24px;
}

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

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.benefit-card.full-width {
    grid-column: 1 / -1;
}

.benefit-header h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================
   Testimonials Section
============================================= */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
}

.stars {
    color: var(--accent);
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.slider-btn:hover svg {
    stroke: var(--white);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-600);
}

.testimonials-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-content {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-dots .dot:hover {
    background: var(--primary-light);
}

/* =============================================
   Why Us Section with Topographic Background
============================================= */
.why-us-section {
    padding: var(--section-padding);
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/topo-pattern.png') center center / cover no-repeat;
    opacity: 0.6;
}

.why-us-section .container {
    position: relative;
    z-index: 1;
}

.why-us-section .section-title {
    margin-bottom: 16px;
    color: var(--white);
}

.why-us-section .section-subtitle {
    margin-bottom: 48px;
    color: var(--gray-400);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: rgba(255,255,255,0.95);
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-weight: 700;
}

.why-card p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.why-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.why-link:hover {
    text-decoration: underline;
}

/* =============================================
   FAQ Section
============================================= */
.faq-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header .section-title {
    margin-bottom: 24px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item.active {
    border-color: var(--primary-light);
    border-left: 4px solid var(--primary);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: var(--transition);
    font-family: inherit;
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* =============================================
   Contact Section with Topographic Background
============================================= */
.contact-section {
    padding: var(--section-padding);
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/topo-pattern.png') center center / cover no-repeat;
    opacity: 0.4;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

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

.contact-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 16px;
    color: var(--white);
}

.contact-info > p {
    color: var(--gray-400);
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-details h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 124, 35, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(74, 124, 35, 0.3);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-light);
}

.contact-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--primary-light);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

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

/* =============================================
   Footer
============================================= */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gray-700);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* =============================================
   Responsive Design
============================================= */
@media (max-width: 1024px) {
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step {
        min-width: 200px;
        flex: 0 0 calc(33.333% - 16px);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-banner {
        display: none;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .promises-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .step {
        flex: 0 0 calc(50% - 12px);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .slider-btn {
        display: none;
    }
    
    .reasons-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .reason-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .promises-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .testimonial-content {
        padding: 24px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* =============================================
   Animations & Effects
============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 28, 28, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.mobile-menu-content a {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
