/* ===== DESIGN SYSTEM ===== */
:root {
  --green-deep:  #001a14;
  --green:       #004b3c;
  --green-mid:   #0f5a4b;
  --green-light: #69965a;
  --accent:      #5ab04a;
  --accent-dark: #3d8a30;
  --bg:          #F3F6F4;
  --white:       #FFFFFF;
  --ink:         #0d1a16;
  --ink-soft:    #3a5248;
  --muted:       #6b8c80;
  --border:      #d8e5df;
  --border-dark: #b0cbbf;
  --radius:      3px;
  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
  --shadow-sm:   0 1px 4px rgba(0,26,20,0.06);
  --shadow:      0 4px 20px rgba(0,26,20,0.08);
  --shadow-lg:   0 12px 40px rgba(0,26,20,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 90px; background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 5%;
  box-shadow: 0 1px 8px rgba(0,26,20,0.06);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 72px; width: auto; }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  margin-left: auto; align-items: center;
}
.nav-links a { font-family: var(--font-head); font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); border-bottom: 2px solid var(--green); padding-bottom: 2px; }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 0.5rem 1.25rem; border-radius: var(--radius);
  font-weight: 600 !important; font-size: 0.875rem !important;
  transition: background 0.2s !important; border-bottom: none !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 11px; margin-left: auto; width: 44px; height: 44px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink-soft); margin: 5px 0; transition: 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 90px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 1.25rem 5%; gap: 0.25rem; z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--ink-soft); padding: 0.85rem 0; display: flex; align-items: center; min-height: 44px; }
.mobile-menu a.nav-cta { display: flex; justify-content: center; padding: 0.75rem 1.5rem; margin-top: 0.5rem; color: var(--white) !important; }

/* ===== BUTTONS ===== */
.btn-green { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--green); color: var(--white); padding: 0.75rem 1.75rem; border-radius: var(--radius); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.btn-green:hover { background: var(--green-mid); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; border: 1.5px solid var(--border-dark); color: var(--ink-soft); padding: 0.75rem 1.75rem; border-radius: var(--radius); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--white); }
.btn-white { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); color: var(--green); border: 1.5px solid var(--border-dark); padding: 0.75rem 1.75rem; border-radius: var(--radius); font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; transition: background 0.2s, border-color 0.2s; }
.btn-white:hover { background: #eef6f1; border-color: var(--green); }

/* ===== TYPOGRAPHY ===== */
.eyebrow { display: inline-block; font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; }
.section-lead { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; max-width: 560px; margin-top: 0.75rem; }
.section-lead-white { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; max-width: 560px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding-top: 90px;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,75,60,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,75,60,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  background: radial-gradient(circle at 100% 0%, rgba(90,176,74,0.07) 0%, transparent 55%);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5% 6rem 8%; position: relative; z-index: 1;
}
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; padding: 4rem 8% 4rem 5%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(90,176,74,0.1); border: 1px solid rgba(90,176,74,0.3);
  color: var(--green); padding: 0.375rem 0.875rem;
  border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 2rem; width: fit-content;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700; color: var(--ink); line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--green); }
.hero-sub { font-size: 1.0625rem; color: var(--ink-soft); line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-branches {
  display: flex; gap: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-branch { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-branch-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.hero-branch-val { font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--ink); }

.hero-visual {
  width: 100%; max-width: 420px;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow); border-radius: 8px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: 4px; overflow: hidden; }
.hero-stat { background: var(--bg); padding: 1.5rem; text-align: center; }
.hero-stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; display: block; }
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.4rem; display: block; }
.hero-service-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hero-service-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg); border: 1px solid var(--border);
  padding: 0.75rem 1rem; border-radius: 4px;
}
.hero-service-icon { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero-service-text { font-size: 0.875rem; color: var(--ink-soft); font-weight: 500; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--green); letter-spacing: -0.03em; line-height: 1; }
.stat-num span { color: var(--green-light); }
.stat-label { font-size: 0.8125rem; color: var(--muted); margin-top: 0.4rem; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 6rem 5%; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; gap: 2rem; }
.services-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; }
.service-card { background: var(--white); padding: 2.5rem 2.25rem; transition: background 0.2s; }
.service-card:hover { background: #f0f8f3; }
.service-card.featured { background: var(--green); }
.service-card.featured:hover { background: var(--green-mid); }
.service-icon {
  width: 44px; height: 44px; border-radius: 6px;
  background: rgba(0,75,60,0.07); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card.featured .service-icon { background: rgba(255,255,255,0.12); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--green); }
.service-card.featured .service-icon svg { stroke: var(--white); }
.service-title { font-family: var(--font-head); font-size: 1.0625rem; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; }
.service-card.featured .service-title { color: var(--white); }
.service-desc { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.7); }
.service-features { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.service-feature { font-size: 0.8125rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.service-feature::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
.service-card.featured .service-feature { color: rgba(255,255,255,0.55); }
.service-card.featured .service-feature::before { background: rgba(255,255,255,0.4); }

/* ===== WHY SECTION ===== */
.why-section {
  padding: 6rem 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.why-left .section-lead-white { margin-top: 1rem; margin-bottom: 2rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: 4px; overflow: hidden; }
.why-item { background: var(--white); padding: 1.75rem 1.5rem; }
.why-item-title { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.why-item-desc { font-size: 0.8375rem; color: var(--muted); line-height: 1.6; }
.why-right { display: flex; flex-direction: column; gap: 1rem; }
.branch-card {
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  border-radius: 6px; padding: 2rem;
}
.branch-card-flag { font-size: 1.5rem; margin-bottom: 0.75rem; }
.branch-card-country { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.375rem; }
.branch-card-phone { font-size: 0.875rem; color: var(--green); font-weight: 600; margin-bottom: 0.25rem; }
.branch-card-desc { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }

/* ===== PROCESS ===== */
.process-section { padding: 6rem 5%; background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin-top: 3.5rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.process-step { background: var(--white); padding: 2.25rem 2rem; position: relative; transition: background 0.2s; }
.process-step:hover { background: #f0f8f3; }
.process-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--border-dark); letter-spacing: -0.04em; line-height: 1; margin-bottom: 1rem; transition: color 0.2s; }
.process-step:hover .process-num { color: var(--green-light); }
.process-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.process-desc { font-size: 0.8375rem; color: var(--ink-soft); line-height: 1.65; }

/* ===== CTA ===== */
.cta-section {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 4.5rem 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
}
.cta-section h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.cta-section p { font-size: 0.9375rem; color: var(--ink-soft); margin-top: 0.5rem; max-width: 500px; }

/* ===== FOOTER ===== */
footer { background: var(--green-deep); border-top: 3px solid var(--green); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 64px; width: auto; margin-bottom: 1rem; background: #fff; border-radius: 6px; padding: 8px 12px; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.footer-contact-row a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--accent); }
.footer-col-title { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.8125rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--accent); }

/* ===== CONTACT FORM ===== */
.contact-section { padding: 6rem 5%; display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: start; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 8px; padding: 2.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border-dark); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; justify-content: center; border: none; cursor: pointer; }
.form-banner { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; margin-bottom: 1.5rem; display: none; }
.form-banner.show { display: block; }
.form-banner.success { background: rgba(90,176,74,0.12); color: var(--green); border: 1px solid rgba(90,176,74,0.3); }
.form-banner.error { background: rgba(200,60,60,0.08); color: #a02020; border: 1px solid rgba(200,60,60,0.25); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); border-radius: 6px; padding: 1.75rem; }
.contact-info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.contact-info-value { font-family: var(--font-head); font-size: 1.0625rem; font-weight: 700; color: var(--ink); }
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--green); }

/* ===== FAQ ===== */
.faq-section { padding: 6rem 5%; background: var(--white); }
.faq-list { max-width: 760px; margin-top: 3rem; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--ink);
}
.faq-question-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-question-icon::before, .faq-question-icon::after { content: ''; position: absolute; background: var(--green); border-radius: 1px; transition: transform 0.25s; }
.faq-question-icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.faq-question-icon::after { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq-item.open .faq-question-icon::after { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; padding-bottom: 1.5rem; max-width: 640px; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .why-section { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}
@media (max-width: 768px) {
  .section-header { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-branches { flex-direction: column; gap: 1rem; }
  .contact-form-card { padding: 1.75rem; }
}
