/* ============================================
   LOOTHRU - AVALON PAGE STYLES (BEIGE)
   Luxurious Beige Solarpunk Design System
   ============================================ */

:root {
    /* Beige & Earth Tone Palette */
    --primary-green: #D4A574;
    --primary-green-dark: #B8935C;
    --primary-green-light: #E8D4B8;
    --accent-blue: #C87941;
    --accent-purple: #8B9E7D;
    --accent-gold: #D4A017;
    
    /* Neutrals with warm earthy tones */
    --cream: #FAF7F2;
    --warm-white: #FFF9F0;
    --warm-gray: #F5F0E8;
    --medium-gray: #9B8E7E;
    --dark-gray: #5C5246;
    --charcoal: #3D362F;
    --forest: #6B5D52;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #D4A574 0%, #B8935C 100%);
    --gradient-accent: linear-gradient(135deg, #E8D4B8 0%, #C87941 100%);
    --gradient-luxury: linear-gradient(135deg, #D4A574 0%, #8B9E7D 100%);
    --gradient-sunset: linear-gradient(135deg, #E8C9A0 0%, #C87941 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(184, 147, 92, 0.12);
    --shadow-md: 0 4px 12px rgba(184, 147, 92, 0.15);
    --shadow-lg: 0 10px 30px rgba(184, 147, 92, 0.18);
    --shadow-xl: 0 20px 50px rgba(184, 147, 92, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 251, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.logo-icon {
    height: 45px;
    width: auto;
    display: block;
    filter: brightness(1.4) saturate(70%) hue-rotate(190deg) contrast(1.1);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.hero-logo {
    height: 120px;
    width: auto;
    display: block;
    filter: brightness(2) contrast(1.2);
    margin: 0.25rem auto 0.5rem auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(1.2) saturate(120%) invert(75%) sepia(100%) saturate(1500%) hue-rotate(5deg);
    margin-top: 4px;
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.logo-image-right {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(1.3) saturate(80%) hue-rotate(180deg);
    margin-left: 1rem;
}

.logo-top-right {
    height: 50px;
    width: auto;
    position: absolute;
    right: 20px;
    top: 20px;
    filter: brightness(1.4) saturate(70%) hue-rotate(190deg) contrast(1.1);
    z-index: 1000;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.btn-text:hover {
    background: rgba(16, 185, 129, 0.1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: white;
    color: var(--primary-green);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary-green);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 3rem 0 8rem 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        var(--cream);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hero-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-logo {
    height: 3200px;
    width: auto;
    opacity: 0.09;
    filter: brightness(1.8) saturate(120%) hue-rotate(195deg) contrast(1.0) blur(0.5px);
    pointer-events: none;
    transform: translateY(0);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 100;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.hero-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-xl);
    overflow: visible;
    box-shadow: var(--shadow-xl);
    transform: translateY(-40px);
}

/* ============================================
   REVIEWS CAROUSEL
   ============================================ */

.reviews-section {
    padding: var(--spacing-lg) 0;
    background: white;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.mission-logo {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.what-are-we-overview {
    padding: 5rem var(--spacing-md);
    background: white;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.what-are-we-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.what-are-we-statement h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.accent-line {
    width: 60px;
    height: 2px;
    background: #D4A574;
    margin: 0 auto 2.5rem;
}

.what-are-we-statement p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.what-are-we-statement p:last-child {
    margin-bottom: 0;
}

.accent-divider {
    width: 40px;
    height: 1px;
    background: #D4A574;
    margin: 2rem auto;
    opacity: 0.5;
}

.highlight-text {
    font-size: 1.125rem;
    color: #8B6F47;
    font-weight: 500;
    line-height: 1.85;
}

.what-are-we-section {
    padding: var(--spacing-xl) 0 calc(var(--spacing-xl) * 1.5) 0;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(232, 212, 184, 0.5) 100%);
    position: relative;
}

.what-are-we-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.what-are-we-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.what-are-we-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-weight: 700;
}

.what-are-we-content p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

.dashboard-visual {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dashboard-visual svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.15));
    border-radius: 16px;
}

@media (max-width: 768px) {
    .dashboard-visual {
        padding: 0 1rem;
    }
    
    .what-are-we-content h2 {
        font-size: 1.75rem;
    }
}

.how-it-works {
    padding: var(--spacing-xl) 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.step-card {
    background: transparent;
    padding: 2rem 0;
    border-radius: 0;
    text-align: left;
    position: relative;
    box-shadow: none;
    transition: all 0.3s ease;
    border-left: 3px solid #D4A574;
    padding-left: 2rem;
}

.step-card:hover {
    transform: none;
    box-shadow: none;
    border-left-color: #B8935C;
}

.step-icon {
    display: none;
}

.step-number {
    position: static;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4A574;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.step-description {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.step-visual {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

/* ============================================
   MISSION SECTION
   ============================================ */

.mission-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-main {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.mission-main h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.mission-main p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.mission-closing {
    background: rgba(212, 165, 116, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.mission-closing p {
    font-size: 1.0625rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.mission-closing p:last-child {
    margin-bottom: 0;
}

.mission-closing strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: var(--spacing-lg) 0;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-counter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   FOR HOSTS SECTION
   ============================================ */

.for-hosts {
    padding: var(--spacing-xl) 0;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.benefits-list {
    margin: 2rem 0 3rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefits-list h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.benefits-list p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.image-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: var(--spacing-xl) 0;
    background: var(--warm-gray);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--spacing-lg) 0;
    background: transparent;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

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

.faq-item {
    background: white;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(2px);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.locations {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 158, 125, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.location-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    transition: all 0.35s ease;
}

.location-card[data-color="beige-1"]::before { background: linear-gradient(90deg, #E8D4B8, #D4A574); }
.location-card[data-color="beige-2"]::before { background: linear-gradient(90deg, #D4A574, #B8935C); }
.location-card[data-color="beige-3"]::before { background: linear-gradient(90deg, #C9A567, #C87941); }
.location-card[data-color="beige-4"]::before { background: linear-gradient(90deg, #B8935C, #8B7355); }
.location-card[data-color="beige-5"]::before { background: linear-gradient(90deg, #C87941, #A0563D); }
.location-card[data-color="beige-6"]::before { background: linear-gradient(90deg, #8B9E7D, #6B8E5F); }

.location-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(184, 147, 92, 0.25);
}

.location-card:hover::before {
    height: 12px;
}

.location-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.location-card:hover .location-emoji {
    animation: bounce 0.6s ease;
}

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

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--charcoal);
}

.location-card p {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.975rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

.locations-cta .btn-text {
    font-size: 1.1rem;
    color: var(--primary-green-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.locations-cta .btn-text:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-green-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(184, 147, 92, 0.1);
}

.pricing-card-featured {
    border-color: var(--primary-green);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.15);
}

.pricing-card-featured:hover {
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0.75rem 0;
    line-height: 1.2;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-description {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    min-height: 48px;
}

.pricing-features {
    text-align: left;
}

.pricing-features p {
    color: var(--dark-gray);
    font-size: 0.9375rem;
    line-height: 2;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-included {
    color: #10b981;
    font-size: 1.25rem;
    font-weight: bold;
}

.feature-not-included {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: bold;
    opacity: 0.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--warm-white);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 600px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    padding: 0.65rem 0.875rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal);
    background: white;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.08);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-body);
    min-height: 100px;
}

.form-group button {
    grid-column: 1 / -1;
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-accent);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--primary-green);
}

.cta-actions .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

/* ============================================
   CHECKBOX GROUP STYLING
   ============================================ */

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--warm-gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.checkbox-label:hover {
    background: var(--primary-green-light);
    transform: translateX(3px);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.checkbox-label input[type="checkbox"]:checked + * {
    font-weight: 600;
}

select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

input[type="file"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px dashed var(--primary-green-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: var(--primary-green);
    background: white;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.85rem;
    font-style: italic;
}

/* ============================================
   EMAIL SIGNUP SECTION
   ============================================ */

.signup-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--cream) 100%);
    position: relative;
}

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

.signup-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.signup-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.signup-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.signup-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary-green-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.signup-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.signup-btn {
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.signup-privacy {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--forest);
    color: white;
    padding: var(--spacing-lg) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green-light);
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--primary-green-light);
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.office-hours {
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.footer-phone {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
    color: var(--primary-green-light);
}

.footer-brand-section {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green-light) !important;
    margin: 0 !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid,
    .features-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content,
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-grid,
    .reviews-carousel,
    .stats-grid,
    .features-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .referral-form {
        flex-direction: column;
        align-items: center;
    }
    
    .referral-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Atom Animation */
@keyframes atomOrbit1 {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes atomOrbit2 {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(-360deg); }
}

@keyframes atomOrbit3 {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes atomPulse {
    0%, 100% { r: 6; opacity: 0.8; }
    50% { r: 8; opacity: 1; }
}

.atom-center {
    transform-origin: 500px 175px;
}

.atom-orbit1 {
    animation: atomOrbit1 4s linear infinite;
    transform-origin: 500px 175px;
}

.atom-orbit2 {
    animation: atomOrbit2 5s linear infinite;
    transform-origin: 500px 175px;
}

.atom-orbit3 {
    animation: atomOrbit3 6s linear infinite;
    transform-origin: 500px 175px;
}

.atom-electron {
    animation: atomPulse 2s ease-in-out infinite;
}