:root {
    --cream: #FAF9F6;
    --dark-green: #1a3a2e;
    --forest: #2d5a47;
    --sage: #4a7c59;
    --gold: #d4a574;
    --light-gold: #e8d4b8;
    --charcoal: #2c2c2c;
    --gray: #6b7280;
    --light-gray: #e5e7eb;
    --white: #ffffff;
    --red: #dc2626;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    font-size: 1.8rem;
    color: var(--forest);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background: var(--dark-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 46, 0.2);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 58, 46, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    z-index: -1;
}

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

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--forest);
    position: relative;
}

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

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

.btn-hero {
    background: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 46, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: var(--dark-green);
    color: var(--white);
}

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

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest);
    font-family: 'Libre Baskerville', serif;
}

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

/* Dashboard Preview */
.dashboard-preview {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

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

.preview-header {
    background: linear-gradient(135deg, var(--dark-green), var(--forest));
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-title {
    color: var(--white);
    font-weight: 600;
}

.preview-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.request-card {
    background: var(--cream);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease backwards;
}

.request-card:nth-child(1) { animation-delay: 0.1s; }
.request-card:nth-child(2) { animation-delay: 0.2s; }
.request-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.request-card.incoming {
    border-left: 4px solid var(--red);
}

.request-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.request-icon {
    font-size: 1.8rem;
}

.request-info {
    flex: 1;
}

.request-title {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.request-meta {
    font-size: 0.85rem;
    color: var(--gray);
}

.request-status {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--light-gold);
    color: var(--forest);
}

.request-status.urgent {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}

.request-status.resolved {
    background: rgba(74, 124, 89, 0.1);
    color: var(--sage);
}

.ai-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.ai-icon {
    font-size: 1rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.problem-item {
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    background: var(--cream);
    transition: all 0.4s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    color: var(--light-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-item h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

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

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

.feature-card:hover {
    border-color: var(--sage);
    box-shadow: 0 10px 40px rgba(26, 58, 46, 0.1);
    transform: translateY(-5px);
}

.feature-card.primary {
    background: linear-gradient(135deg, var(--dark-green), var(--forest));
    color: var(--white);
    border: none;
}

.feature-card.primary h3,
.feature-card.primary p {
    color: var(--white);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.feature-card.primary .feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 700;
}

.feature-card.primary .feature-list li::before {
    color: var(--gold);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.benefit-graphic {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    background: linear-gradient(135deg, var(--cream), var(--white));
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--forest);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.metric-value {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.benefits-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-green), var(--forest));
    color: var(--white);
}

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

.cta-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.btn-cta {
    background: var(--white);
    color: var(--dark-green);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .features-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}