:root {
    --primary-navy: #212B4F;
    --primary-green: #00A57D;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A24;
    --text-light: #64748B;
    --surface-light: #F8FAFC;
    --border-color: #E2E8F0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-navy);
    line-height: 1.2;
}

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

/* Typography Helpers */
.highlight-green {
    color: var(--primary-green);
}
.highlight-navy {
    color: var(--primary-navy);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 165, 125, 0.3);
}

.btn-primary:hover {
    background-color: #008a68;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 165, 125, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

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

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    height: 48px;
    width: auto;
}

.text-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 165, 125, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 165, 125, 0.2);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(33, 43, 79, 0.1);
    bottom: -200px;
    left: -200px;
}

/* Purpose Section */
.purpose-section {
    padding: 100px 0;
    background-color: var(--surface-light);
}

.purpose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.purpose-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    border-radius: 2px;
    margin-bottom: 32px;
}

.purpose-text .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.purpose-text p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.purpose-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(33, 43, 79, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0, 165, 125, 0.1);
    border-color: rgba(0, 165, 125, 0.3);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 165, 125, 0.1);
    color: var(--primary-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.glass-card:hover .icon-wrapper {
    background: var(--primary-green);
    color: white;
    transform: scale(1.05) rotate(5deg);
}

.glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.glass-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.cta-box {
    background: var(--primary-navy);
    border-radius: 32px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    box-shadow: 0 30px 60px rgba(33, 43, 79, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 165, 125, 0.2) 0%, rgba(0, 165, 125, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.cta-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
}

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

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

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--surface-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 165, 125, 0.1);
}

/* Spinner Loader */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.hidden {
    display: none !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background-color: rgba(0, 165, 125, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(0, 165, 125, 0.2);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Footer */
.footer {
    background-color: var(--surface-light);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .purpose-container, .cta-box {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .purpose-visual {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
}
