:root {
  --green-950: #12372a;
  --green-800: #1d5a40;
  --green-600: #2f7a55;
  --green-100: #eaf3ed;
  --cream: #f7f4ec;
  --gold: #c89e55;
  --text: #17211b;
  --muted: #657067;
  --white: #ffffff;
  --border: #dce4de;
  --shadow: 0 22px 55px rgba(18, 55, 42, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,228,222,.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; gap: 11px; align-items: center; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-950); color: white; font-weight: 800; font-size: 21px;
}
.brand strong, .brand small { display: block; line-height: 1.05; letter-spacing: .08em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 9px; }
.nav-links { display: flex; gap: 28px; align-items: center; font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--green-600); }
.nav-cta { background: var(--green-950); color: white !important; padding: 10px 17px; border-radius: 999px; }
.language-toggle { border: 1px solid var(--border); border-radius: 999px; background: white; padding: 9px 12px; font-weight: 800; cursor: pointer; }
.menu-button { display: none; border: 0; background: transparent; font-size: 26px; }

.hero { padding: 88px 0 92px; background: linear-gradient(135deg, #f8f6ef 0%, #eef6f0 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.eyebrow { color: var(--green-600); font-size: 12px; font-weight: 800; letter-spacing: .16em; margin: 0 0 18px; }
h1 { font-size: clamp(44px, 6vw, 72px); line-height: 1.04; letter-spacing: -.045em; margin: 0; max-width: 760px; }
h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.12; letter-spacing: -.035em; margin: 0; }
h3 { font-size: 22px; line-height: 1.25; margin: 14px 0 12px; }
.hero-text { max-width: 670px; color: var(--muted); font-size: 18px; margin: 26px 0 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; cursor: pointer; font: inherit; }
.button.primary { background: var(--green-950); color: white; }
.button.primary:hover { background: var(--green-800); }
.button.secondary { border-color: var(--green-950); color: var(--green-950); }
.button.full { width: 100%; border-radius: 12px; }
.trust-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 36px; color: var(--green-800); font-size: 13px; font-weight: 700; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--gold); }

.hero-card { background: white; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-card-image {
  min-height: 320px;
  background:
    linear-gradient(rgba(18,55,42,.12), rgba(18,55,42,.18)),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1200&q=85') center/cover;
}
.hero-card-content { padding: 26px 28px 30px; }
.hero-card-content p { margin: 0; text-transform: uppercase; font-size: 11px; font-weight: 800; color: var(--green-600); letter-spacing: .14em; }
.hero-card-content h2 { font-size: 28px; margin-top: 8px; }
.route { display: flex; align-items: center; gap: 12px; margin-top: 24px; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.route-line { height: 1px; flex: 1; background: var(--gold); }

.section { padding: 100px 0; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.body-copy { font-size: 18px; color: var(--muted); }
.body-copy p:first-child { margin-top: 4px; }
.section-soft { background: var(--cream); }
.section-heading { max-width: 760px; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 30px; min-height: 280px; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(18,55,42,.1); }
.card-number { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-weight: 800; }
.card p { color: var(--muted); }

.market-section { background: var(--green-950); color: white; }
.market-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.eyebrow.light { color: #a9d1b8; }
.market-list { border-top: 1px solid rgba(255,255,255,.2); }
.market-list div { display: grid; grid-template-columns: 180px 1fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.market-list span { color: rgba(255,255,255,.7); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.contact-grid > div > p { color: var(--muted); font-size: 17px; }
.contact-details { margin-top: 30px; }
.contact-details p { margin: 6px 0 !important; font-size: 15px !important; }
.contact-details a { color: var(--green-600); font-weight: 700; }
.contact-form { background: var(--cream); border-radius: 22px; padding: 30px; }
.contact-form label { display: block; margin-bottom: 17px; }
.contact-form label span { display: block; font-size: 13px; font-weight: 800; margin-bottom: 7px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--border); background: white; border-radius: 12px; padding: 13px 14px; font: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(47,122,85,.2); border-color: var(--green-600); }
.form-note { font-size: 11px; color: var(--muted); margin-bottom: 0; }

footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: 17px; }

@media (max-width: 850px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 70px; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--border); border-radius: 18px; padding: 20px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a, .language-toggle { text-align: center; }
  .hero { padding-top: 62px; }
  .hero-grid, .split-grid, .market-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 76px 0; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .hero-card-image { min-height: 240px; }
  .market-list div { grid-template-columns: 1fr; gap: 6px; }
  .footer-wrap { flex-direction: column; text-align: center; }
}
