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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    font-weight: 300;
}

/* Brand Colors - Reduced and refined */
:root {
    --brand-primary: #32CD32; /* Electric Lime - main brand color */
    --brand-secondary: #87CEEB; /* Sky Blue - subtle accents */
    --brand-accent: #FFD700; /* Goldenrod - rare highlights */
}

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

/* Header */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    height: 50px;
    width: auto;
    display: block;
    vertical-align: middle;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #000000;
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #666666;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

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

.btn-primary {
    background: var(--brand-primary);
    color: #000000 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s, transform 0.1s;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
    background: #28B428;
    transform: translateY(-1px);
}

/* Hero */
.hero {
    padding: 140px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #000000;
}

.lead {
    font-size: 20px;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-large {
    background: var(--brand-primary);
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-large:hover {
    background: #28B428;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .btn-large {
        padding: 10px 20px;
        font-size: 15px;
    }
}

.btn-secondary {
    background: transparent;
    color: #666666;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    transition: all 0.2s;
    display: inline-block;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
    border-color: var(--brand-accent);
    color: #000000;
}

/* Responsive button sizes */
@media (max-width: 768px) {
    .btn-primary {
        background: var(--brand-primary);
        color: #000000;
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 500;
        transition: background 0.2s, transform 0.1s;
        font-size: 14px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }
    
    .btn-secondary {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 36px;
    }
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #666666;
    margin-top: 8px;
    font-weight: 400;
}

/* Features */
.features {
    padding: 100px 0;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #000000;
}

.section-header p {
    font-size: 20px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s, border-color 0.3s;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000000;
}

.feature-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Capabilities */
.capabilities-section {
    padding: 100px 0;
    background: #fafafa;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.capability-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.capability-card h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #000000;
}

.capability-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Enterprise Section */
.enterprise-section {
    padding: 100px 0;
}

.enterprise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.enterprise-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000000;
}

.enterprise-text p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.enterprise-list li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    color: #666666;
}

.enterprise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: 500;
}

.enterprise-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    background: #f5f5f5;
    color: #000000;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--brand-secondary);
}

@media (max-width: 768px) {
    .stat-box {
        padding: 20px;
    }
}

.stat-box-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box-label {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: #f8f8f8;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #000000;
}

.cta-box p {
    font-size: 18px;
    color: #333333;
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer accent */
.footer-links a:hover {
    color: var(--brand-accent);
}

/* Footer */
.site-footer {
    padding: 60px 0 40px;
    border-top: 1px solid #e5e5e5;
    background: #ffffff;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 30px;
    }
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    display: block;
    vertical-align: middle;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo-wrapper {
    margin-bottom: 20px;
}

.footer-brand p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.link-group h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000000;
}

.link-group a {
    display: block;
    color: #666666;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.link-group a:hover {
    color: var(--brand-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    color: #666666;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #000000;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .enterprise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .lead {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .btn-large, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 36px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none; /* Hamburger menu would go here */
    }
}

/* Heroicon styling - removed as per request */
.feature-icon {
    width: 0;
    height: 0;
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
}

.modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.3s ease-out;
}

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

.modal-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #666666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--brand-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    background: #ffffff;
    color: #000000;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
    background: #ffffff;
}

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

.form-group button,
.modal-content button[type="submit"] {
    width: 100%;
    margin-top: 8px;
    background: var(--brand-primary);
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: 'Inter', sans-serif;
}

.form-group button:hover,
.modal-content button[type="submit"]:hover {
    background: #28B428;
    transform: translateY(-1px);
}

.form-group button:disabled,
.modal-content button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    background: var(--brand-primary);
    color: #000000;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 16px;
    animation: fadeIn 0.3s ease-out;
}

.form-error {
    background: #ff4444;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 16px;
    animation: fadeIn 0.3s ease-out;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 40px 20px;
        width: 95%;
        border-radius: 16px;
    }
    
    .modal-content h2 {
        font-size: 28px;
        padding-right: 40px;
        margin-bottom: 20px;
    }
    
    .modal-close {
        right: 15px;
        top: 15px;
        font-size: 28px;
        width: 28px;
        height: 28px;
    }
    
    .form-group button,
    .modal-content button[type="submit"] {
        padding: 10px 20px;
        font-size: 15px;
    }
}