/* ===========================================
   CropSaga Landing Page - Regrow.ag Inspired Design
   100% Matching Style - Colors, Fonts, Layout
   =========================================== */

/* Google Fonts - GT Super Text alternative + Inter */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* ======== CROPSAGA BRAND COLORS ======== */
    
    /* Brand Primary Colors */
    --primary: #223103;
    --brand-green: #223103;
    --brand-green-accent: #436106;
    --brand-cream: #f0f0e0;
    --brand-cream-light: #dfdfbe;
    --brand-white: #ffffff;
    --brand-black: #010100;
    
    /* Background Greens - Using Brand Green */
    --bg-hero: #223103;
    --bg-hero-dark: #1a2502;
    --bg-deep: #151d01;
    
    /* Accent Colors - Using Brand Accent Green */
    --accent-lime: #436106;
    --accent-light-green: #5a7a0a;
    --accent-pale: #dfdfbe;
    --accent-pink: #E8B4C8;
    
    /* Button Colors - Using Brand Cream */
    --btn-cream: #f0f0e0;
    --btn-cream-hover: #ffffff;
    
    /* Text Colors */
    --text-cream: #f0f0e0;
    --text-cream-dim: rgba(240, 240, 224, 0.7);
    --text-cream-muted: rgba(240, 240, 224, 0.5);
    --text-dark: #223103;
    --text-body: #374151;
    --text-muted: #6B7280;
    
    /* Borders */
    --border-light: rgba(240, 240, 224, 0.12);
    --border-medium: rgba(240, 240, 224, 0.2);
    --border-cream: rgba(240, 240, 224, 0.08);
    --border-gray: #E5E7EB;
    
    /* Shadows */
    --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);
    
    /* Legacy Compatibility - Updated to Brand */
    --white: #ffffff;
    --off-white: #f0f0e0;
    --cream: #f0f0e0;
    --dark-green: #223103;
    --forest-green: #223103;
    --medium-green: #2a3d04;
    --accent-green: #436106;
    --light-green: #5a7a0a;
    --pale-green: #dfdfbe;
    --accent: #436106;
    --glass-bg: rgba(34, 49, 3, 0.65);
    --glass-bg-light: rgba(240, 240, 224, 0.06);
    --text-on-dark: #f0f0e0;
    --text-dim: rgba(240, 240, 224, 0.7);
    
    /* Regrow Style Compatibility */
    --regrow-cream: #f0f0e0;
    --regrow-dark-green: #223103;
    --regrow-forest: #223103;
    --regrow-deep-green: #1a2502;
    --regrow-olive: #2a3d04;
}

/* ===========================================
   PARTICLE CANVAS - Background Effect
   =========================================== */

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #223103;
}

/* Grain overlay - HIDDEN (grain effect only on hero section now) */
.bg-noise {
    display: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-hero);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Vignette disabled on body - moved to hero section only */

/* Body grain disabled - grain effect only on hero section */

/* Typography - GT Super Text Style (Playfair Display) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ===========================================
   NAVBAR - Regrow.ag Style
   =========================================== */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 64px;
    background: transparent;
    backdrop-filter: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.3s ease,
                backdrop-filter 0.3s ease;
    transform: translateY(0);
}

/* Hidden state - slides up out of view */
.landing-nav.nav-hidden {
    transform: translateY(-100%);
}

/* Visible state with background (when scrolled and shown) */
.landing-nav.nav-visible {
    background: rgba(34, 49, 3, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(240, 240, 224, 0.1);
}

/* Legacy scrolled class - keep for compatibility but same as nav-visible */
.landing-nav.scrolled {
    background: rgba(34, 49, 3, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(240, 240, 224, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    height: 140px;
    width: auto;
    filter: brightness(1.05);
    transition: height 0.3s ease;
}

/* Logo size stays constant - no reduction on scroll */

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--text-cream);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    background: var(--glass-bg-light);
}

.nav-link i {
    font-size: 12px;
    opacity: 0.7;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 220px;
    background: rgba(34, 49, 3, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--cream) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:visited {
    color: var(--cream) !important;
}

.dropdown-item:hover {
    background: rgba(67, 97, 6, 0.15);
    color: var(--accent-lime) !important;
}

.dropdown-item i {
    font-size: 14px;
    width: 20px;
    text-align: center;
    color: var(--accent-lime);
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Request Demo Button - Regrow Style */
.nav-cta-btn {
    padding: 12px 24px;
    background: var(--btn-cream);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

/* Demo Button - CTA Style */
.demo-btn {
    padding: 10px 20px;
    background: var(--btn-cream);
    color: var(--cropsaga-dark-green);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-btn:hover {
    background: var(--cropsaga-light-cream);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Login Button */
.login-btn {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-cream-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    border-color: var(--border-medium);
    color: var(--text-cream);
    background: var(--glass-bg-light);
}

.login-btn i {
    font-size: 14px;
}

/* Legacy admin-btn (for backwards compatibility) */
.admin-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-cream-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    border-color: var(--border-medium);
    color: var(--text-cream);
    background: var(--glass-bg-light);
}

.admin-btn i {
    font-size: 16px;
}

/* ===========================================
   HERO SECTION - Regrow.ag Carousel Style
   =========================================== */

/* Main hero for home.html */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    z-index: 5;
    background: transparent;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    color: var(--text-cream);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-cream-dim);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-media {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-image {
    max-width: 320px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.mini-widgets {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.mw-card {
    background: rgba(34, 49, 3, 0.7);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px 24px;
}

.mw-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-cream-dim);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mw-card svg {
    display: block;
}

/* Hero buttons */
.btn.primary {
    background: var(--btn-cream);
    color: var(--text-dark);
    border: none;
}

.btn.primary:hover {
    background: var(--btn-cream-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn.secondary {
    background: transparent;
    color: var(--text-cream);
    border: 1px solid var(--border-medium);
}

.btn.secondary:hover {
    background: var(--glass-bg-light);
    border-color: var(--text-cream);
}

.btn.ghost {
    background: transparent;
    color: var(--text-cream);
    border: none;
}

.btn.ghost:hover {
    background: var(--glass-bg-light);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: transparent;
    overflow: hidden;
    /* Vignette effect using box-shadow - dark corners */
    box-shadow: 
        inset 0 0 150px 50px rgba(0, 0, 0, 0.4),
        inset 0 -100px 150px -50px rgba(0, 0, 0, 0.3),
        inset 0 100px 150px -50px rgba(0, 0, 0, 0.25);
}

/* Film grain effect ONLY for hero section - Regrow style (subtle fine grain) */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    /* Fine grain layer - subtle like Regrow */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='filmNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23filmNoise)'/%3E%3C/svg%3E");
    opacity: 0.12;
    mix-blend-mode: soft-light;
}

/* Second grain layer for hero - very subtle overlay */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='filmNoise2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23filmNoise2)'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
}

/* Hero Carousel Container */
.hero-carousel {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Carousel Slides */
.carousel-slides {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.carousel-slide-inner {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 140px 64px 100px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

/* Slide Text Content - Regrow.ag Style (larger titles) */
.slide-content {
    z-index: 2;
    position: relative;
}

.slide-content h1 {
    font-size: clamp(42px, 5.5vw, 72px);
    color: var(--text-cream);
    margin-bottom: 28px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.slide-content p {
    font-size: 19px;
    color: var(--text-cream-dim);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

/* Slide CTA Button - Regrow Style (larger) */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 36px;
    background: var(--btn-cream);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.slide-cta:hover {
    background: var(--btn-cream-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.slide-cta .arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.slide-cta .arrow svg {
    width: 28px;
    height: 28px;
}

.slide-cta:hover .arrow {
    transform: translateX(6px);
}

/* Slide Visual/Image - Larger like Regrow.ag */
.slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    width: 100%;
    max-width: 720px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* ===========================================
   REGROW-STYLE DASHBOARD - Exact Match
   =========================================== */

.slide-visual-dashboard {
    width: 100%;
    max-width: 820px;
}

.regrow-dashboard {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Global Connectors Layer */
.rg-connectors-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Chart Card */
.rg-chart-card {
    grid-column: 1;
    grid-row: 1;
    background: rgba(90, 110, 80, 0.4);
    border: 1px solid rgba(240, 240, 224, 0.12);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.rg-chart-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-cream);
    margin-bottom: 20px;
}

.rg-chart-container {
    display: flex;
    gap: 12px;
}

.rg-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-cream-muted);
    padding: 4px 0;
}

.rg-chart-svg {
    flex: 1;
    height: 120px;
    background: rgba(67, 97, 6, 0.08);
    border-radius: 8px;
}

.rg-legend {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    justify-content: center;
}

.rg-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-cream-dim);
}

.rg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.rg-dot-gray { background: #888; }
.rg-dot-orange { background: #d4a574; }
.rg-dot-green { background: #436106; }


/* Stats Panel */
.rg-stats-panel {
    grid-column: 2;
    grid-row: 1;
    padding: 8px 0 0 20px;
}

.rg-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rg-badge-pink {
    background: rgba(232, 180, 200, 0.25);
    color: #E8B4C8;
    border: 1px solid rgba(232, 180, 200, 0.3);
}

.rg-stat-block {
    margin-bottom: 24px;
}

.rg-stat-label {
    display: block;
    font-size: 13px;
    color: var(--accent-lime);
    font-weight: 500;
    margin-bottom: 6px;
}

.rg-stat-value-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.rg-stat-big {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--text-cream);
    line-height: 1;
}

.rg-stat-green {
    color: var(--accent-lime);
}

.rg-stat-unit {
    font-size: 18px;
    color: var(--text-cream);
}

.rg-stat-sub {
    font-size: 12px;
    color: var(--text-cream-muted);
    margin-top: 4px;
}

.rg-arrow-up {
    color: var(--accent-lime);
}

/* Map Container */
.rg-map-container {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    padding: 16px;
}

.rg-map-label {
    position: absolute;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-cream-muted);
}

.rg-map-label-top {
    top: 0;
    left: 16px;
}

.rg-map-svg {
    width: 100%;
    height: auto;
    max-height: 200px;
}

.rg-map-badge {
    position: absolute;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 6px;
}

.rg-badge-baseline {
    top: 85px;
    left: 25px;
    background: rgba(67, 97, 6, 0.3);
    color: var(--accent-lime);
    border: 1px solid rgba(67, 97, 6, 0.4);
}


/* Detail Card */
.rg-detail-card {
    grid-column: 2;
    grid-row: 2;
    background: rgba(240, 240, 224, 0.06);
    border: 1px solid rgba(240, 240, 224, 0.15);
    border-radius: 16px;
    padding: 20px;
}

.rg-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(240, 240, 224, 0.1);
}

.rg-detail-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--text-cream);
}

.rg-detail-date {
    font-size: 11px;
    color: var(--text-cream-muted);
}

.rg-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.rg-detail-label {
    font-size: 12px;
    color: var(--text-cream-dim);
    min-width: 60px;
}

.rg-practice-tag {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(90, 110, 80, 0.5);
    color: var(--text-cream);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rg-practice-tag i {
    font-size: 10px;
    opacity: 0.7;
}

.rg-crops-timeline {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.rg-crop-tag {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 6px;
    color: #1a3d1a;
    font-weight: 500;
}

.rg-crop-green {
    background: #dfdfbe;
}

.rg-crop-yellow {
    background: #e8d174;
}

/* Bars Section */
.rg-bars-section {
    margin-top: 16px;
}

.rg-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.rg-bar-label {
    font-size: 11px;
    color: var(--text-cream-muted);
    min-width: 65px;
}

.rg-bar-track {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 30px;
}

.rg-bar {
    width: 4px;
    background: #8a4a8a;
    border-radius: 2px;
}

.rg-bar-1 { height: 20px; }
.rg-bar-2 { height: 28px; }
.rg-bar-3 { height: 18px; }
.rg-bar-4 { height: 24px; }
.rg-bar-5 { height: 16px; }
.rg-bar-6 { height: 22px; }

.rg-bar-double {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rg-bar-double::before,
.rg-bar-double::after {
    content: '';
    width: 4px;
    background: #5a7acc;
    border-radius: 2px;
}

.rg-bar-d1::before { height: 12px; }
.rg-bar-d1::after { height: 8px; }
.rg-bar-d2::before { height: 16px; }
.rg-bar-d2::after { height: 10px; }
.rg-bar-d3::before { height: 10px; }
.rg-bar-d3::after { height: 14px; }
.rg-bar-d4::before { height: 18px; }
.rg-bar-d4::after { height: 6px; }

/* Responsive */
@media (max-width: 900px) {
    .regrow-dashboard {
        grid-template-columns: 1fr;
    }
    
    .rg-chart-card, .rg-stats-panel, .rg-map-container, .rg-detail-card {
        grid-column: 1;
    }
    
    .rg-chart-card { grid-row: 1; }
    .rg-stats-panel { grid-row: 2; padding-left: 0; }
    .rg-map-container { grid-row: 3; }
    .rg-detail-card { grid-row: 4; }
    
    .rg-connectors-layer {
        display: none;
    }
    
    .rg-stat-big {
        font-size: 32px;
    }
}

/* Carousel Navigation - Regrow.ag Style (bottom right arrows) */
.carousel-nav {
    position: absolute;
    bottom: 80px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 10;
}

.carousel-arrows {
    display: flex;
    gap: 40px;
}

.carousel-arrow {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #9AB973;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.carousel-arrow svg {
    width: 72px;
    height: 72px;
    stroke-width: 1.5;
}

.carousel-arrow:hover {
    opacity: 1;
    color: #b5d48f;
}

.carousel-arrow:hover svg {
    transform: scale(1.05);
}

.carousel-prev:hover svg {
    transform: scale(1.05);
}

/* Carousel Progress Bar - Regrow.ag Style (full width bottom) */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(154, 185, 115, 0.2);
    z-index: 10;
}

.carousel-progress-bar {
    height: 100%;
    background: #9AB973;
    width: 0%;
    transition: width 0.05s linear;
}

/* Carousel Dots - Hidden by default, Regrow style */
.carousel-dots {
    display: none;
}

/* ===========================================
   BUTTONS - Regrow.ag Style
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--btn-cream);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--btn-cream-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-cream);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--glass-bg-light);
    border-color: var(--text-cream);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--regrow-cream);
}

.btn-accent {
    background: var(--accent-lime);
    color: var(--text-dark);
}

.btn-accent:hover {
    background: var(--accent-light-green);
    transform: translateY(-2px);
}

/* ===========================================
   SECTIONS COMMON
   =========================================== */

.section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.section-dark {
    background: rgba(34, 49, 3, 0.85);
    backdrop-filter: blur(8px);
    color: var(--text-cream);
}

.section-light {
    background: rgba(240, 240, 224, 0.95);
    color: var(--text-dark);
}

.section-alternate {
    background: rgba(240, 240, 235, 0.95);
    color: var(--text-dark);
}

/* Sections with particle effect visible */
.section.features,
.section.stats,
.section.usecases,
.section.gallery,
.section.testimonials,
.section.cta,
.section.partners,
.section.contact {
    background: rgba(34, 49, 3, 0.75);
    backdrop-filter: blur(6px);
    color: var(--text-cream);
}

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

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-lime);
    margin-bottom: 16px;
}

.section-eyebrow i {
    font-size: 14px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-dark .section-title {
    color: var(--text-cream);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: var(--text-cream-dim);
}

/* ===========================================
   PARTNERS MARQUEE SECTION - Regrow.ag Style
   =========================================== */

.partners-marquee-section {
    position: relative;
    z-index: 5;
    background: var(--bg-hero-dark);
    padding: 48px 0 0;
    overflow: hidden;
}

/* Grain texture for partners section */
.partners-marquee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    mix-blend-mode: soft-light;
}

.partners-marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 32px 0;
    width: 100%;
}

.marquee-track-partners {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    animation: marqueePartners 25s linear infinite;
    width: max-content;
    white-space: nowrap;
}

@keyframes marqueePartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: 160px;
    opacity: 0.75;
    transition: all 0.3s ease;
}

.partner-logo-item:hover {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(240, 240, 224, 0.4));
}

.partner-logo-item img {
    height: 36px;
    width: auto;
    max-width: 160px;
    max-height: 36px;
    object-fit: contain;
}

/* Progress line at bottom like Regrow.ag */
.partners-progress-line {
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(240, 240, 224, 0.3) 20%, 
        rgba(240, 240, 224, 0.5) 50%, 
        rgba(240, 240, 224, 0.3) 80%, 
        transparent 100%
    );
    position: relative;
    z-index: 2;
}

/* Pause animation on hover */
.partners-marquee:hover .marquee-track-partners {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-marquee-section {
        padding: 32px 0 0;
    }
    
    .partners-marquee {
        padding: 24px 0;
    }
    
    .marquee-track-partners {
        gap: 48px;
    }
    
    .partner-logo-item {
        height: 36px;
    }
    
    .partner-logo-item img {
        max-width: 140px;
    }
}

/* ===========================================
   SOLUTIONS TABS SECTION
   =========================================== */

/* Solutions Tabs Navigation */
.solutions-tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-lime) transparent;
}

.solutions-tabs-nav::-webkit-scrollbar {
    height: 4px;
}

.solutions-tabs-nav::-webkit-scrollbar-track {
    background: transparent;
}

.solutions-tabs-nav::-webkit-scrollbar-thumb {
    background: var(--accent-lime);
    border-radius: 2px;
}

.solutions-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.solutions-tab-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.solutions-tab-btn:hover {
    border-color: var(--accent-lime);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.solutions-tab-btn:hover i {
    transform: scale(1.1);
}

.solutions-tab-btn.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--regrow-cream);
}

.solutions-tab-btn.active i {
    color: var(--accent-lime);
}

/* Featured tab (Regenerativa) */
.solutions-tab-btn.featured {
    background: linear-gradient(135deg, rgba(67, 97, 6, 0.1), rgba(67, 97, 6, 0.2));
    border-color: var(--accent-lime);
    position: relative;
}

/* Badge NOU removed */
    letter-spacing: 0.05em;
}

.solutions-tab-btn.featured.active {
    background: var(--accent-lime);
    color: var(--text-dark);
}

.solutions-tab-btn.featured.active i {
    color: var(--text-dark);
}

/* Tab Panels */
.solutions-tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Standard Tab Panel Grid */
.tab-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.tab-panel-content {
    padding: 20px 0;
}

.tab-panel-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3vw, 36px);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.tab-panel-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Tab Features List */
.tab-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.tab-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.tab-feature-item i {
    color: var(--accent-lime);
    font-size: 16px;
    flex-shrink: 0;
}

/* Tab CTA Button */
.tab-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tab-cta i {
    transition: transform 0.2s ease;
}

.tab-cta:hover i {
    transform: translateX(4px);
}

/* Tab Visual */
.tab-panel-visual {
    position: relative;
}

.tab-visual-placeholder {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(34, 49, 3, 0.08), rgba(67, 97, 6, 0.15));
    border: 2px solid rgba(34, 49, 3, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(34, 49, 3, 0.1);
}

.tab-visual-placeholder:hover {
    border-color: var(--accent-lime);
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(34, 49, 3, 0.15);
}

.tab-visual-placeholder i {
    font-size: 64px;
    opacity: 0.4;
    color: var(--accent-lime);
}

.tab-visual-placeholder span {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.6;
}

.tab-visual-image {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(34, 49, 3, 0.15);
    border: 2px solid rgba(34, 49, 3, 0.1);
    transition: all 0.3s ease;
}

.tab-visual-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(34, 49, 3, 0.2);
}

/* ===========================================
   TAB 4 EXTENDED - AGRICULTURA REGENERATIVA
   =========================================== */

.tab-panel--extended {
    padding: 20px 0;
}

.tab-panel-header-extended {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-gray);
}

.tab-panel-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-lime), #5a7a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(67, 97, 6, 0.3);
}

.tab-panel-header-extended .tab-panel-title {
    margin-bottom: 12px;
}

.tab-panel-header-extended .tab-panel-desc {
    margin-bottom: 0;
    max-width: 700px;
}

/* Regen Sub-Cards Grid (2x2) */
.regen-sub-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.regen-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.regen-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-lime), #5a7a0a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.regen-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.regen-card:hover::before {
    opacity: 1;
}

.regen-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(67, 97, 6, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    font-size: 24px;
    margin-bottom: 20px;
}

.regen-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.regen-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.regen-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.regen-card-features li i {
    color: var(--accent-lime);
    font-size: 12px;
}

/* Tab Panel CTA Center */
.tab-panel-cta-center {
    text-align: center;
    padding-top: 20px;
}

/* ===========================================
   COMPACT FEATURES ACCORDION
   =========================================== */

.compact-features-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-gray);
}

.compact-features-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.compact-features-toggle:hover {
    border-color: var(--accent-lime);
    background: rgba(67, 97, 6, 0.05);
}

.compact-features-toggle i {
    transition: transform 0.3s ease;
}

.compact-features-toggle.expanded i {
    transform: rotate(180deg);
}

.compact-features-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
    animation: gridSlideDown 0.4s ease;
}

.compact-features-grid.visible {
    display: grid;
}

@keyframes gridSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compact-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.compact-feature-item:hover {
    border-color: var(--accent-lime);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.compact-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(67, 97, 6, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    font-size: 18px;
    flex-shrink: 0;
}

.compact-feature-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.compact-feature-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===========================================
   LEGACY FEATURES (for backwards compatibility)
   =========================================== */

.features-category {
    margin-bottom: 80px;
}

.features-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--regrow-cream);
    font-size: 22px;
}

.section-dark .category-icon {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
}

.category-title {
    font-size: 28px;
    color: var(--text-dark);
}

.section-dark .category-title {
    color: var(--text-cream);
}

.category-desc {
    color: var(--text-muted);
    font-size: 15px;
}

.section-dark .category-desc {
    color: var(--text-cream-dim);
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.section-dark .feature-card {
    background: rgba(34, 49, 3, 0.5);
    border: 1px solid var(--border-light);
}

.section-dark .feature-card:hover {
    border-color: var(--border-medium);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--pale-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 20px;
}

.section-dark .feature-icon {
    background: rgba(67, 97, 6, 0.15);
    color: var(--accent-lime);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-dark .feature-title {
    color: var(--text-cream);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-dark .feature-desc {
    color: var(--text-cream-dim);
}

/* Screenshot Placeholder */
.screenshot-placeholder {
    margin-top: 40px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 49, 3, 0.1), rgba(34, 49, 3, 0.15));
    border: 2px dashed rgba(34, 49, 3, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--forest-green);
    transition: all 0.3s ease;
}

.screenshot-placeholder:hover {
    border-color: var(--forest-green);
    background: linear-gradient(135deg, rgba(34, 49, 3, 0.15), rgba(34, 49, 3, 0.2));
}

.section-dark .screenshot-placeholder {
    background: rgba(34, 49, 3, 0.5);
    border-color: var(--border-medium);
    color: var(--text-cream-dim);
}

.screenshot-placeholder i {
    font-size: 40px;
    opacity: 0.6;
}

.screenshot-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* ===========================================
   MISSION & VISION SECTION
   =========================================== */

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.mission-card {
    background: rgba(34, 49, 3, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.mission-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(67, 97, 6, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    font-size: 26px;
    margin-bottom: 24px;
}

.mission-card-title {
    font-size: 24px;
    color: var(--text-cream);
    margin-bottom: 16px;
}

.mission-card-text {
    font-size: 16px;
    color: var(--text-cream-dim);
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    background: rgba(240, 240, 224, 0.05);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    background: rgba(240, 240, 224, 0.08);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(67, 97, 6, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    font-size: 22px;
    margin: 0 auto 16px;
}

.value-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-cream);
}

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

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Main Pricing Card */
.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.pricing-card-main {
    position: relative;
    border: 2px solid var(--primary);
    box-shadow: 0 12px 40px rgba(34, 49, 3, 0.12);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(34, 49, 3, 0.16);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pricing-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    padding: 28px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 28px;
}

.price-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.price-currency {
    font-size: 20px;
    color: var(--text-dark);
    vertical-align: super;
    margin-left: 4px;
}

.price-period {
    display: block;
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-feature-list li:last-child {
    border-bottom: none;
}

.pricing-feature-list li i {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
}

/* Add-ons Section */
.pricing-addons {
    background: rgba(34, 49, 3, 0.08);
    border: 1px solid var(--border-gray);
    border-radius: 24px;
    padding: 40px;
}

.addons-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    color: #223103;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.addons-title i {
    color: #436106;
}

.addons-subtitle {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 28px;
}

.addon-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.addon-card {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 16px;
    align-items: center;
    background: rgba(34, 49, 3, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.addon-card:hover {
    background: rgba(34, 49, 3, 0.1);
    border-color: var(--accent);
    transform: translateX(4px);
}

.addon-icon {
    width: 50px;
    height: 50px;
    background: rgba(67, 97, 6, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #436106;
    font-size: 20px;
}

.addon-content {
    flex: 1;
}

.addon-title {
    font-size: 16px;
    font-weight: 600;
    color: #223103;
    margin-bottom: 4px;
}

.addon-desc {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}

.addon-price {
    text-align: right;
    flex-shrink: 0;
}

.addon-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: #223103;
    display: block;
    line-height: 1;
}

.addon-period {
    font-size: 11px;
    color: #4a5568;
    display: block;
    margin-top: 4px;
}

/* Pricing Calculator */
.pricing-calculator {
    background: linear-gradient(135deg, rgba(67, 97, 6, 0.08) 0%, rgba(34, 49, 3, 0.12) 100%);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-gray);
}

.calculator-header i {
    color: var(--accent);
    font-size: 24px;
}

.calculator-header h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.calculator-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calculator-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.input-with-unit {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.input-with-unit:focus-within {
    border-color: var(--accent);
}

.input-with-unit input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    outline: none;
    min-width: 0;
}

.input-with-unit input::-webkit-outer-spin-button,
.input-with-unit input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-unit {
    padding: 14px 16px;
    background: rgba(67, 97, 6, 0.08);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.calculator-addons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.calculator-addon-item {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.2s ease;
}

.calculator-addon-item:has(input:checked) {
    border-color: var(--accent);
    background: rgba(67, 97, 6, 0.04);
}

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.addon-checkbox input {
    display: none;
}

.addon-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.addon-checkbox input:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.addon-checkbox input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.addon-name {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.addon-name i {
    color: var(--accent);
    font-size: 16px;
}

.addon-price {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.addon-quantity {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-quantity label {
    font-size: 13px;
    color: var(--text-muted);
}

.addon-quantity input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

.addon-quantity input:focus {
    outline: none;
    border-color: var(--accent);
}

.calculator-result {
    background: var(--primary);
    border-radius: 16px;
    padding: 24px;
    color: white;
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.breakdown-item span:first-child {
    color: rgba(255,255,255,0.8);
}

.breakdown-item span:last-child {
    font-weight: 600;
    color: white;
}

.breakdown-addon {
    padding-left: 12px;
    font-size: 14px;
}

.breakdown-addon span:first-child {
    color: rgba(255,255,255,0.6);
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-total span:first-child {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.result-total span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-lime);
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .pricing-calculator {
        padding: 24px 20px;
        margin-top: 32px;
    }
    
    .calculator-header h4 {
        font-size: 18px;
    }
    
    .calculator-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .calculator-result {
        order: -1;
    }
    
    .result-total span:last-child {
        font-size: 26px;
    }
    
    .addon-checkbox {
        flex-wrap: wrap;
    }
    
    .addon-price {
        width: 100%;
        margin-left: 34px;
        margin-top: 4px;
    }
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-card-main {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 28px;
    }
    
    .pricing-addons {
        padding: 28px;
    }
    
    .addon-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .addon-icon {
        margin: 0 auto;
    }
    
    .addon-price {
        text-align: center;
        margin-top: 8px;
    }
    
    .price-amount {
        font-size: 44px;
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================================
   RESOURCES SECTION - Regrow.ag Style
   =========================================== */

.resources-section {
    padding: 100px 0;
    background: var(--regrow-cream);
}

.resources-header {
    margin-bottom: 48px;
}

.resources-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.resources-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
}

/* Featured Resource */
.resources-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.featured-resource-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    background: #f0f0e0;
    border-radius: 20px;
    padding: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.featured-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-gray);
}

.featured-resource-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resource-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    background: var(--accent-pale);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    width: fit-content;
}

.resource-badge-blue {
    color: #1D4ED8;
    background: #DBEAFE;
}

.resource-badge-amber {
    color: #B45309;
    background: #FEF3C7;
}

.resource-badge-green {
    color: var(--text-dark);
    background: var(--accent-pale);
}

.resource-badge-purple {
    color: #7C3AED;
    background: #EDE9FE;
}

.resource-badge-cyan {
    color: #0891B2;
    background: #CFFAFE;
}

.featured-resource-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.featured-resource-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: gap 0.2s ease;
}

.resource-link:hover {
    gap: 12px;
}

.resource-link i {
    font-size: 12px;
}

.featured-resource-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--accent-pale) 0%, rgba(67, 97, 6, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 48px;
}

/* Featured Sidebar */
.featured-sidebar {
    background: var(--bg-hero);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.featured-sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.sidebar-item {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-item:hover {
    padding-left: 8px;
}

.sidebar-item-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-cream);
    margin-bottom: 8px;
    line-height: 1.4;
}

.sidebar-item .resource-link {
    color: var(--accent-lime);
    font-size: 13px;
}

.sidebar-newsletter {
    margin-top: auto;
    padding-top: 24px;
}

.sidebar-newsletter-text {
    display: block;
    font-size: 14px;
    color: var(--text-cream-dim);
    margin-bottom: 16px;
    line-height: 1.5;
}

.sidebar-newsletter-form {
    display: flex;
    gap: 8px;
}

.sidebar-newsletter-input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(240, 240, 224, 0.08);
    color: var(--text-cream);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.sidebar-newsletter-input:focus {
    border-color: var(--border-medium);
    background: rgba(240, 240, 224, 0.12);
}

.sidebar-newsletter-input::placeholder {
    color: var(--text-cream-muted);
}

.sidebar-newsletter-btn {
    padding: 12px 18px;
    background: var(--btn-cream);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sidebar-newsletter-btn:hover {
    background: var(--btn-cream-hover);
    transform: translateY(-2px);
}

/* Resource Filters */
.resources-filters {
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-gray);
}

.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.filter-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-tab:hover {
    color: var(--text-dark);
    background: #f0f0e0;
}

.filter-tab.active {
    color: var(--text-dark);
    background: var(--accent-pale);
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.resource-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.resource-card-inner {
    padding: 28px;
}

.resource-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.resource-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Load More */
.resources-load-more {
    text-align: center;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-load-more:hover {
    background: #f0f0e0;
    border-color: var(--text-dark);
}

.btn-load-more i {
    font-size: 12px;
}

/* ===========================================
   COMING SOON / AFLA MAI MULTE SECTION
   =========================================== */

.coming-soon-section {
    position: relative;
    padding: 120px 0;
    background: var(--bg-hero);
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-logo {
    max-width: 180px;
    margin-bottom: 32px;
    filter: brightness(0.95);
}

.coming-soon-date {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(56px, 12vw, 120px);
    font-weight: 400;
    color: var(--text-cream);
    letter-spacing: 0.02em;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 24px;
    line-height: 1;
}

.coming-soon-text {
    font-size: 18px;
    color: var(--text-cream-dim);
    margin-bottom: 48px;
}

/* Newsletter Box */
.newsletter-box {
    background: rgba(34, 49, 3, 0.5);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(16px);
}

.newsletter-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(67, 97, 6, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-lime);
    font-size: 22px;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-cream);
    margin-bottom: 12px;
}

.newsletter-desc {
    font-size: 15px;
    color: var(--text-cream-dim);
    line-height: 1.7;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(240, 240, 224, 0.08);
    color: var(--text-cream);
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--border-medium);
    background: rgba(240, 240, 224, 0.12);
}

.newsletter-input::placeholder {
    color: var(--text-cream-muted);
}

.newsletter-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    background: var(--btn-cream);
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--btn-cream-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.newsletter-status {
    margin-top: 14px;
    font-size: 13px;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-status.visible {
    opacity: 1;
}

.newsletter-status.success {
    color: var(--accent-lime);
}

.newsletter-status.error {
    color: #E8B4C8;
}

.newsletter-privacy {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-cream-muted);
}

.newsletter-privacy i {
    margin-right: 6px;
}

/* ===========================================
   FOOTER - Regrow.ag Style
   =========================================== */

.landing-footer {
    background: var(--regrow-cream);
    color: var(--text-dark);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-gray);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-lime);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
    background: #f0f0e0;
}

.footer-social-instagram {
    width: 56px;
    height: 56px;
    font-size: 24px;
    position: relative;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    color: white;
}

.footer-social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #1DA1F2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===========================================
   MODALS
   =========================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal-panel {
    background: rgba(34, 49, 3, 0.98);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px;
    max-width: 420px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.visible .modal-panel {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.modal-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-lime);
    margin-bottom: 8px;
}

.modal-title {
    font-size: 26px;
    color: var(--text-cream);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-cream-dim);
    line-height: 1.5;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-cream-dim);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-cream);
}

/* Form Styles */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13px;
    color: var(--text-cream-dim);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(30, 42, 30, 0.6);
    color: var(--text-cream);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: var(--border-medium);
}

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

.form-input.error {
    border-color: #E8B4C8;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-status {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-cream-dim);
    min-height: 20px;
}

.form-status.error {
    color: #E8B4C8;
}

.form-status.success {
    color: var(--accent-lime);
}

/* ===========================================
   DEMO MODAL STYLES
   =========================================== */

.demo-modal-panel {
    max-width: 480px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
    font-family: inherit;
    line-height: 1.5;
}

.btn-demo-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 16px;
}

.btn-demo-submit i {
    font-size: 14px;
}

.btn-demo-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.demo-privacy-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-cream-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-privacy-note i {
    color: var(--accent-lime);
}

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

@media (max-width: 1024px) {
    .carousel-slide-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }
    
    .slide-content p {
        margin: 0 auto 32px;
    }
    
    .slide-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-featured {
        grid-template-columns: 1fr;
    }
    
    .featured-resource-card {
        grid-template-columns: 1fr;
    }
    
    .featured-resource-image {
        order: -1;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Solutions Tabs Responsive - Tablet */
    .solutions-tabs-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .tab-panel-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .regen-sub-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compact-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 10px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .brand-logo {
        height: 80px;
    }
    
    /* Nav buttons on mobile */
    .demo-btn span {
        display: none;
    }
    
    .demo-btn {
        padding: 10px 14px;
    }
    
    .demo-btn::before {
        content: "Demo";
        font-size: 12px;
    }
    
    .login-btn span {
        display: none;
    }
    
    .login-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .carousel-slide-inner {
        padding: 100px 20px 30px !important;
    }
    
    .slide-content h1 {
        margin-top: 60px !important;
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    /* Show images on mobile but in a clean layout */
    .slide-visual {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto 24px !important;
        order: -1 !important;
    }
    
    .slide-visual img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        max-height: 200px !important;
        object-fit: cover !important;
    }
    
    /* Show dashboard on mobile - compact version */
    .slide-visual-dashboard {
        display: block !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto 20px !important;
        padding-top: 0 !important;
        transform: scale(0.65) !important;
        transform-origin: center top !important;
    }
    
    .slide-visual-dashboard .regrow-dashboard {
        display: block !important;
    }
    
    .slide-visual-dashboard .rg-connectors-layer {
        display: none !important;
    }
    
    /* Show only chart card and map on mobile */
    .slide-visual-dashboard .rg-chart-card {
        display: block !important;
        margin-bottom: 12px !important;
        padding: 12px !important;
    }
    
    .slide-visual-dashboard .rg-map-container {
        display: block !important;
        max-height: 150px !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }
    
    .slide-visual-dashboard .rg-stats-panel,
    .slide-visual-dashboard .rg-detail-card {
        display: none !important;
    }
    
    /* Ensure slide content takes full width */
    .carousel-slide-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .slide-content {
        max-width: 100%;
        text-align: center;
        order: 0 !important;
    }
    
    .slide-visual {
        order: 1 !important;
    }
    
    .slide-visual-dashboard {
        order: 1 !important;
    }
    
    .carousel-nav {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
        padding-bottom: 20px;
    }
    
    .carousel-arrows {
        gap: 32px;
    }
    
    .carousel-arrow svg {
        width: 40px;
        height: 40px;
    }
    
    .slide-image {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        gap: 4px;
    }
    
    .filter-tab {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .featured-resource-card {
        padding: 24px;
    }
    
    .featured-sidebar {
        padding: 24px;
    }
    
    .sidebar-newsletter-form {
        flex-direction: column;
    }
    
    /* Solutions Tabs Responsive */
    .solutions-tabs-nav {
        gap: 6px;
        padding-bottom: 12px;
    }
    
    .solutions-tab-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .solutions-tab-btn span {
        display: none !important;
    }
    
    .solutions-tab-btn i {
        font-size: 20px;
    }
    
    .solutions-tab-btn {
        padding: 12px 14px !important;
        min-width: auto !important;
    }
    
    .tab-panel-grid,
    .tab-panel-grid[style] {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
    
    .tab-panel-visual {
        order: -1 !important;
        width: 100% !important;
    }
    
    .tab-visual-image {
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 16px;
    }
    
    .tab-panel-content {
        width: 100% !important;
    }
    
    .tab-panel-header-extended {
        flex-direction: column;
        text-align: center;
    }
    
    .tab-panel-icon-large {
        margin: 0 auto;
    }
    
    .regen-sub-cards {
        grid-template-columns: 1fr;
    }
    
    .compact-features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tab Panel Content Mobile */
    .tab-panel {
        padding: 24px !important;
        border-radius: 16px;
    }
    
    .tab-panel-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .tab-panel-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .tab-panel-features {
        margin-bottom: 24px;
    }
    
    .tab-panel-features li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-date {
        font-size: 48px;
    }
    
    .carousel-nav {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }
    
    .carousel-arrow svg {
        width: 36px;
        height: 36px;
    }
    
    .carousel-arrows {
        gap: 20px;
    }
    
    /* Solutions Tabs - Extra Small */
    .solutions-section {
        padding: 40px 0;
    }
    
    .solutions-section .container {
        padding: 0 16px;
    }
    
    .solutions-header {
        margin-bottom: 24px;
    }
    
    .solutions-tabs-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
        margin-bottom: 24px;
    }
    
    .solutions-tab-btn {
        padding: 10px 12px !important;
        border-radius: 8px;
        flex: 0 0 auto !important;
    }
    
    .solutions-tab-btn span {
        display: none !important;
    }
    
    .solutions-tab-btn i {
        font-size: 18px;
    }
    
    .tab-panel {
        padding: 20px 16px !important;
        border-radius: 16px;
    }
    
    .tab-panel-grid,
    .tab-panel-grid[style] {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .tab-panel-title {
        font-size: 20px !important;
    }
    
    .tab-panel-desc {
        font-size: 14px;
    }
    
    .tab-panel-features li {
        font-size: 13px;
    }
    
    .tab-visual-image {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(34, 49, 3, 0.1);
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .compact-features-toggle {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .feature-card-mini {
        padding: 16px;
    }
    
    .feature-card-mini h4 {
        font-size: 14px;
    }
    
    .feature-card-mini p {
        font-size: 12px;
    }
}

/* ===========================================
   UTILITIES
   =========================================== */

/* ===========================================
   HOME.HTML SPECIFIC STYLES
   =========================================== */

/* Section Titles */
.sec-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    color: var(--text-cream);
    margin-bottom: 40px;
    text-align: center;
}

.sec-title i {
    margin-right: 12px;
    color: var(--accent-lime);
}

/* Feature Grid */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feat-card {
    background: rgba(34, 49, 3, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-medium);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(67, 97, 6, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    font-size: 22px;
    margin-bottom: 20px;
}

.feat-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-cream);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 14px;
    color: var(--text-cream-dim);
    line-height: 1.7;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-box {
    padding: 24px;
}

.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: var(--accent-lime);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-cream-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shot {
    aspect-ratio: 16/10;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(67, 97, 6, 0.2), rgba(34, 49, 3, 0.4));
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shot:hover {
    transform: translateY(-4px);
    border-color: var(--accent-lime);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shot-badge {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-cream);
}

/* Testimonials */
.t-slider {
    overflow: hidden;
    position: relative;
}

.t-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.t-card {
    min-width: 320px;
    max-width: 400px;
    background: rgba(34, 49, 3, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    font-size: 15px;
    color: var(--text-cream);
    font-style: italic;
    line-height: 1.7;
}

.t-card span {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 13px;
    color: var(--accent-lime);
    font-weight: 500;
}

/* CTA Section */
.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    background: rgba(34, 49, 3, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.glass-card {
    background: rgba(34, 49, 3, 0.5);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    border-radius: 16px;
}

/* Partners Marquee */
.marquee {
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-pill {
    background: rgba(67, 97, 6, 0.15);
    border: 1px solid rgba(67, 97, 6, 0.3);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-cream);
    white-space: nowrap;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-sub {
    font-size: 16px;
    color: var(--text-cream-dim);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-card {
    padding: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(240, 240, 224, 0.08);
    color: var(--text-cream);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--border-medium);
    background: rgba(240, 240, 224, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-cream-muted);
}

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

/* Footer Adjustments */
.landing-footer {
    position: relative;
    z-index: 5;
    background: rgba(34, 49, 3, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-cream);
    padding: 60px 0 0;
    border-top: 1px solid var(--border-light);
}

.footer-text {
    color: var(--text-cream-dim);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-lime);
    margin-bottom: 16px;
}

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

.footer-list a {
    color: var(--text-cream-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--text-cream);
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-cream-dim);
    text-decoration: none;
    transition: all 0.2s ease;
}

.socials a:hover {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
    background: rgba(67, 97, 6, 0.1);
}

.copyright {
    text-align: center;
    padding: 24px;
    font-size: 13px;
    color: var(--text-cream-muted);
    border-top: 1px solid var(--border-light);
    margin-top: 48px;
}

/* Responsive for home.html */
@media (max-width: 768px) {
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

.hidden {
    display: none !important;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Smooth scroll offset for fixed navbar */
[id] {
    scroll-margin-top: 80px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-cream);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}
