/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a2e;
    background: #F7F5F0;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
label { font-size: 0.8125rem; font-weight: 500; color: #374151; display: block; margin-bottom: 0.375rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; font-weight: 700; }

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: #064E3B; background: #D1FAE5; border: 1px solid #A7F3D0;
    padding: 0.375rem 0.875rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #064E3B; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.0625rem; color: #4B5563; max-width: 600px; line-height: 1.7; }
.text-accent { color: #059669; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.9375rem;
    padding: 0.875rem 1.75rem; border-radius: 12px; transition: all 0.2s ease;
}
.btn--primary {
    background: #064E3B; color: #F7F5F0; border: 2px solid #064E3B;
}
.btn--primary:hover { background: #047857; border-color: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,78,59,0.3); }
.btn--ghost {
    background: transparent; color: #064E3B; border: 2px solid #064E3B;
}
.btn--ghost:hover { background: #D1FAE5; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(247,245,240,0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6,78,59,0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(6,78,59,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 0.625rem; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.125rem; color: #064E3B; letter-spacing: -0.02em; }
.logo--light .logo-text { color: #F7F5F0; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
    font-size: 0.875rem; font-weight: 500; color: #374151; padding: 0.5rem 0.875rem;
    border-radius: 8px; transition: all 0.15s ease;
}
.nav-menu a:hover { color: #064E3B; background: #D1FAE5; }
.nav-cta {
    background: #064E3B !important; color: #F7F5F0 !important; border-radius: 8px !important;
    margin-left: 0.5rem; font-weight: 600 !important;
}
.nav-cta:hover { background: #047857 !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 22px; height: 2px; background: #064E3B; border-radius: 2px; transition: all 0.2s ease;
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { transform: translateY(-6px); }
.hamburger::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; position: relative; z-index: 101; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: #F7F5F0; flex-direction: column; align-items: flex-start;
        padding: 6rem 2rem 2rem; gap: 0.25rem;
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { font-size: 1rem; padding: 0.75rem 0; width: 100%; }
    .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; text-align: center; justify-content: center; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; padding: 72px 0 4rem;
    background: #F7F5F0; position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle { border-radius: 50%; position: absolute; }
.geo-circle--1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(6,78,59,0.06) 0%, transparent 70%); top: -100px; right: -100px; }
.geo-circle--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(110,231,183,0.12) 0%, transparent 70%); bottom: 10%; left: 5%; }
.geo-diamond { position: absolute; transform: rotate(45deg); }
.geo-diamond--1 { width: 60px; height: 60px; background: #D1FAE5; top: 20%; left: 8%; opacity: 0.6; }
.geo-square { position: absolute; border-radius: 12px; }
.geo-square--1 { width: 40px; height: 40px; background: #064E3B; bottom: 25%; right: 12%; opacity: 0.06; }
.hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8125rem; font-weight: 600; color: #064E3B;
    background: #D1FAE5; border: 1px solid #A7F3D0; padding: 0.5rem 1rem;
    border-radius: 100px; margin-bottom: 1.5rem;
}
.badge-dot { width: 8px; height: 8px; background: #059669; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { font-size: clamp(2rem, 4.5vw, 3.25rem); color: #064E3B; margin-bottom: 1.25rem; line-height: 1.1; }
.hero-accent { color: #059669; position: relative; }
.hero-subtitle { font-size: 1.0625rem; color: #4B5563; line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; font-weight: 500; color: #374151; }
.trust-item svg { color: #059669; flex-shrink: 0; }
.hero-right { position: relative; }
.hero-image-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(6,78,59,0.15); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-accent {
    position: absolute; inset: 0; border-radius: 24px;
    border: 2px solid rgba(110,231,183,0.3); pointer-events: none;
}
.hero-float-card {
    position: absolute; bottom: -20px; left: -30px;
    background: #F7F5F0; border-radius: 16px; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 0.875rem;
    box-shadow: 0 12px 32px rgba(6,78,59,0.15); border: 1px solid rgba(6,78,59,0.08);
    z-index: 2;
}
.float-card-icon {
    width: 44px; height: 44px; background: #064E3B; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: #6EE7B7;
}
.float-card-text { display: flex; flex-direction: column; }
.float-card-text strong { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; color: #064E3B; }
.float-card-text span { font-size: 0.75rem; color: #6B7280; }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-right { max-width: 480px; margin: 0 auto; }
    .hero-float-card { left: 50%; transform: translateX(-50%); bottom: -16px; }
}

/* ===== SERVICES ===== */
.services {
    padding: 6rem 0; position: relative; overflow: hidden;
    background: #F7F5F0;
}
.services-decor { position: absolute; inset: 0; pointer-events: none; }
.geo-triangle {
    position: absolute; top: 8%; right: 3%;
    width: 0; height: 0;
    border-left: 40px solid transparent; border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(6,78,59,0.05);
    transform: rotate(-15deg);
}
.geo-dot-grid {
    position: absolute; bottom: 10%; left: 3%;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, rgba(6,78,59,0.12) 1.5px, transparent 1.5px);
    background-size: 12px 12px; opacity: 0.5;
}
.services .container { position: relative; z-index: 1; }
.services .section-label, .services .section-title, .services .section-subtitle { margin-bottom: 3rem; }
.services .section-title, .services .section-subtitle { text-align: center; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
    background: #fff; border-radius: 20px; padding: 2rem;
    border: 1px solid rgba(6,78,59,0.06);
    transition: all 0.25s ease; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: #D1FAE5; border-radius: 20px 20px 0 0; transition: height 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(6,78,59,0.1); }
.service-card:hover::before { height: 5px; }
.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon--green { background: #D1FAE5; color: #064E3B; }
.service-icon--teal { background: #CCFBF1; color: #0F766E; }
.service-icon--amber { background: #FEF3C7; color: #92400E; }
.service-icon--blue { background: #DBEAFE; color: #1D4ED8; }
.service-icon--purple { background: #EDE9FE; color: #6D28D9; }
.service-icon--rose { background: #FFE4E6; color: #BE185D; }
.service-card h3 { font-size: 1.125rem; color: #064E3B; margin-bottom: 0.625rem; }
.service-card p { font-size: 0.9375rem; color: #4B5563; line-height: 1.65; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== WHY US ===== */
.why-us {
    padding: 6rem 0;
    background: #064E3B; position: relative; overflow: hidden;
}
.why-us::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(110,231,183,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.why-us-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}
.why-us-left .section-label { background: rgba(110,231,183,0.2); color: #6EE7B7; border-color: rgba(110,231,183,0.3); }
.why-us-left .section-title { color: #F7F5F0; }
.why-us-left .text-accent { color: #6EE7B7; }
.why-us-left .section-subtitle { color: rgba(247,245,240,0.7); }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
    width: 24px; height: 24px; min-width: 24px; background: rgba(110,231,183,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #6EE7B7; margin-top: 2px;
}
.why-item strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1rem; color: #F7F5F0; margin-bottom: 0.125rem; }
.why-item span { font-size: 0.875rem; color: rgba(247,245,240,0.6); line-height: 1.55; }
.why-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-img-float {
    position: absolute; bottom: -24px; right: -24px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    border: 4px solid rgba(247,245,240,0.2);
}
.why-img-float img { width: 100%; height: 100%; object-fit: cover; }
.why-stat-card {
    position: absolute; top: -20px; right: 40px;
    background: #F7F5F0; border-radius: 16px; padding: 1.25rem 1.5rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2); text-align: center; z-index: 2;
}
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: #064E3B; }
.stat-label { font-size: 0.75rem; color: #6B7280; line-height: 1.4; }
.why-us-right { position: relative; min-height: 540px; }

@media (max-width: 900px) {
    .why-us-inner { grid-template-columns: 1fr; }
    .why-us-right { order: -1; min-height: 400px; }
}

/* ===== ABOUT ===== */
.about { padding: 6rem 0; background: #F7F5F0; position: relative; overflow: hidden; }
.about-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image-col { position: relative; }
.about-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(6,78,59,0.12); position: relative; z-index: 1; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-block {
    position: absolute; bottom: -24px; right: -24px; width: 200px; height: 200px;
    background: #064E3B; border-radius: 24px; z-index: 0; opacity: 0.07;
}
.about-text-col .section-label { margin-bottom: 1rem; }
.about-text-col .section-title { margin-bottom: 1.5rem; }
.about-text-col p { font-size: 1rem; color: #4B5563; line-height: 1.8; margin-bottom: 1rem; }
.about-stats {
    display: flex; gap: 0; margin-top: 2.5rem;
    background: #fff; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(6,78,59,0.06);
}
.about-stat { flex: 1; text-align: center; padding: 1.5rem 1rem; }
.about-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.375rem; font-weight: 700; color: #064E3B; }
.about-stat-label { font-size: 0.75rem; color: #6B7280; margin-top: 0.25rem; line-height: 1.4; }
.about-stat-divider { width: 1px; background: rgba(6,78,59,0.08); align-self: stretch; }

@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; } .about-image-col { max-width: 480px; } }

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 0; position: relative; overflow: hidden;
    background: #F7F5F0;
}
.contact-decor { position: absolute; inset: 0; pointer-events: none; }
.geo-circle--3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,78,59,0.05) 0%, transparent 70%); top: -100px; left: -100px; }
.geo-diamond--2 { width: 50px; height: 50px; background: #D1FAE5; transform: rotate(45deg); bottom: 15%; right: 5%; opacity: 0.5; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    position: relative; z-index: 1;
}
.contact-info .section-title, .contact-info .section-subtitle { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
    width: 44px; height: 44px; min-width: 44px; background: #D1FAE5;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: #064E3B;
}
.contact-detail strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.9375rem; color: #064E3B; margin-bottom: 0.125rem; }
.contact-detail span, .contact-detail a { font-size: 0.9375rem; color: #4B5563; }
.contact-detail a:hover { color: #059669; text-decoration: underline; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(6,78,59,0.08); }

.contact-form-wrap { position: relative; }
.contact-form-bg {
    position: absolute; inset: 0; background: #064E3B; border-radius: 24px;
    transform: translate(12px, 12px); z-index: 0;
}
.contact-form-wrap > * { position: relative; z-index: 1; }
.contact-form-title { font-size: 1.375rem; color: #064E3B; margin-bottom: 1.5rem; }
.contact-form { background: #fff; border-radius: 24px; padding: 2rem; border: 1px solid rgba(6,78,59,0.06); box-shadow: 0 8px 32px rgba(6,78,59,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #E5E7EB;
    border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.9375rem;
    color: #1a1a2e; background: #F9FAFB; transition: all 0.15s ease;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #059669; background: #fff; box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9CA3AF; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    text-align: center; padding: 3rem 2rem;
    background: #fff; border-radius: 24px; border: 1px solid rgba(6,78,59,0.06);
}
.success-icon { margin-bottom: 1rem; }
.form-success strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; color: #064E3B; margin-bottom: 0.5rem; }
.form-success span { font-size: 0.9375rem; color: #4B5563; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer { background: #041C16; color: #F7F5F0; padding: 4rem 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(247,245,240,0.55); line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; color: #6EE7B7;
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.875rem; color: rgba(247,245,240,0.6); transition: color 0.15s ease; }
.footer-col a:hover { color: #6EE7B7; }
.footer-contact li {
    display: flex; gap: 0.625rem; align-items: flex-start;
    font-size: 0.8125rem; color: rgba(247,245,240,0.55); line-height: 1.6;
}
.footer-contact svg { color: #6EE7B7; flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(247,245,240,0.55); }
.footer-contact a:hover { color: #6EE7B7; }
.footer-bottom {
    border-top: 1px solid rgba(247,245,240,0.08);
    padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(247,245,240,0.4); }
.footer-bottom a { color: rgba(247,245,240,0.4); transition: color 0.15s ease; }
.footer-bottom a:hover { color: #6EE7B7; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
