:root {
    --maize-charcoal: #2B1F1A;
    --maize-cocoa: #4A3328;
    --maize-amber: #F2A93B;
    --maize-orange: #D9772A;
    --maize-cream: #F7EBD8;
    --maize-rose: #D97A8A;
    --maize-white: #FFFFFF;
    --maize-light-cream: #FDF8F2;
}

.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--maize-light-cream);
    color: var(--maize-charcoal);
    line-height: 1.6;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 248, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 51, 40, 0.1);
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maize-charcoal);
}

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

.nav-link {
    color: var(--maize-cocoa);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--maize-amber);
    text-decoration: none;
}

.nav-admin {
    background: var(--maize-cocoa);
    color: var(--maize-white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-admin:hover {
    background: var(--maize-charcoal);
    color: var(--maize-white);
}

.hero-section {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--maize-cream) 0%, var(--maize-light-cream) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--maize-charcoal);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--maize-cocoa);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--maize-cocoa);
    border: 2px solid var(--maize-cocoa);
}

.btn-secondary-outline:hover {
    background: var(--maize-cocoa);
    color: var(--maize-white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mascot {
    max-width: 350px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(43, 31, 26, 0.15));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

.floating-questions {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.question-bubble {
    position: absolute;
    background: var(--maize-white);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    color: var(--maize-cocoa);
    box-shadow: 0 4px 15px rgba(43, 31, 26, 0.1);
    white-space: nowrap;
    opacity: 0.9;
    border: 1px solid rgba(74, 51, 40, 0.1);
}

.bubble-1 {
    top: 0;
    left: 10%;
    animation: bobble1 4s ease-in-out infinite;
}

.bubble-2 {
    top: 15%;
    right: 5%;
    animation: bobble2 5s ease-in-out infinite;
}

.bubble-3 {
    bottom: 25%;
    left: 0;
    animation: bobble3 4.5s ease-in-out infinite;
}

.bubble-4 {
    bottom: 5%;
    right: 10%;
    animation: bobble4 5.5s ease-in-out infinite;
}

.bubble-5 {
    top: 45%;
    right: -5%;
    animation: bobble5 4.8s ease-in-out infinite;
}

@keyframes bobble1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, -8px); }
}

@keyframes bobble2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-6px, 10px); }
}

@keyframes bobble3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, 6px); }
}

@keyframes bobble4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -7px); }
}

@keyframes bobble5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(4px, 9px); }
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: var(--maize-charcoal);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--maize-cocoa);
    text-align: center;
    margin-bottom: 3rem;
}

.features-section {
    padding: 5rem 2rem;
    background: var(--maize-white);
}

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

.feature-card {
    background: var(--maize-light-cream);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(74, 51, 40, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(43, 31, 26, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--maize-amber);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maize-white);
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--maize-charcoal);
    margin: 0 0 0.75rem 0;
}

.feature-card p {
    color: var(--maize-cocoa);
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
}

.comparison-section {
    padding: 5rem 2rem;
    background: var(--maize-cream);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--maize-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(43, 31, 26, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.comparison-table thead {
    background: var(--maize-charcoal);
    color: var(--maize-white);
}

.comparison-table th {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.table-logo {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.highlight-col {
    background: rgba(242, 169, 59, 0.1);
}

.comparison-table thead .highlight-col {
    background: var(--maize-amber);
    color: var(--maize-charcoal);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(74, 51, 40, 0.1);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--maize-charcoal);
}

.check {
    color: #16a34a;
    font-weight: 600;
}

.cross {
    color: var(--maize-cocoa);
    opacity: 0.7;
}

.demo-section {
    padding: 5rem 2rem;
    background: var(--maize-white);
}

.demo-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--maize-cream) 0%, var(--maize-light-cream) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(74, 51, 40, 0.1);
}

.demo-content {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--maize-charcoal);
    margin-bottom: 0.75rem;
}

.demo-content p {
    color: var(--maize-cocoa);
    font-size: 1.1rem;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.demo-form .form-group {
    margin-bottom: 1rem;
}

.demo-form label {
    display: block;
    font-weight: 500;
    color: var(--maize-charcoal);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--maize-rose);
    font-weight: 600;
}

.demo-form input,
.demo-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(74, 51, 40, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    background: var(--maize-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-form input:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--maize-amber);
    box-shadow: 0 0 0 3px rgba(242, 169, 59, 0.2);
}

.btn-full {
    width: 100%;
}

.form-status {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

.form-status.success {
    color: #16a34a;
}

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

.site-footer {
    background: var(--maize-charcoal);
    color: var(--maize-cream);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--maize-cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 235, 216, 0.2);
    font-size: 0.875rem;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-mascot {
        max-width: 250px;
    }
    
    .floating-questions {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .demo-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header-nav {
        gap: 1rem;
    }
    
    .nav-link:not(.nav-admin) {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

.landing-page .btn-primary {
    background: var(--maize-amber);
    color: var(--maize-charcoal);
    border: none;
}

.landing-page .btn-primary:hover:not(:disabled) {
    background: var(--maize-orange);
    color: var(--maize-white);
}
