/* CSS Variables */
:root {
    --primary-green: #3D5A45;
    --primary-green-dark: #2d4433;
    --secondary-tan: #C4A484;
    --secondary-tan-light: #D4B896;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --background: #FFFFFF;
    --background-warm: #F5F2EE;
    --background-light: #FAFAFA;
    --border-color: #E5E5E5;
    --success-green: #22c55e;
    --error-red: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #2d3a2f 0%, #1a2419 100%);
    background-attachment: fixed;
}

/* Fixed background image layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    opacity: 0.22;
    z-index: -2;
    pointer-events: none;
}

/* Subtle grid overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

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

a {
    color: var(--primary-green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: 48px 0;
}

@media (min-width: 768px) {
    section {
        padding: 64px 0;
    }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes drawUnderline {
    0% {
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Hand-drawn underline effect */
.hand-underline {
    position: relative;
    display: inline-block;
}

.hand-underline svg {
    position: absolute;
    bottom: -4px;
    left: -5%;
    width: 110%;
    height: 12px;
    overflow: visible;
}

.hand-underline svg path {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.hand-underline.animate svg path {
    animation: drawUnderline 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(61, 90, 69, 0.3);
}

.btn-primary:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 90, 69, 0.4);
}

/* Subtle breathing glow for primary CTAs */
.btn-glow {
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(61, 90, 69, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(61, 90, 69, 0.5), 0 0 40px rgba(61, 90, 69, 0.15);
    }
}

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

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    position: relative;
    background: transparent;
    min-height: calc(100vh - 80px);
    min-height: calc(100dvh - 80px);
    padding: 0;
}

.hero > .container {
    position: relative;
    z-index: 1;
    padding-top: 12px;
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .hero {
        min-height: auto;
        padding: 0;
    }

    .hero > .container {
        padding-top: 20px;
        padding-bottom: 48px;
    }
}

/* Scroll indicator chevron */
.scroll-indicator {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    z-index: 5;
}

@media (min-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

.hero-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.logo {
    height: 160px;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .logo {
        height: 220px;
    }
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Text Card */
.hero-text {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-tan));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .hero-text {
        padding: 48px 40px;
        border-radius: 28px;
    }

    .hero-text::before {
        border-radius: 30px;
    }
}

.hero-text h1 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 38px;
    }
}

.hero-text .subheadline {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 14px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-text .subheadline {
        font-size: 17px;
    }
}

.hero-text .bridge-line {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

@media (min-width: 768px) {
    .hero-text .bridge-line {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

/* Micro Trust */
.micro-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .micro-trust {
        gap: 16px;
        margin-top: 16px;
        font-size: 13px;
    }
}

.micro-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(61, 90, 69, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.micro-trust span:hover {
    background: rgba(61, 90, 69, 0.15);
    transform: translateY(-2px);
}

.micro-trust i {
    color: var(--primary-green);
    font-size: 14px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-cta-wrapper .btn {
    text-align: center;
}

.cta-micro {
    font-size: 13px;
    color: var(--text-medium);
    text-align: center;
}

/* Hero Form */
.hero-form-container {
    background: #FFFFFF;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .hero-form-container {
        padding: 36px 32px;
        border-radius: 20px;
    }
}

.hero-form-container h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.hero-form-container .form-subtitle {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Math grid texture for white sections */
.subtle-grid-bg {
    position: relative;
}

.subtle-grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(61, 90, 69, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 90, 69, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.subtle-grid-bg > .container {
    position: relative;
    z-index: 1;
}

/* Dot texture for warm sections */
.subtle-dot-bg {
    position: relative;
}

.subtle-dot-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(61, 90, 69, 0.05) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.subtle-dot-bg > .container {
    position: relative;
    z-index: 1;
}

/* Section depth shadows for premium feel */
.section-depth {
    box-shadow:
        inset 0 20px 40px -20px rgba(0, 0, 0, 0.03),
        inset 0 -20px 40px -20px rgba(0, 0, 0, 0.03);
}

/* Decorative accent line */
.accent-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-tan), transparent);
    border-radius: 2px;
}

/* ==================== */
/* PACKAGE SECTION */
/* ==================== */
.package-section {
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    padding: 72px 0;
}

@media (min-width: 768px) {
    .package-section {
        padding: 96px 0;
    }
}

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

.package-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.package-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-tan));
    border-radius: 2px;
}

@media (min-width: 768px) {
    .package-header h2 {
        font-size: 42px;
    }
}

.package-header .package-subhead {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 680px;
    margin: 20px auto 0;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .package-header .package-subhead {
        font-size: 19px;
    }
}

/* System Container */
.system-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    padding: 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.system-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-tan), var(--primary-green));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@media (min-width: 768px) {
    .system-container {
        padding: 40px 48px;
    }
}

.system-context {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

/* System List */
.system-list {
    list-style: none;
}

.system-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.system-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.system-item:first-child {
    padding-top: 0;
}

.system-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 90, 69, 0.2);
}

.system-item:hover .system-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(61, 90, 69, 0.3);
}

.system-icon i {
    font-size: 18px;
    color: white;
}

.system-content {
    flex: 1;
    position: relative;
    padding-right: 120px;
}

@media (max-width: 600px) {
    .system-content {
        padding-right: 0;
    }
}

.system-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.system-item h4 .free-label {
    color: var(--primary-green);
    font-weight: 700;
}

.system-item p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

/* Differentiator Emphasis - Premium Badge */
.system-item .emphasis {
    position: absolute;
    right: 0;
    top: -10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: white;
    background: linear-gradient(135deg, #C4A484 0%, #a8865e 100%);
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(196, 164, 132, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .system-item .emphasis {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 8px;
    }
}

/* Package Pricing - Two Line Lockup */
.package-pricing {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid #e8e4df;
    text-align: center;
}

.package-pricing .price-intro {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .package-pricing .price-intro {
        font-size: 20px;
    }
}

.package-pricing .price-intro strong {
    font-weight: 700;
}

.package-pricing .price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .package-pricing .price-amount {
        font-size: 32px;
    }
}

/* Guarantee Section - Premium Forest Green Style */
.guarantee-section {
    background: linear-gradient(135deg, #2d4433 0%, #1a2a1f 100%);
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

@media (min-width: 768px) {
    .guarantee-section {
        padding: 100px 0;
    }
}

.guarantee-container {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Gold Badge */
.guarantee-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(145deg, #d4a84b 0%, #c49a3d 50%, #e8c36a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 32px rgba(212, 168, 75, 0.4),
        0 0 0 4px rgba(212, 168, 75, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 75, 0.3);
}

.guarantee-badge i {
    font-size: 44px;
    color: #2d4433;
}

@media (min-width: 768px) {
    .guarantee-badge {
        width: 110px;
        height: 110px;
    }

    .guarantee-badge i {
        font-size: 50px;
    }
}

.guarantee-headline {
    font-size: 28px;
    margin-bottom: 32px;
    color: #e8c36a;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .guarantee-headline {
        font-size: 38px;
        margin-bottom: 36px;
    }
}

.guarantee-conditions {
    margin-bottom: 32px;
}

.guarantee-conditions p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.guarantee-conditions .refund-line {
    font-size: 19px;
    margin-top: 8px;
}

.guarantee-conditions strong {
    color: #e8c36a;
    font-weight: 700;
}

@media (min-width: 768px) {
    .guarantee-conditions p {
        font-size: 18px;
    }

    .guarantee-conditions .refund-line {
        font-size: 20px;
    }
}

.guarantee-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 75, 0.5), transparent);
    margin: 0 auto 28px;
}

.guarantee-belief {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto;
}

.guarantee-belief p {
    margin: 0 0 4px 0;
}

.guarantee-belief p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .guarantee-belief {
        font-size: 16px;
    }
}

/* Guarantee CTA Button */
.guarantee-section .btn-primary {
    background: linear-gradient(135deg, #c49a3d 0%, #a8865e 100%);
    box-shadow: 0 4px 20px rgba(196, 154, 61, 0.35);
}

.guarantee-section .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(196, 154, 61, 0.5);
}

/* ==================== */
/* TESTIMONIALS */
/* ==================== */
.testimonials-section {
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    padding: 72px 0;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 96px 0;
    }
}

.testimonials-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-tan));
    border-radius: 2px;
}

@media (min-width: 768px) {
    .testimonials-section h2 {
        font-size: 42px;
    }
}

/* Testimonials Carousel */
.testimonials-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 24px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: none;
    flex: 0 0 calc(100vw - 140px);
    max-width: 320px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 100px;
    font-family: 'Playfair Display', serif;
    color: rgba(196, 164, 132, 0.15);
    line-height: 1;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 400px;
        max-width: 400px;
        padding: 32px;
    }

    .testimonial-card::before {
        font-size: 120px;
    }
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Carousel Wrapper & Navigation */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 767px) {
    .testimonials-carousel-wrapper {
        padding: 0 48px;
    }
}

@media (max-width: 400px) {
    .testimonials-carousel-wrapper {
        padding: 0 44px;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

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

.carousel-btn:hover i {
    color: white;
}

.carousel-btn i {
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

#carousel-prev {
    left: 0;
}

#carousel-next {
    right: 0;
}

@media (max-width: 767px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary-tan);
}

.testimonial-result {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(61, 90, 69, 0.3);
    letter-spacing: 0.5px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

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

.local-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 48px auto 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 14px 28px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.local-trust:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.local-trust i {
    color: white;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    padding: 8px;
    border-radius: 50%;
    font-size: 12px;
}

/* ==================== */
/* FAQ */
/* ==================== */
.faq-section {
    background: rgba(245, 242, 238, 0.98);
    position: relative;
    z-index: 1;
    padding: 72px 0;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 96px 0;
    }
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .faq-section h2 {
        font-size: 36px;
    }
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: none;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-item.active {
    box-shadow: 0 8px 30px rgba(61, 90, 69, 0.15);
    border-left: 4px solid var(--primary-green);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    background: rgba(245, 242, 238, 0.5);
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 0 24px 22px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

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

/* ==================== */
/* FINAL CTA */
/* ==================== */
.final-cta-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(245,242,238,0.98) 100%);
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0;
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: 100px 0;
    }
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .final-cta-section h2 {
        font-size: 38px;
    }
}

.final-cta-section .subtitle {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.final-cta-section .btn {
    padding: 20px 48px;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(61, 90, 69, 0.25);
}

.final-cta-section .cta-micro {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-medium);
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: linear-gradient(135deg, #1a2419 0%, #0f160e 100%);
    color: white;
    padding: 56px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
        align-items: center;
    }
}

.footer-logo {
    height: 160px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .footer-logo {
        justify-self: start;
        height: 200px;
    }
}

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

.footer-contact a {
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
    display: block;
}

.footer-contact a:hover {
    opacity: 0.85;
    text-decoration: none;
}

.footer-contact a:last-child {
    font-size: 15px;
    font-weight: 400;
    margin-top: 8px;
    opacity: 0.85;
}

.footer-location {
    font-size: 13px;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-location {
        text-align: right;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 24px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* ==================== */
/* FORM STYLES */
/* ==================== */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--error-red);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(61, 90, 69, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error-red);
}

.form-group .error-message {
    color: var(--error-red);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-group .error-message.show {
    display: block;
}

.form-group .helper-text {
    font-size: 12px;
    color: var(--text-medium);
    margin-top: 4px;
}

.form-row {
    display: grid;
    gap: 14px;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-submit {
    margin-top: 20px;
}

.form-submit .btn {
    width: 100%;
}

/* CTA After Offer */
.cta-after-offer {
    text-align: center;
    padding-top: 24px;
}

/* ==================== */
/* FORM SECTION */
/* ==================== */
.form-section {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

@media (min-width: 768px) {
    .form-section {
        padding: 100px 0;
    }
}

.form-section-container {
    max-width: 520px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.form-section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-tan));
}

@media (min-width: 768px) {
    .form-section-container {
        padding: 48px 40px;
    }
}

.form-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .form-section h2 {
        font-size: 32px;
    }
}

.form-section-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.form-micro {
    text-align: center;
    font-size: 13px;
    color: var(--text-medium);
    margin-top: 16px;
}
