/* ==========================================================================
   Natura Agrobrand — design tokens
   Palette reverse-engineered from the verified old-site CSS — kept exactly.
   ========================================================================== */
:root {
  --color-forest: #1F5134;
  --color-forest-light: #3A7854;
  --color-gold: #E2A336;
  --color-gold-light: #F2C45A;
  --color-earth: #705943;
  --color-cream: #FAF8F5;
  --color-sand: #EDE7DE;
  --color-text: #2A2622;
  --color-text-muted: #75695c;
  --color-body-copy: #463f38;
  --color-border: #EDE7DE;
  --color-error: #b3452f;
  --color-placeholder-border: #c9bfae;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 3px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  --container-max: 1200px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; }

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-forest);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: var(--color-forest); text-decoration: none; }
a:hover { color: var(--color-gold); }

a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-forest);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.wrap { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: 100px 0; }
.section-tight { padding: 80px 0; }
.section-sand { background: var(--color-sand); }
.section-forest { background: var(--color-forest); }
.section-forest h1, .section-forest h2, .section-forest h3, .section-forest h4 { color: var(--color-cream); }

@media (max-width: 780px) {
  .wrap { padding: 0 var(--space-5); }
  .section, .section-tight { padding: 56px 0; }
}

.row-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; gap: 20px; flex-wrap: wrap; }

/* ==========================================================================
   Type utilities
   ========================================================================== */
.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-gold);
}
.eyebrow-light { color: var(--color-gold-light); }

.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-gold); color: var(--color-text);
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 3px;
}
.status-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-text); flex-shrink: 0; }
.status-badge-hero { margin-top: 20px; }
.grid-3-spaced { margin-top: 44px; }
.cap { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }

.section-intro { max-width: 560px; }
.section-intro.center { max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }
.section-intro h2 { font-size: 32px; margin-top: 12px; }
.section-intro p { font-size: 14.5px; color: var(--color-text-muted); margin-top: 14px; line-height: 1.6; }
@media (max-width: 780px) { .section-intro h2 { font-size: 23px; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.01em; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--color-forest); color: var(--color-cream); }
.btn-primary:hover { background: var(--color-forest-light); color: var(--color-cream); }
.btn-gold { background: var(--color-gold); color: var(--color-text); }
.btn-gold:hover { background: var(--color-gold-light); color: var(--color-text); }
.btn-outline-dark { border-color: var(--color-forest); color: var(--color-forest); background: transparent; }
.btn-outline-dark:hover { background: var(--color-forest); color: var(--color-cream); }
.btn-outline-light { border-color: var(--color-cream); color: var(--color-cream); background: transparent; }
.btn-outline-light:hover { background: var(--color-cream); color: var(--color-forest); }
.btn-ghost { padding: 4px 0; color: var(--color-forest); text-decoration: underline; text-decoration-color: var(--color-gold); text-underline-offset: 4px; font-weight: 600; font-size: 13.5px; }
.btn-ghost:hover { color: var(--color-gold); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card { background: #FFFFFF; border: 1px solid var(--color-border); border-radius: var(--radius); }

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav { position: relative; z-index: 100; background: var(--color-cream); border-bottom: 1px solid var(--color-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px var(--space-6); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand:hover { color: var(--color-forest); }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: var(--color-forest); letter-spacing: 0.01em; }
.brand-sub { font-family: var(--font-heading); font-weight: 700; font-size: 9.5px; letter-spacing: 0.16em; color: var(--color-earth); }

.desktop-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.desktop-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.desktop-nav a { font-size: 13.5px; font-weight: 500; color: var(--color-text); }
.desktop-nav a:hover { color: var(--color-forest); }
.desktop-nav a[aria-current='page'] { color: var(--color-forest); font-weight: 700; }
.nav-cta { padding: 11px 20px; font-size: 12.5px; }

.menu-toggle { display: none; background: none; border: none; padding: 6px; cursor: pointer; }
.mobile-menu { background: var(--color-forest); padding: var(--space-5); }
.mobile-menu ul { list-style: none; margin: 0 0 var(--space-4); padding: 0; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu a { color: var(--color-cream); font-size: 14px; }
.mobile-menu a[aria-current='page'] { color: var(--color-gold-light); font-weight: 700; }
.mobile-cta { width: 100%; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* Language switcher (drives the Google Translate widget, see js/main.js) */
.lang-switch { position: relative; margin-left: 20px; }
@media (max-width: 1120px) { .lang-switch { margin-left: auto; margin-right: 8px; } }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--color-placeholder-border); border-radius: var(--radius);
  padding: 8px 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--color-forest);
}
.lang-btn:hover, .lang-btn[aria-expanded='true'] { border-color: var(--color-forest); }
.lang-menu {
  list-style: none; margin: 0; padding: 6px 0;
  position: absolute; right: 0; top: calc(100% + 6px); z-index: 1; min-width: 150px;
  background: #FFFFFF; border: 1px solid var(--color-border); border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(42, 38, 34, 0.14);
}
.lang-menu button {
  display: block; width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 9px 16px; font-family: var(--font-body); font-size: 13.5px; color: var(--color-text);
}
.lang-menu button:hover { background: var(--color-sand); }
.lang-menu button[aria-current='true'] { color: var(--color-forest); font-weight: 700; }

/* Hide Google Translate's own banner/tooltip so only our switcher shows */
body { top: 0 !important; }
body > .skiptranslate, iframe.skiptranslate, .goog-te-banner-frame, .goog-te-balloon-frame, #goog-gt-tt { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ==========================================================================
   Global Markets hero (image + scrim, same pattern as the homepage hero)
   ========================================================================== */
.market-hero { position: relative; padding: 96px 0 88px; background: var(--color-forest); overflow: hidden; }
.market-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.market-hero-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(31,81,52,.93) 0%, rgba(31,81,52,.65) 55%, rgba(31,81,52,.35) 100%); }
.market-hero-content { position: relative; }
.market-hero-content h1 { color: var(--color-cream); font-size: 42px; margin-top: 12px; max-width: 720px; }
.market-hero-content p { color: var(--color-sand); font-size: 15.5px; line-height: 1.65; margin-top: 16px; max-width: 620px; }
@media (max-width: 780px) {
  .market-hero { padding: 48px 0 40px; }
  .market-hero-content h1 { font-size: 27px; }
}

/* Country flag chips */
.flag-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.flag-chip { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--color-body-copy); }
.flag-chip img { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; border: 1px solid var(--color-border); flex-shrink: 0; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { background: var(--color-forest); padding: 72px 0 64px; }
.page-hero h1 { color: var(--color-cream); font-size: 42px; margin-top: 12px; max-width: 720px; }
.page-hero p { color: var(--color-sand); font-size: 15.5px; line-height: 1.65; margin-top: 16px; max-width: 620px; }
@media (max-width: 780px) {
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: 27px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-forest); padding: var(--space-8) 0 var(--space-5); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(250,248,245,0.15); }
.footer-brand .brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 34px; height: 34px; object-fit: contain; }
.footer-brand .brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 14.5px; color: var(--color-cream); }
.footer-brand p { color: #c9d6ca; font-size: 13px; line-height: 1.6; margin-top: 14px; max-width: 240px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-heading { color: var(--color-gold-light); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a, .footer-col span { color: #e7ede8; font-size: 13.5px; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 7px; }
.footer-bottom { padding-top: 22px; color: #9fb3a3; font-size: 12px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Forms
   ========================================================================== */
.field-label { display: block; font-size: 13px; font-weight: 600; color: var(--color-text); margin-bottom: 8px; }
.field-input, .field-select, .field-textarea {
  width: 100%; font-family: var(--font-body); font-size: 14.5px; color: var(--color-text);
  background: #FFFFFF; border: 1.5px solid var(--color-border); border-radius: var(--radius); padding: 13px 14px;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none; border-color: var(--color-forest); box-shadow: 0 0 0 3px rgba(31,81,52,0.12);
}
.field-textarea { resize: vertical; min-height: 120px; }

/* ==========================================================================
   Homepage
   ========================================================================== */
.hero { position: relative; min-height: 620px; background: var(--color-forest); overflow: hidden; display: flex; align-items: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,81,52,.92) 0%, rgba(31,81,52,.55) 48%, rgba(31,81,52,.25) 100%); }
.hero-content { position: relative; display: flex; flex-direction: column; gap: 26px; max-width: 680px; padding-top: 64px; padding-bottom: 64px; }
.hero-content h1 { color: var(--color-cream); font-size: 52px; line-height: 1.08; font-weight: 800; }
.hero-content p { color: var(--color-sand); font-size: 17px; line-height: 1.6; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions-centered { justify-content: center; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-copy { display: flex; flex-direction: column; gap: 20px; }
.intro-copy p { font-size: 15.5px; line-height: 1.75; color: var(--color-body-copy); }

.product-value-addition { margin-top: 64px; padding-top: 56px; border-top: 1px solid var(--color-border); }
.product-value-addition h3 { font-size: 24px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.products-grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.team-preview-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 900px) { .team-preview-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .team-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .team-preview-grid { grid-template-columns: 1fr; } }

/* product card */
.product-card { background: #FFFFFF; border: 1px solid var(--color-border); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; }
.product-card img.product-photo { width: 100%; height: 170px; object-fit: cover; }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.product-body h3 { font-size: 17px; }
.product-body p { font-size: 13.5px; color: var(--color-body-copy); line-height: 1.5; }

.services-grid { margin-top: 44px; }
.service-item { display: flex; flex-direction: column; gap: 14px; }
.service-item h4 { font-size: 15.5px; }
.service-item p { font-size: 13.5px; color: var(--color-body-copy); line-height: 1.55; }
.why-section .service-item p { color: var(--color-sand); }

.chain { display: flex; align-items: flex-start; justify-content: space-between; position: relative; margin-top: 56px; flex-wrap: wrap; gap: 24px; }
.chain-line { position: absolute; top: 28px; left: 60px; right: 60px; height: 1.5px; background: var(--color-placeholder-border); }
.why-section .chain-line { background: rgba(250, 248, 245, 0.4); }
.chain-step { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 150px; position: relative; }
.chain-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--color-cream); border: 1.5px solid var(--color-forest); display: flex; align-items: center; justify-content: center; }
.chain-icon.last { background: var(--color-forest); border-color: var(--color-forest); }
.chain-label { font-size: 13.5px; font-weight: 700; text-align: center; }
.why-section .chain-label { color: var(--color-cream); }

.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-sand); margin-top: 44px; border: 1px solid var(--color-sand); }
.market-col { background: var(--color-cream); padding: 36px; }
.market-col h4 { font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-earth); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--color-text-muted); border: 1px solid var(--color-border); padding: 6px 12px; border-radius: 2px; }
.chip-flag { width: 16px; height: 12px; object-fit: cover; border-radius: 1px; flex-shrink: 0; }

.why-section { position: relative; overflow: hidden; }
.why-section-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.why-section-scrim { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(31,81,52,.95) 0%, rgba(31,81,52,.88) 60%, rgba(31,81,52,.7) 100%); }
.why-section-content { position: relative; }
.why-intro { max-width: 560px; margin-bottom: 48px; }
.why-intro h2 { margin-top: 12px; font-size: 32px; }
.why-item { display: flex; flex-direction: column; gap: 12px; }
.why-item div { font-size: 14.5px; font-weight: 700; color: var(--color-cream); }

.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 44px; text-align: center; }
.stat-block { flex: 1 1 200px; max-width: 240px; padding: 28px 16px; }
.stat-value { font-family: var(--font-heading); font-weight: 800; font-size: 30px; color: var(--color-forest); }
.stat-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; margin-top: 8px; }
.impact-note { text-align: center; margin-top: 20px; }

.final-cta { position: relative; padding: 96px 0; background: #2A2622; overflow: hidden; }
.final-cta-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.final-cta-content { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.final-cta-content h2 { font-size: 34px; color: var(--color-cream); line-height: 1.25; }
.final-cta-content p { color: var(--color-sand); font-size: 15.5px; margin-top: 18px; }
.final-cta-content .btn { margin-top: 22px; }

/* team card */
.team-card { background: #FFFFFF; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.team-card img {
  width: 100%; height: 220px; object-fit: cover; object-position: top;
  filter: sepia(7%) saturate(1.05) contrast(1.03);
  box-shadow: inset 0 0 44px rgba(42, 38, 34, 0.16);
}
/* David's source photo is already a tight face-fill crop with no extra
   headroom to crop into — contain (not cover) keeps his face at a scale
   comparable to the other four instead of blowing it up further. */
.team-photo-contain {
  object-fit: contain !important;
  background: var(--color-sand);
}
.team-body { padding: 16px; }
.team-name { font-weight: 700; font-size: 14.5px; }
.team-title { margin-top: 4px; }

.cta-block { text-align: center; }
.cta-block h2 { color: var(--color-cream); font-size: 28px; max-width: 620px; margin: 0 auto; }
.cta-block p { color: var(--color-sand); font-size: 14.5px; margin: 14px auto 26px; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .markets-grid { grid-template-columns: 1fr; }
  .chain { flex-direction: column; align-items: flex-start; gap: 22px; }
  .chain-line { display: none; }
  .chain-step { flex-direction: row; width: auto; }
}
@media (max-width: 560px) {
  .hero-content h1 { font-size: 30px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-block { flex-basis: 42%; }
  .final-cta-content h2 { font-size: 23px; }
}

/* ==========================================================================
   About page
   ========================================================================== */
.story-grid { display: grid; grid-template-columns: 320px 1fr; gap: 60px; }
.story-grid-with-photo { grid-template-columns: 280px 1fr 280px; align-items: start; }
.story-photo { border-radius: var(--radius); width: 100%; height: 260px; object-fit: cover; }
.ethanol-status-photo { margin-top: 24px; height: 220px; }
.story-copy { display: flex; flex-direction: column; gap: 18px; }
.story-copy p { font-size: 15.5px; line-height: 1.75; color: var(--color-body-copy); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { background: #FFFFFF; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 32px; }
.mv-card h3 { font-size: 22px; }
.mv-card p { font-size: 15px; line-height: 1.65; color: var(--color-body-copy); margin-top: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; margin-top: 44px; }
.value-item { display: flex; flex-direction: column; gap: 12px; text-align: center; align-items: center; }
.value-item h4 { font-size: 15px; }
.value-item p { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }
@media (max-width: 900px) { .story-grid, .story-grid-with-photo { grid-template-columns: 1fr; gap: 24px; } .story-photo { height: 220px; } .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mv-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Products page
   ========================================================================== */
.product-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--color-border); }
.product-row:first-child { padding-top: 0; }
.product-row:last-child { border-bottom: none; }
.product-row.reverse .product-media { order: 2; }
.product-row.reverse .product-info { order: 1; }
.product-media img { border-radius: var(--radius); width: 100%; height: 340px; object-fit: cover; }
.product-info h2 { font-size: 30px; }
.product-desc { font-size: 15.5px; line-height: 1.7; color: var(--color-body-copy); margin-top: 16px; }
.product-details { margin: 20px 0 28px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.product-details li { font-size: 13.5px; color: var(--color-text-muted); padding-left: 18px; position: relative; }
.product-details li::before { content: '—'; position: absolute; left: 0; color: var(--color-gold); }
.product-crosslink { margin-top: 14px; }
@media (max-width: 860px) {
  .product-row, .product-row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .product-row.reverse .product-media, .product-row.reverse .product-info { order: initial; }
}

/* ==========================================================================
   Services page
   ========================================================================== */
.services-list { display: flex; flex-direction: column; }
.service-row { display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding: 40px 0; border-bottom: 1px solid var(--color-border); }
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; }
.service-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--color-sand); display: flex; align-items: center; justify-content: center; }
.service-content h2 { font-size: 22px; }
.service-desc { font-size: 15px; line-height: 1.7; color: var(--color-body-copy); margin-top: 12px; max-width: 640px; }
.service-who { font-size: 13.5px; color: var(--color-text-muted); margin-top: 12px; }
@media (max-width: 600px) { .service-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   How We Work page
   ========================================================================== */
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 28px; }
.step-marker { display: flex; flex-direction: column; align-items: center; }
.step-icon { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; background: var(--color-cream); border: 1.5px solid var(--color-forest); display: flex; align-items: center; justify-content: center; }
.step-icon.last { background: var(--color-forest); }
.step-line { width: 1.5px; flex: 1; background: var(--color-placeholder-border); margin: 8px 0; min-height: 40px; }
.step-body { padding-bottom: 44px; }
.step-body h2 { font-size: 22px; margin-top: 6px; }
.step-body p { font-size: 14.5px; line-height: 1.65; color: var(--color-body-copy); margin-top: 10px; max-width: 560px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.two-col h3 { font-size: 18px; }
.two-col p { font-size: 14px; line-height: 1.6; color: var(--color-text-muted); margin-top: 12px; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

/* ==========================================================================
   Global Markets page
   ========================================================================== */
.regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.region-card { background: #FFFFFF; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 32px; }
.region-card h2 { font-size: 20px; letter-spacing: 0.02em; }
.region-card ul { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.region-card li { font-size: 14.5px; color: var(--color-body-copy); padding-left: 16px; position: relative; }
.region-card li::before { content: '—'; position: absolute; left: 0; color: var(--color-gold); }
@media (max-width: 780px) { .regions { grid-template-columns: 1fr; } }

/* ==========================================================================
   Team page
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 4px; }
.info-item a, .info-item span { font-size: 14.5px; color: var(--color-text); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.submit-btn { align-self: flex-start; margin-top: 8px; }
.form-status { margin-top: -8px; }
.map-embed { border-radius: var(--radius); overflow: hidden; height: 380px; border: 1px solid var(--color-border); }
.map-embed iframe { border: 0; display: block; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 560px) { .map-embed { height: 280px; } }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  z-index: 999;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }
@media (max-width: 560px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
