:root {
    --forest-deep: #1E331E;
    --sage: #7A907C;
    --sand: #E8D3A2;
    --background: #F2F4F0;
    --charcoal: #1C1F1C;
    --text-primary: #1E331E;
    --text-glass: rgba(30, 51, 30, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.executive-header {
    height: 100vh;
    background: linear-gradient(135deg, var(--forest-deep) 0%, #2b3a2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.executive-header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--background);
    border-radius: 50% / 100px 100px 0 0;
}

.logo-icon {
    font-size: 3rem;
    color: var(--sand);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-button {
    background-color: var(--sand);
    color: var(--charcoal);
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--forest-deep);
}

.feature-card p {
    color: var(--text-glass);
}

.footer {
    padding: 80px 24px;
    background: white;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    margin-top: 2rem;
}

.footer-links a {
    color: var(--text-glass);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}
