/* ===================================
   MOO DAIRY FARMS - CSS STYLESHEET
   Green Grass Color Palette
   =================================== */

/* CSS Custom Properties (Variables) */
:root {
    /* Primary Green Grass Palette */
    --grass-50: #f0fdf4;
    --grass-100: #dcfce7;
    --grass-200: #bbf7d0;
    --grass-300: #86efac;
    --grass-400: #4ade80;
    --grass-500: #22c55e;
    --grass-600: #16a34a;
    --grass-700: #15803d;
    --grass-800: #166534;
    --grass-900: #14532d;
    --grass-950: #052e16;

    /* Primary Colors */
    --primary: #22c55e;
    --primary-light: #4ade80;
    --primary-dark: #16a34a;
    --primary-darker: #15803d;

    /* Secondary Colors */
    --secondary: #166534;
    --secondary-light: #22c55e;
    --secondary-dark: #14532d;

    /* Accent Colors */
    --accent: #fbbf24;
    --accent-light: #fcd34d;
    --accent-dark: #f59e0b;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Status Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

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

ul, ol {
    list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--grass-100);
    color: var(--grass-700);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-description {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
}

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

.section-header .section-description {
    margin: 0 auto;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-light {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--grass-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all var(--transition-base);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    transition: color var(--transition-base);
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-base);
    position: relative;
}

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

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

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

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

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

.navbar.scrolled .nav-actions .btn-outline {
    color: var(--primary-dark);
    border-color: var(--primary);
}

.nav-actions .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.navbar.scrolled .nav-actions .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #654321;
    transition: all var(--transition-base);
}

.navbar.scrolled .mobile-toggle span {
    background: #654321;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

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

.hero-content {
    color: var(--gray-900);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.hero-badge i {
    color: var(--primary-light);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.trust-item i {
    color: var(--primary-light);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    min-width: 300px;
    animation: float 6s ease-in-out infinite;
}

.hero-about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    max-width: 500px;
}

.hero-about-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-about-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hero-about-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--grass-100);
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-about-feature .feature-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.hero-about-feature .feature-content p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-badge {
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.card-header i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.card-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.card-label {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.card-chart {
    margin-bottom: 1rem;
}

.mini-chart {
    width: 100%;
    height: 60px;
    color: var(--primary-light);
}

.card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--primary-light);
}

.card-footer i {
    margin-right: 0.25rem;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    color: var(--gray-800);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--grass-100);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-500);
    font-size: 1rem;
    font-weight: 900;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-50);
}

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

.about-content .section-description {
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--grass-100);
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature .feature-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.about-feature .feature-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.about-visual {
    position: relative;
}

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

.about-image {
    background: linear-gradient(135deg, var(--grass-200) 0%, var(--grass-300) 100%);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--grass-700);
}

.image-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.image-placeholder span {
    font-weight: 600;
    opacity: 0.7;
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.badge-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===================================
   PURPOSE, VISION & MISSION SECTION
   =================================== */
.purpose-vision-mission {
    padding: var(--spacing-2xl) 0;
    background: url('images/90.jpeg') center center / cover no-repeat;
    position: relative;
}

.purpose-vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.5) 0%, rgba(20, 83, 45, 0.5) 100%);
    pointer-events: none;
}

.purpose-vision-mission .container {
    position: relative;
    z-index: 1;
}

.purpose-vision-mission .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.purpose-vision-mission .section-badge i {
    color: var(--accent);
}

.purpose-vision-mission .section-title {
    color: var(--white);
}

.purpose-vision-mission .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.pvm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.pvm-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
}

.pvm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pvm-card.purpose::before {
    background: linear-gradient(90deg, var(--error) 0%, #f97316 100%);
}

.pvm-card.vision::before {
    background: linear-gradient(90deg, var(--primary) 0%, #14b8a6 100%);
}

.pvm-card.mission::before {
    background: linear-gradient(90deg, var(--info) 0%, #8b5cf6 100%);
}

.pvm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.pvm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pvm-card.purpose .pvm-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    color: var(--error);
}

.pvm-card.vision .pvm-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    color: var(--primary);
}

.pvm-card.mission .pvm-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--info);
}

.pvm-card h3 {
    font-size: 1.35rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.pvm-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pvm-highlight {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pvm-card.purpose .pvm-highlight {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.pvm-card.vision .pvm-highlight {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
}

.pvm-card.mission .pvm-highlight {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

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

.pvm-values h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.values-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.value-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.value-item i {
    color: var(--accent);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

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

.feature-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--grass-100) 0%, var(--grass-200) 100%);
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
}

.feature-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

/* Investment Options Two-Column Layout */
.investment-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.investment-column {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.investment-column:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.investment-column-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 2rem;
}

.investment-column-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.investment-column-header h3 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.investment-column-header p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
}

.features-grid-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.features-grid-column .feature-card {
    padding: 1.25rem;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.features-grid-column .feature-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.features-grid-column .feature-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.features-grid-column .feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.features-grid-column .feature-card p {
    font-size: 0.875rem;
}

/* Equity Partnership Column Styles */
.partnership-metrics-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--grass-50);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.metric-card-compact.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-dark);
}

.metric-card-compact .metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.metric-card-compact.highlight .metric-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.metric-card-compact .metric-content {
    flex: 1;
}

.metric-card-compact .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-card-compact.highlight .metric-value {
    color: var(--white);
}

.metric-card-compact .metric-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.metric-card-compact.highlight .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Equity Benefits */
.equity-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--grass-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.benefit-item .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-item .benefit-content {
    flex: 1;
}

.benefit-item .benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.benefit-item .benefit-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Returns Summary */
.returns-summary {
    background: linear-gradient(135deg, var(--grass-50) 0%, var(--grass-100) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
}

.returns-summary h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.return-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.return-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.return-item .return-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.return-item .return-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: right;
}

/* Investment Example Compact */
.investment-example-compact {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.investment-example-compact .example-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.investment-example-compact .example-content {
    padding: 1.25rem;
}

.investment-example-compact .example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.investment-example-compact .example-row:last-child {
    border-bottom: none;
}

.investment-example-compact .example-row span {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.investment-example-compact .example-row strong {
    color: var(--gray-900);
    font-size: 1.125rem;
    font-weight: 700;
}

.investment-example-compact .example-row strong.highlight {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Equity CTA */
.equity-cta {
    text-align: center;
}

.equity-cta .cta-note {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.equity-cta .cta-note i {
    color: var(--primary);
}

/* ===================================
   INVESTMENT PLANS SECTION
   =================================== */
.investments {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--grass-50) 0%, var(--grass-100) 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all var(--transition-base);
}

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

.plan-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.plan-price {
    text-align: center;
    padding: 1.5rem;
    background: var(--grass-50);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-returns {
    text-align: center;
    margin-bottom: 1.5rem;
}

.returns-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.returns-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.plan-term {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.plan-term i {
    color: var(--primary);
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.testimonial-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.testimonial-stats .stat {
    display: flex;
    flex-direction: column;
}

.testimonial-stats .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-stats .stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===================================
   TEAM SECTION
   =================================== */
.team {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.team .section-title {
    color: var(--white);
}

.team .section-description {
    color: rgba(255, 255, 255, 0.9);
}

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

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

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

.team-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.team-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--grass-100);
    color: var(--primary);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 0;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.faq-answer {
    display: block;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-description {
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-info .section-description {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.contact-text p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.625rem 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--gray-800);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--grass-700) 0%, var(--grass-900) 100%);
}

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

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--white);
    color: var(--gray-800);
    padding: var(--spacing-2xl) 0 0;
    border-top: 1px solid var(--gray-200);
}

.footer-grid {
    padding-bottom: var(--spacing-3xl);
}

.footer-brand .logo {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}


.footer-newsletter h4 {
    color: var(--gray-900);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    color: var(--gray-800);
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form .btn {
    padding: 0.75rem 1rem;
}

.footer-bottom {
    position: relative;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: var(--gray-200);
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

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

/* Tablets */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

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

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-5px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Mobile Menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active a {
        color: var(--gray-800);
        padding: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 250px);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-lg);
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .plan-card,
    .testimonial-card,
    .team-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

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

    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
    .feature-card:nth-child(5) { animation-delay: 0.5s; }
    .feature-card:nth-child(6) { animation-delay: 0.6s; }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-visual,
    .hero-scroll,
    .cta,
    .footer {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-bg {
        background: none;
    }

    .hero-content {
        color: var(--gray-900);
    }
}

/* ===================================
   COMPARISON TABLE SECTION
   =================================== */
.comparison {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--grass-800);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th.highlight-col {
    background: var(--primary);
}

.comparison-table td {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.comparison-table td.highlight-col {
    background: var(--grass-50);
    font-weight: 600;
    color: var(--grass-800);
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table tbody tr:hover td.highlight-col {
    background: var(--grass-100);
}

.text-success {
    color: var(--success);
    margin-right: 0.5rem;
}

.text-danger {
    color: var(--error);
    margin-right: 0.5rem;
}

.text-warning {
    color: var(--warning);
    margin-right: 0.5rem;
}

/* ===================================
   ROI TABLE
   =================================== */
.roi-table-wrapper {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.roi-table-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    color: var(--gray-900);
}

.roi-table {
    overflow-x: auto;
}

.roi-table table {
    width: 100%;
    border-collapse: collapse;
}

.roi-table th,
.roi-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.roi-table th {
    background: var(--grass-100);
    color: var(--grass-800);
    font-weight: 600;
}

.roi-table th:first-child {
    text-align: left;
}

.roi-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--gray-700);
}

.roi-table th.highlight-col {
    background: var(--primary);
    color: var(--white);
}

.roi-table td.highlight-col {
    background: var(--grass-50);
    font-weight: 600;
    color: var(--grass-800);
}

.roi-table .total-row {
    background: var(--grass-100);
    font-weight: 700;
}

.roi-table .total-row td {
    color: var(--grass-900);
    font-size: 1.125rem;
}

.roi-table .total-row td.highlight-col {
    background: var(--primary);
    color: var(--white);
}

.table-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
    font-style: italic;
}

/* ===================================
   TAX BENEFITS SECTION
   =================================== */
.tax-benefits {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.tax-content {
    max-width: 100%;
}

.tax-info .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.tax-info .section-title {
    color: var(--white);
}

.tax-info .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.tax-list {
    margin-top: 2rem;
}

.tax-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tax-list li i {
    color: var(--grass-900);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.tax-visual {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.tax-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.tax-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.tax-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tax-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.tax-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* ===================================
   ROADMAP / TIMELINE SECTION
   =================================== */
.roadmap {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-50);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--grass-200);
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--white);
    border: 3px solid var(--grass-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grass-500);
    font-size: 1rem;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.timeline-item.active .timeline-marker {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.timeline-content ul {
    padding-left: 0;
}

.timeline-content li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.timeline-content li:last-child {
    border-bottom: none;
}

.timeline-content li strong {
    color: var(--gray-800);
    font-weight: 600;
    white-space: nowrap;
}

/* ===================================
   FINANCIALS SECTION
   =================================== */
.financials {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

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

.financial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.financial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.financial-card.highlight {
    background: linear-gradient(135deg, var(--grass-600) 0%, var(--grass-700) 100%);
    border-color: transparent;
    color: var(--white);
}

.financial-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.financial-card.highlight h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.financial-card ul {
    list-style: none;
}

.financial-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9375rem;
}

.financial-card.highlight li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.financial-card li:last-child {
    border-bottom: none;
}

.financial-card li span {
    color: var(--gray-600);
}

.financial-card.highlight li span {
    color: rgba(255, 255, 255, 0.7);
}

.financial-card li strong {
    color: var(--gray-900);
    font-weight: 700;
}

.financial-card.highlight li strong {
    color: var(--white);
}

/* ===================================
   EQUITY PARTNERSHIP SECTION
   =================================== */
.partnership {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

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

.partnership .section-header {
    margin-bottom: var(--spacing-3xl);
}

.partnership .section-badge {
    background: var(--grass-100);
    color: var(--grass-700);
}

.partnership .section-badge i {
    color: var(--primary);
}

.partnership .section-title {
    color: var(--gray-900);
}

.partnership .section-description {
    color: var(--gray-600);
}

/* Key Metrics Banner */
.partnership-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--spacing-3xl);
}

.metric-card {
    background: var(--grass-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}

.metric-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.metric-card.highlight {
    background: var(--primary);
    border-color: var(--primary);
}

.metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--grass-100);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.metric-card.highlight .metric-icon {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-card.highlight .metric-value {
    color: var(--white);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.metric-card.highlight .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits Grid */
.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--spacing-3xl);
}

.benefit-card {
    background: var(--grass-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

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

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--grass-100) 0%, var(--grass-200) 100%);
    border-radius: var(--radius-xl);
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Returns Showcase */
.partnership-returns-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    margin-bottom: var(--spacing-3xl);
    box-shadow: var(--shadow-xl);
}

.returns-left h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.return-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.return-highlight-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--grass-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.return-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 80px;
}

.return-text {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* Investment Example Card */
.investment-example {
    background: linear-gradient(135deg, var(--grass-700) 0%, var(--grass-800) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    font-weight: 600;
}

.example-header i {
    font-size: 1.25rem;
    color: var(--accent);
}

.example-content {
    padding: 1.5rem;
}

.example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.example-row:last-child {
    border-bottom: none;
}

.example-row strong {
    color: var(--white);
    font-size: 1.25rem;
}

.example-row strong.highlight {
    color: var(--accent);
    font-size: 1.5rem;
}

.example-footer {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.cash-return {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
}

.cash-return i {
    color: var(--accent);
    font-size: 1.25rem;
}

.cash-return strong {
    color: var(--accent);
    font-size: 1.125rem;
}

/* CTA */
.partnership-cta {
    text-align: center;
}

.partnership-cta .btn {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.cta-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* ===================================
   RESPONSIVE ADDITIONS
   =================================== */
@media (max-width: 1024px) {
    .tax-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partnership-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-returns-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tax-visual {
        grid-template-columns: repeat(3, 1fr);
    }

    .financials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .comparison-table table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .pvm-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto var(--spacing-3xl);
    }

    .pvm-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 1rem;
    }

    .timeline-item {
        padding-left: 3.5rem;
    }

    .timeline-marker {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .tax-visual {
        grid-template-columns: 1fr;
    }

    .tax-card {
        padding: 1.5rem;
    }

    .tax-card h3 {
        font-size: 2rem;
    }

    .roi-table-wrapper {
        padding: 1rem;
    }

    .roi-table th,
    .roi-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .partnership-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .partnership-returns-showcase {
        padding: 1.5rem;
    }

    .return-highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .return-number {
        min-width: auto;
    }

    .partnership-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .pvm-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .pvm-card h3 {
        font-size: 1.25rem;
    }

    .pvm-card p {
        font-size: 0.9375rem;
    }

    .values-list {
        gap: 0.75rem;
    }

    .value-item {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}
