/* ============================================================
   benXmart — Shared Stylesheet
   Stand: Mai 2026
   ============================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Variables ---- */
:root {
  --navy:        #0D1B2A;
  --teal:        #00B4A6;
  --amber:       #F5A623;
  --warm-white:  #F7F5F2;
  --light-slate: #E8EDF2;
  --text:        #1C2B3A;
  --text-muted:  #5a6a7a;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 1px 6px rgba(13,27,42,0.06);
  --shadow-md:   0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg:   0 8px 40px rgba(13,27,42,0.15);
  --max-w:       960px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--warm-white); color: var(--text); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.logo {
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav a.active { color: var(--teal); }
.cta-btn {
  background: var(--teal) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  margin-left: 8px;
  transition: background 0.15s !important;
}
.cta-btn:hover { background: #009d90 !important; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.lang-switch a {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s;
  margin: 0 !important;
  background: none !important;
}
.lang-switch a.active { color: white; }
.lang-switch a:hover { color: white !important; background: none !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 8px;
  line-height: 1;
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 100px 40px 92px;
  text-align: center;
}
.hero .label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: white;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero .lead {
  color: rgba(255,255,255,0.7);
  font-size: 19px;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero .lead strong { color: white; font-weight: 600; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 72px 40px 64px;
  text-align: center;
}
.page-hero .label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 {
  color: white;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: #009d90; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid var(--navy);
  transition: all 0.15s;
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-teal-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid var(--teal);
  transition: all 0.15s;
}
.btn-teal-outline:hover { background: var(--teal); color: white; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-xs { padding: 40px 0; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section > .container > h2,
.section-inner h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.bg-navy { background: var(--navy); }
.bg-navy .section-label { color: var(--teal); }
.bg-navy h2 { color: white !important; }
.bg-navy .section-lead { color: rgba(255,255,255,0.65) !important; }
.bg-navy p { color: rgba(255,255,255,0.6); }
.bg-slate { background: var(--light-slate); }
.text-center { text-align: center; }
.divider { border: none; border-top: 1px solid var(--light-slate); margin: 0; }

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--navy);
  padding: 40px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-size: 42px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: white;
  border: 1px solid var(--light-slate);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Service / category cards */
.svc-card { text-decoration: none; display: flex; flex-direction: column; }
.svc-card .card-hd { padding: 28px 28px 22px; min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; }
.svc-card .cat-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  opacity: 0.85;
}
.svc-card .card-title { font-size: 22px; font-weight: 700; color: white; letter-spacing: -0.3px; }
.svc-card .card-body { padding: 20px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card .card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.svc-card .card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.svc-card .card-cta::after { content: '→'; }
.cat-a { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); }
.cat-b { background: linear-gradient(135deg, #0a2a1a 0%, #0d4a2a 100%); }
.cat-c { background: linear-gradient(135deg, #1a0a2a 0%, #3a1a5c 100%); }

/* Reference / project cards */
.ref-card { padding: 28px; }
.ref-card .ref-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.ref-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ref-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.ref-card .result {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  padding-top: 8px;
  border-top: 1px solid var(--light-slate);
}

/* Product cards (Category C) */
.product-card { border-top: 3px solid var(--teal); }
.product-card .pd { padding: 28px; }
.product-card .prod-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-card .prod-sub { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: 16px; }
.product-card .prod-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.product-card .prod-list { padding-left: 18px; margin-bottom: 20px; list-style: disc; }
.product-card .prod-list li { font-size: 14px; line-height: 1.8; color: var(--text-muted); }
.badge-soon {
  display: inline-flex;
  align-items: center;
  background: rgba(245,166,35,0.15);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: var(--light-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 24px;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin-bottom: 16px; }
.about-text p strong { color: var(--text); }

/* ============================================================
   FEATURES / BENEFITS ROWS
   ============================================================ */
.features { display: flex; flex-direction: column; gap: 0; }
.feature-row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--light-slate);
  align-items: flex-start;
}
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,166,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.feature-text h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.feature-text p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-slate);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; }
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-slate);
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--light-slate);
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--warm-white);
  box-shadow: 0 0 0 3px rgba(0,180,166,0.2);
}
.tl-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.tl-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.tl-org { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
.tl-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.tl-desc ul { padding-left: 18px; list-style: disc; margin-top: 6px; }
.tl-desc li { margin-bottom: 4px; }

/* ============================================================
   TAGS
   ============================================================ */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; }
.tag {
  background: var(--light-slate);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.tag-teal { background: rgba(0,180,166,0.12); color: var(--teal); }

/* ============================================================
   HIGHLIGHT BOXES
   ============================================================ */
.insight-box {
  background: rgba(0,180,166,0.07);
  border: 1px solid rgba(0,180,166,0.2);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin: 24px 0;
}
.insight-box blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
}
.insight-box cite {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 10px;
  font-style: normal;
}
.info-box {
  background: white;
  border: 1px solid var(--light-slate);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.info-box h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-box p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
}
.cta-block h2 { color: white; font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.6); font-size: 17px; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-block .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(0,180,166,0.3);
  transition: all 0.15s;
}
.cta-email:hover { background: rgba(0,180,166,0.1); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: white;
  border: 1px solid var(--light-slate);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-slate);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
}
.form-check label { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.btn-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-submit:hover { background: #009d90; }
.contact-info { padding-top: 8px; }
.contact-info h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-slate);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .ic {
  width: 36px;
  height: 36px;
  background: rgba(0,180,166,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail .cd-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-detail .cd-val { font-size: 14px; font-weight: 600; color: var(--navy); }
.contact-detail a { color: var(--teal); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); padding: 40px 40px 24px; }
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  color: white;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
}
.footer-tagline { color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.footer-nav-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-nav-col a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: rgba(255,255,255,0.25); font-size: 12px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 720px; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--light-slate); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal-content li { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--teal); text-decoration: underline; }
.legal-note {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ============================================================
   HERO SPLIT LAYOUT (Homepage)
   ============================================================ */
.hero-split-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-split-inner .hero-text { flex: 1; text-align: left; }
.hero-split-inner .hero-text .label { text-align: left; }
.hero-split-inner .hero-text .lead { max-width: none; margin: 0 0 36px; }
.hero-split-inner .hero-text .hero-cta { justify-content: flex-start; }
.hero-photo-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero-photo-wrap {
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 400px) {
  .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
  .hero .lead { font-size: 15px; }

  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 15px; }

  .stats-strip { padding: 32px 16px; }
  .stat .num { font-size: 32px; }
  .stat .lbl { font-size: 12px; }

  .section-lead { font-size: 16px; }

  .contact-form { padding: 24px 20px; }

  .cta-block { padding: 32px 16px; }
  .cta-block h2 { font-size: 22px; }

  .btn-primary, .btn-secondary { font-size: 15px; padding: 12px 20px; }

  .cta-email { font-size: 14px; padding: 12px 16px; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; position: relative; }
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 100;
  }
  .nav.nav-open { display: flex; }
  .nav a { padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 0; font-size: 15px; }
  .nav a:last-child { border-bottom: none; }
  .cta-btn { margin-left: 0 !important; margin-top: 8px; text-align: center; justify-content: center; }
  .lang-switch { margin-left: 0; padding-left: 0; border-left: none; padding-top: 12px; }
  .nav-toggle { display: flex; }

  .hero { padding: 64px 20px 56px; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .hero .lead { font-size: 16px; }

  .hero-split-inner { flex-direction: column-reverse; gap: 40px; }
  .hero-split-inner .hero-text { text-align: center; }
  .hero-split-inner .hero-text .label { text-align: center; }
  .hero-split-inner .hero-text .hero-cta { justify-content: center; }
  .hero-photo-col { width: 100%; align-items: center; }
  .hero-photo-wrap { width: 100%; max-width: 280px; aspect-ratio: 3/4; }

  .page-hero { padding: 56px 20px 48px; }
  .page-hero h1 { font-size: 32px; }

  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  .grid-3, .grid-2, .grid-4, .section-grid { grid-template-columns: 1fr; }
  .section-grid { gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-photo { max-height: 380px; aspect-ratio: 4/3; }
  .about-photo img { object-position: top; }

  .cta-block { padding: 40px 24px; }
  .cta-block h2 { font-size: 26px; }

  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
  .footer-nav { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .site-footer { padding: 32px 20px 20px; }
}
