:root {
    --primary: #065f46; /* Emerald Green */
    --primary-light: #ecfdf5;
    --primary-dark: #064e3b;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --radius: 16px;
    --font-main: 'Inter', sans-serif;
}

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

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

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

/* Typography */
h1, h2, h3 { line-height: 1.1; font-weight: 800; }
h1 { font-size: 4.5rem; letter-spacing: -2px; }
h2 { font-size: 3rem; letter-spacing: -1.5px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #fbbf24; /* Yellow from screenshot */
    color: #000;
    border-radius: 8px; /* Slightly rounded as in screenshot */
    text-transform: uppercase;
    font-weight: 800;
}

.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

/* Header */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f3f4f6;
}

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

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links { display: flex; gap: 3rem; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 0.95rem;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-links a:hover { opacity: 0.7; }

/* Hero */
.hero {
    padding: 10rem 0 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content { max-width: 600px; }
.hero-content h1 { margin-bottom: 2rem; }
.hero-content p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 3rem; }

.quote-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    display: flex;
    gap: 1rem;
    border: 1px solid #f3f4f6;
    margin-bottom: 2.5rem;
}

.quote-box select {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-image {
    position: relative;
    height: 600px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.hero-overlay {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fbbf24; /* Yellow from screenshot */
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 250px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Partners */
.partners {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.partners h4 { margin-bottom: 2.5rem; color: var(--text-light); letter-spacing: 1px; font-weight: 700; }
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    opacity: 0.5;
    filter: grayscale(1);
    align-items: center;
}

/* Services */
.section-padding { padding: 8rem 0; }
.text-center { text-align: center; }

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #f3f4f6;
}

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

.service-card img { width: 100%; height: 240px; object-fit: cover; }
.service-card-body { padding: 2rem; }
.service-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.service-card p { color: var(--text-light); margin-bottom: 1.5rem; }
.service-card a { color: var(--primary); text-decoration: none; font-weight: 800; font-size: 0.9rem; }

/* Secondary Hero */
.secondary-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.secondary-hero img { width: 100%; border-radius: 40px; }

/* USP List */
.usp-list { list-style: none; margin-top: 2rem; }
.usp-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.usp-item i { color: var(--primary); }

/* FAQ */
.faq-grid { max-width: 800px; margin: 4rem auto 0; }
.faq-item {
    border-bottom: 1px solid #f3f4f6;
    padding: 1.5rem 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}

/* Footer CTA */
.footer-cta {
    background-color: var(--primary-dark);
    padding: 8rem 0;
    text-align: center;
    color: var(--white);
    border-radius: 60px 60px 0 0;
}

.footer-cta h2 { margin-bottom: 2.5rem; font-size: 4rem; }

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero, .secondary-hero, .grid-3 { grid-template-columns: 1fr; }
    .hero-image { height: 400px; }
}
