:root {
    --primary-navy: #0f172a;
    --primary-navy-light: #1e293b;
    --primary-green: #10b981;
    --primary-green-light: #34d399;
    --accent-blue: #38bdf8;
    --text-light: #f8fafc;
    --text-dark: #334155;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Nav */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-green);
}

.logo {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-green);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary-green-light);
}

.btn-primary {
    background: var(--primary-green);
    color: var(--bg-white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-white);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-navy);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.95) 100%), url('../assets/img/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    color: var(--text-light);
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--primary-green);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Features Section (Glassmorphism) */
.features {
    padding: 100px 5%;
    background: var(--bg-light);
    position: relative;
}

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

.section-header h2 {
    font-size: 3rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--primary-green);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-15px);
    background: var(--bg-white);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Showcase Section */
.showcase {
    padding: 100px 5%;
    background: var(--primary-navy);
    color: var(--text-light);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    color: var(--bg-white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-text h2 span {
    color: var(--primary-green);
}

.showcase-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.showcase-list {
    list-style: none;
    margin-bottom: 40px;
}

.showcase-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.showcase-list li::before {
    content: '✓';
    background: var(--primary-green);
    color: var(--primary-navy);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.showcase-image {
    flex: 1;
    position: relative;
}

.showcase-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.showcase-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-green);
    border-radius: 20px;
    z-index: 1;
}

/* Call to Action */
.cta {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    text-align: center;
    color: var(--primary-navy);
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta .btn-primary {
    background: var(--primary-navy);
    color: var(--text-light);
    border-color: var(--primary-navy);
}

.cta .btn-primary:hover {
    background: transparent;
    color: var(--primary-navy);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

/* Footer */
footer {
    background: #0b1120;
    color: #94a3b8;
    padding: 50px 5% 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: left;
}

.footer-col h3 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .showcase-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    nav ul {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

/* Subpage Styles */
.subpage-hero {
    padding: 150px 5% 80px;
    background: var(--primary-navy);
    color: var(--text-light);
    text-align: center;
}

.subpage-hero h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.subpage-hero h1 span {
    color: var(--primary-green);
}

.subpage-hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Styles */
.pricing-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #e2e8f0;
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--primary-navy);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.price span {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.desc {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
}

/* Contact Styles */
.contact-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.contact-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-info {
    flex: 1;
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 50px;
}

.contact-info h2 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 40px;
}

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

.info-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-list li strong {
    color: var(--primary-green);
    margin-right: 10px;
}

.contact-form-wrapper {
    flex: 1.5;
    padding: 50px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
