@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #ffffff; /* Solid White background for the body */
    --bg-card: #ffffff; /* Crisp white cards */
    --bg-card-hover: #ffffff;
    --border-color: #e2e8f0; /* Soft slate border */
    --border-hover: #0f2042; /* Dark blue border on hover */
    
    --color-primary: #0f2042; /* Primary color is Dark Blue */
    --color-primary-glow: rgba(15, 32, 66, 0.08);
    --color-secondary: #1e3a8a; /* Royal/Navy Blue */
    --color-accent: #10b981; /* Accent is Emerald Green from the logo leaf */
    --color-accent-glow: rgba(16, 185, 129, 0.08);
    
    --color-text-main: #000000; /* Body text and headings are Black */
    --color-text-muted: #1e293b; /* Muted text is Slate-800 */
    --color-text-dark: #475569; /* Slate-600 */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --glow-primary: 0 10px 30px rgba(15, 32, 66, 0.08);
    --glow-accent: 0 10px 30px rgba(16, 185, 129, 0.08);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Glowing Accents */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.04; /* Very subtle glows on pure white */
}

.bg-glow-1 {
    top: -100px;
    right: -100px;
    background: var(--color-accent);
}

.bg-glow-2 {
    top: 50%;
    left: -200px;
    background: var(--color-primary);
}

.bg-glow-3 {
    bottom: -100px;
    right: 10%;
    background: var(--color-secondary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text-main);
}

p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.gradient-text {
    background: linear-gradient(135deg, #000000 30%, var(--color-primary) 70%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Button & UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); /* Navy to Royal Blue */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(15, 32, 66, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 32, 66, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.02);
    color: var(--color-text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Header / Navigation (Solid Dark Blue) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: #0f2042; /* Same color as Dark Blue */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #ffffff !important; /* White logo in dark header */
}

.logo span {
    color: var(--color-accent); /* Emerald Green leaf dot */
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff !important; /* White bold text on dark blue header */
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: #10b981 !important; /* Green hover */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Global Language Switcher inside dark header */
header .global-lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 9999px;
    padding: 2px;
}

header .lang-btn {
    background: transparent;
    border: none;
    color: #cbd5e1 !important;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

header .lang-btn.active {
    background: var(--color-accent) !important; /* green accent active */
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, rgba(15, 32, 66, 0.03) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--color-text-main);
    margin-bottom: 0.2rem;
}

.stat-item h3 span {
    color: var(--color-accent);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Main Container Section Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-header span {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(15, 32, 66, 0.06);
    color: var(--color-primary);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid rgba(15, 32, 66, 0.12);
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-main);
}

/* Vision & Mission Section */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-fast);
}

.vm-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(15, 32, 66, 0.06);
}

.vm-card:nth-child(2):hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--glow-accent);
}

.vm-card:hover::before {
    background: var(--color-primary);
}

.vm-card:nth-child(2):hover::before {
    background: var(--color-accent);
}

.vm-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(15, 32, 66, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.vm-card:nth-child(2) .vm-card-icon {
    background: rgba(16, 185, 129, 0.06);
}

.vm-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.vm-card:nth-child(2) .vm-card-icon svg {
    stroke: var(--color-accent);
}

.vm-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-main);
}

.vm-list {
    list-style: none;
    margin-top: 1.5rem;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.vm-list li svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Problem Statement Section */
.problem-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.problem-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
}

.problem-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-tab {
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.problem-tab:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.15);
}

.problem-tab.active {
    background: rgba(15, 32, 66, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(15, 32, 66, 0.05);
}

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

.problem-panel {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

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

.problem-panel h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-main);
}

.problem-panel p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.problem-challenges-box, .problem-impact-box {
    margin-bottom: 1.8rem;
}

.problem-panel h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.problem-panel .problem-impact-box h4 {
    color: #ef4444; /* Alert Red for Impact */
}

.challenge-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.challenge-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.challenge-list li svg {
    stroke: var(--color-primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.impact-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.impact-list li svg {
    stroke: #ef4444;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Digital Resource Hub Section */
.hub-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

.hub-tab {
    padding: 1.1rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hub-tab:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.12);
}

.hub-tab.active {
    background: rgba(16, 185, 129, 0.08);
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}

.hub-content-box {
    animation: fadeIn 0.4s ease-out forwards;
}

.hub-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Resource Advisory Card Grids */
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advisory-card {
    background: #f0fdf4; /* Soft sage green */
    border: 1px solid #bbf7d0; /* Light green border */
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-normal);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.06);
}

.advisory-card:hover {
    border-color: #10b981;
    background: #ecfdf5;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.15);
}

.advisory-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

.advisory-card h3, .advisory-card h4 {
    color: #0f2042 !important; /* Dark blue headings */
    font-size: 1.2rem;
}

.advisory-card p, .advisory-card li {
    color: #166534 !important; /* Deep green descriptions */
    font-size: 0.95rem;
    line-height: 1.6;
}

.advisory-card a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mandi Price Table Layout */
.price-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #ffffff;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.price-table th, .price-table td {
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background: rgba(0, 0, 0, 0.02);
    color: var(--color-text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-trend {
    font-weight: bold;
}

.price-trend.up { color: #10b981; }
.price-trend.down { color: #ef4444; }

/* Interactive App Simulator Section */
.simulator-section {
    background: radial-gradient(circle at bottom, rgba(15, 32, 66, 0.03) 0%, transparent 60%);
}

.simulator-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.role-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.role-btn:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.15);
}

.role-btn.active {
    background: linear-gradient(135deg, rgba(15, 32, 66, 0.06) 0%, rgba(15, 32, 66, 0.02) 100%);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

.role-btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.role-btn.active .role-btn-icon {
    background: var(--color-primary);
    color: #ffffff;
}

.role-btn-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.role-btn-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.role-btn-info p {
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

/* Phone Chassis (Keep smartphone look realistic and premium dark slate) */
.phone-showcase-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 380px;
    height: 680px;
    border-radius: 56px;
    background: var(--color-accent);
    filter: blur(80px);
    opacity: 0.06;
    z-index: 0;
    transition: var(--transition-slow);
}

.phone-chassis {
    width: 360px;
    height: 720px;
    background: #020617;
    border: 12px solid #1e293b;
    border-radius: 48px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Phone Status Bar */
.phone-status-bar {
    height: 38px;
    background: #090d16;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 18px;
    background: #1e293b;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 20;
}

/* Phone Content / Screen */
.phone-screen {
    flex: 1;
    background: #090d16;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* App Header styling inside mockup */
.app-header {
    padding: 14px 16px;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 5;
}

.app-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

.app-title span {
    color: var(--color-accent);
}

.app-lang-indicator {
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-accent);
    font-size: 0.65rem;
    border-radius: 4px;
    font-weight: bold;
}

/* App Screen Content Templates */
.app-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

/* App Mock UI Components */
.app-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 12px;
}

.app-label {
    font-size: 0.7rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.app-input {
    width: 100%;
    padding: 8px 12px;
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-fast);
}

.app-input:focus {
    border-color: var(--color-accent);
}

.app-select {
    width: 100%;
    padding: 8px 12px;
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

.app-btn {
    width: 100%;
    padding: 10px;
    background: var(--color-accent);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

.app-btn:hover {
    background: var(--color-secondary);
}

/* Interactive Simulator UI Screen specifics */
.screen-panel {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

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

.role-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.role-badge {
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.role-badge.selected {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--color-accent);
    color: var(--color-accent);
    font-weight: bold;
}

.otp-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 10px 0;
}

.otp-box {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 40px;
}

.results-scroll {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 2px;
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.result-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
}

.result-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.75rem;
    color: var(--color-accent);
}

.result-detail {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.result-phone {
    font-weight: 600;
    color: var(--color-accent);
}

/* Interactive Simulator Workflow Tracker */
.workflow-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

.workflow-steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    opacity: 0.15;
    z-index: 0;
}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-muted);
    transition: var(--transition-normal);
}

.workflow-step.active .step-num-circle {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--glow-primary);
    background: rgba(15, 32, 66, 0.06);
}

.workflow-step:nth-child(even).active .step-num-circle {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: var(--glow-accent);
    background: rgba(16, 185, 129, 0.06);
}

.workflow-step h3 {
    font-size: 1.25rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.workflow-step p {
    font-size: 0.9rem;
}

/* Key Benefits Grid Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr) 1.5fr;
    grid-template-areas: 
        "farmer worker business"
        "owner community business";
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--glow-primary);
    transform: translateY(-4px);
}

.benefit-card-farmer { grid-area: farmer; }
.benefit-card-worker { grid-area: worker; }
.benefit-card-owner { grid-area: owner; }
.benefit-card-community { grid-area: community; }
.benefit-card-business { 
    grid-area: business; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(15, 32, 66, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.benefit-header h3 {
    font-size: 1.4rem;
    color: var(--color-text-main);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.benefit-list li svg {
    stroke: var(--color-primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* FAQ Accordion Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease;
    background: rgba(0, 0, 0, 0.01);
}

.faq-answer-inner {
    padding: 0 2rem 1.8rem 2rem;
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-muted);
    transition: var(--transition-normal);
}

.faq-item.active {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--color-primary);
}

/* Contact / Beta CTA Section */
.cta-section {
    padding-bottom: 120px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(15, 32, 66, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    filter: blur(100px);
    opacity: 0.05;
    border-radius: 50%;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-features-list {
    list-style: none;
    margin-top: 2rem;
}

.cta-features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.cta-features-list li svg {
    stroke: var(--color-accent);
    width: 20px;
    height: 20px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input, .form-select, .form-textarea {
    padding: 0.9rem 1.2rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(15, 32, 66, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

/* Footer Section (Solid Dark Navy Blue) */
footer {
    background: #0f2042; /* Same color as Dark Blue header */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

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

.footer-brand p {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    max-width: 280px;
    color: #94a3b8;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #64748b;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: var(--color-primary-glow);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Ecosystem orbiting visual diagram overrides */
.ecosystem-diagram-container {
    background: #062c20 !important; /* Beautiful dark forest green background */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.3) !important;
}

.eco-node-circle {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

.eco-node-circle span {
    color: #000000 !important; /* Enforced black text */
}

.eco-node-circle:hover {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: #10b981 !important;
}

.eco-node-circle:hover span {
    color: #10b981 !important;
}

/* Style problems-summary-box with soft sage green and dark blue text */
#problems-summary-box {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.08) !important;
}

#problems-summary-box p, 
#problems-summary-text {
    color: #0f2042 !important; /* Dark blue text for excellent readability */
}

/* Global Sage Green Card Overrides */
.advisory-card {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.06) !important;
}
.advisory-card h3, .advisory-card h4 {
    color: #0f2042 !important;
}
.advisory-card p, .advisory-card li {
    color: #166534 !important;
}
.advisory-card:hover {
    border-color: #10b981 !important;
    background: #ecfdf5 !important;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.15) !important;
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hub-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .advisory-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .simulator-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .phone-showcase-container {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "farmer"
            "worker"
            "owner"
            "business"
            "community";
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header-container {
        height: 70px;
    }
    
    .nav-links, .header-actions > .btn {
        display: none;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .workflow-steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .workflow-steps-grid::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
