/* ==========================================================================
   CSS Variables & Theming (Soft Neo & Vibrant Accents)
   ========================================================================== */
   :root {
    /* Colors (Rural / Nature Premium) */
    --primary: #295f3b;
    --primary-hover: #1e452a;
    --secondary: #c29541;
    --gold: #d4b16a;
    --dark: #1f2922;
    --darker: #0d1410;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-800: #1e293b;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-glow: 0 0 40px rgba(0, 85, 255, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }
.text-emerald { color: var(--secondary); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray { color: #94a3b8; }
.bg-light { background-color: var(--light); }
.items-center { align-items: center; }
.relative { position: relative; }
.box-shadow { box-shadow: var(--shadow-md); }

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark);
    line-height: 1.2;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -10px var(--primary);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gray-200);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background-color: transparent;
    color: var(--gray-500);
}

.btn-ghost:hover {
    color: var(--dark);
    background-color: var(--gray-100);
}

/* ==========================================================================
   Grid System
   ========================================================================== */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--dark);
}

.brand-icon {
    color: var(--secondary);
    font-size: 2rem;
}

/* Section Spacing */
section {
    padding: 8rem 0;
}

.section-title {
    margin-bottom: 4rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.hero-blur-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: linear-gradient(to right, #f4ecd8, #e8f5e9);
}

.hero-blur-2 {
    bottom: 0;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: linear-gradient(to left, #f1faee, transparent);
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--gray-100);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.stat-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.stat-card i {
    font-size: 2.5rem;
}

.stat-info strong {
    display: block;
    font-size: 1.5rem;
    color: var(--dark);
    line-height: 1;
}

.stat-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Benefits / Pe Scurt */
.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--white);
}

/* Eligibility Checklist */
.eligibility {
    padding: 10rem 0;
}

.eligibility-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.checklist li {
    display: flex;
    gap: 1.5rem;
}

.checklist i {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.checklist strong {
    font-size: 1.25rem;
    color: var(--dark);
    display: block;
    margin-bottom: 0.25rem;
}

/* Business Types / Ce poti deschide */
.biz-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.biz-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.biz-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.biz-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1.5rem;
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.biz-badge.priority {
    background: var(--secondary);
    color: var(--white);
}

/* Shopping List Box */
.shopping-list-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    gap: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.box-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark);
    flex-shrink: 0;
}

.shopping-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.shopping-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shopping-list i {
    color: var(--primary);
    font-weight: bold;
}

.alert-text {
    background: #fffbeb;
    color: #b45309;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

/* Scoring - Dark Mode Section */
.scoring {
    background-color: var(--darker);
    color: var(--white);
    padding: 8rem 0;
    overflow: hidden;
}

.scoring-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(194, 149, 65, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.score-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.score-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.score-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.score-points {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.score-points span {
    font-size: 1rem;
    color: var(--gray-500);
}

.score-desc h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.score-desc p { color: #cbd5e1; }

.bonus-box {
    margin-top: 3rem;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.bonus-box i { font-size: 2.5rem; flex-shrink: 0; }
.bonus-box p { color: #f8fafc; font-size: 1.125rem; }

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

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

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

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

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 0 8px var(--white), 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.timeline-content:hover { transform: translateX(8px); }
.timeline-content h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 8rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

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

.footer-cta p {
    color: var(--gray-500);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.glass-card-dark h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-200);
}

.contact-info i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.contact-info a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(41, 95, 59, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(41, 95, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(41, 95, 59, 0); }
}

.pulse-anim { animation: pulse 2s infinite; }

/* Reveal Animations */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   Responsive Exceptions
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions { justify-content: center; }
    .hero-image-wrapper { margin-top: 3rem; }
    .stat-card {
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%) !important;
        animation: none;
    }
    .eligibility .grid-2,
    .shopping-list-box,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .shopping-list-box {
        flex-direction: column;
        padding: 2rem;
    }
    .score-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 5rem 0; }
    .score-cards { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item { padding-left: 4rem; }
    .timeline-number { width: 40px; height: 40px; font-size: 1.25rem; }
    .timeline-content { padding: 1.5rem; }
    .shopping-list { grid-template-columns: 1fr; }
}
