/* ===================================================================
   MYS Global Technologies — Shared Stylesheet
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  /* Brand colors */
  --navy-950: #0a1526;
  --navy-900: #0f1e33;
  --navy-800: #16283f;
  --navy-700: #1e3a5c;
  --green-600: #059669;
  --green-500: #10b981;
  --green-400: #22c55e;
  --green-100: #d7f5e9;
  --green-50: #eafaf3;

  /* Neutrals */
  --bg-light: #eef1f6;
  --bg-white: #ffffff;
  --border-color: #e3e8ef;
  --text-heading: #0f1e33;
  --text-body: #55647c;
  --text-muted: #7c8aa0;
  --text-on-dark: #cbd5e1;
  --text-on-dark-muted: #94a3b8;

  /* Effects */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-card: 0 1px 2px rgba(15, 30, 51, 0.06), 0 1px 3px rgba(15, 30, 51, 0.04);
  --shadow-lift: 0 20px 40px -12px rgba(15, 30, 51, 0.18);
  --gradient-hero: linear-gradient(120deg, var(--navy-900) 0%, #0e3a4a 45%, var(--green-500) 100%);
  --gradient-panel: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  --gradient-panel-green: linear-gradient(160deg, #0d3b34, var(--green-500));
  --container: 1240px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { position: relative; }
.section { padding: 5.5rem 0; }
.section-light { background: var(--bg-light); }
.section-white { background: var(--bg-white); }

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
}

/* ---------- Eyebrow / Section heading ---------- */
.eyebrow {
  display: block;
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; color: var(--text-body); }
.section-head.align-left { margin-left: 0; text-align: left; }

@media (max-width: 640px) {
  .section-head h2 { font-size: 1.65rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(16, 185, 129, 0.55);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 10px 24px -6px rgba(16, 185, 129, 0.65); }

.btn-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-dark:hover { background: rgba(255, 255, 255, 0.12); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 241, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 42px; width: 42px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .brand-main { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy-900); }
.brand-text .brand-sub { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--green-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-800);
  transition: all 0.2s ease;
}
.nav-links a:hover { color: var(--green-600); }
.nav-links a.active { background: var(--green-100); color: var(--green-600); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: all 0.2s ease; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lift);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    gap: 0.25rem;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { padding: 0.85rem 1rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { padding: 0.7rem 1.1rem; font-size: 0.85rem; }
}

/* ---------- Hero (gradient) ---------- */
.hero {
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 5.5rem 0 8rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25); }

.hero h1 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 800;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.hero p.lead {
  color: var(--text-on-dark);
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.75rem; flex-wrap: wrap; padding-top: 1.75rem; border-top: 1px solid rgba(255, 255, 255, 0.14); max-width: 620px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-on-dark); font-size: 0.9rem; font-weight: 500; }
.hero-trust svg { width: 18px; height: 18px; color: var(--green-400); flex-shrink: 0; }

/* Simple page hero (sub-pages) */
.page-hero { text-align: center; padding-bottom: 9rem; }
.page-hero h1 { margin: 0 auto 1.25rem; }
.page-hero p.lead { margin: 0 auto 2rem; }
.page-hero .hero-badge { margin-left: auto; margin-right: auto; display: inline-flex; }
.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin: 2.75rem auto 0;
}
.hero-stats .stat-tile {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
}
.hero-stats .stat-tile strong { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stats .stat-tile span { font-size: 0.85rem; color: var(--text-on-dark); }

@media (max-width: 900px) {
  .hero h1 { font-size: 2.3rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Split hero (home) */
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-visual { display: flex; align-items: center; justify-content: center; }
.orbit { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; }
.orbit-ring { position: absolute; inset: 0; border: 1px dashed rgba(255, 255, 255, 0.35); border-radius: 50%; }
.orbit-ring.r2 { inset: 15%; }
.orbit-diamond {
  position: absolute; inset: 20%;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  border-radius: 22%;
}
.orbit-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex; align-items: center; justify-content: center;
}
.orbit-core::after { content: ''; width: 30px; height: 30px; border-radius: 50%; background: #fff; }
.orbit-node {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.orbit-node::after { content: ''; position: absolute; inset: 8px; border-radius: 50%; background: #fff; }
.orbit-node.n1 { top: -15px; left: 50%; transform: translateX(-50%); }
.orbit-node.n2 { bottom: -15px; left: 50%; transform: translateX(-50%); }
.orbit-node.n3 { left: -15px; top: 50%; transform: translateY(-50%); }
.orbit-node.n4 { right: -15px; top: 50%; transform: translateY(-50%); }
.orbit-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.55); }
.orbit-dot.d1 { top: 18%; left: 18%; }
.orbit-dot.d2 { top: 18%; right: 18%; }
.orbit-dot.d3 { bottom: 18%; left: 18%; }
.orbit-dot.d4 { bottom: 18%; right: 18%; }
.orbit-dot.d5 { top: 3%; right: 32%; }
.orbit-dot.d6 { bottom: 3%; left: 32%; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.75rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card-dark {
  background: var(--gradient-panel);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.card-dark::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.card-dark h3, .card-dark p { color: #fff; }
.card-dark p { color: var(--text-on-dark); }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light);
  color: var(--navy-800);
  margin-bottom: 1.5rem;
}
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge.on-dark { background: rgba(255, 255, 255, 0.12); color: #fff; }
.icon-badge.accent { background: var(--green-500); color: #fff; }

.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; color: var(--text-body); margin-bottom: 1.25rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--green-600); font-weight: 600; font-size: 0.9rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.card:hover .link-arrow svg, .link-arrow:hover svg { transform: translateX(3px); }
.card-dark .link-arrow { color: var(--green-400); }

/* ---------- Stat cards (Why choose us) ---------- */
.stat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-card strong { display: block; font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--green-500); margin-bottom: 0.5rem; }
.stat-card span.stat-label { display: block; font-weight: 700; color: var(--text-heading); margin-bottom: 0.35rem; }
.stat-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.feature-row { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.75rem; }
.feature-row .check {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--gradient-panel-green); display: flex; align-items: center; justify-content: center;
}
.feature-row .check svg { width: 20px; height: 20px; color: #fff; }
.feature-row h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-row p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: 2.1rem; margin-bottom: 1rem; }
.cta-band p { color: var(--text-on-dark); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }

.cta-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
}
@media (max-width: 800px) { .cta-panel { grid-template-columns: 1fr; text-align: center; } }
.cta-panel-info { display: flex; flex-direction: column; gap: 0.9rem; }
.cta-panel-info span { display: flex; align-items: center; gap: 0.6rem; color: #fff; font-weight: 500; }
.cta-panel-info svg { width: 18px; height: 18px; color: var(--green-400); flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--text-on-dark); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand img { height: 34px; width: 34px; }
.footer-brand .brand-main { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; }
.footer-brand .brand-sub { color: var(--green-400); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem; }
.footer-col p { font-size: 0.9rem; color: var(--text-on-dark-muted); }
.footer-col h5 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--text-on-dark-muted); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--green-400); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--text-on-dark-muted); font-size: 0.9rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.85rem; color: var(--text-on-dark-muted);
}
.footer-bottom .legal-links { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Process steps ---------- */
.process-steps { display: flex; justify-content: space-between; gap: 1rem; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 34px; left: 8%; right: 8%; height: 1px;
  background: var(--border-color);
}
.process-step { position: relative; z-index: 1; flex: 1; text-align: center; padding: 0 0.75rem; }
.process-step .num {
  width: 68px; height: 68px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--green-600);
  margin: 0 auto 1.25rem;
}
.process-step h4 { font-size: 1.02rem; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 900px) {
  .process-steps { flex-direction: column; gap: 2rem; }
  .process-steps::before { display: none; }
}

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.service-row-panel {
  background: var(--gradient-panel);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 2.5rem 1.5rem; color: #fff;
}
.service-row-panel.green { background: var(--gradient-panel-green); }
.service-row-panel .icon-badge { margin: 0; background: rgba(255, 255, 255, 0.14); color: #fff; }
.service-row-panel .step-no { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; color: rgba(255, 255, 255, 0.75); }
.service-row-body { padding: 2.25rem 2.5rem; }
.service-row-body .tagline { color: var(--green-600); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.9rem; display: block; }
.service-row-body h3 { font-size: 1.5rem; margin-bottom: 0; }
.service-row-body > p { margin: 1rem 0 1.5rem; font-size: 0.98rem; }
.service-row-detail { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; }
.service-row-detail h5 { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-heading); margin-bottom: 1rem; }
.checklist { display: flex; flex-direction: column; gap: 0.65rem; }
.checklist li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--text-body); }
.checklist svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }
.use-case-box { background: var(--bg-light); border-radius: var(--radius-md); padding: 1.5rem; }
.use-case-box p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 1rem; }

@media (max-width: 800px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row-panel { flex-direction: row; padding: 1.5rem; }
  .service-row-detail { grid-template-columns: 1fr; }
}

/* ---------- Portfolio ---------- */
.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 3rem; }
.filter-tab {
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  font-weight: 600; font-size: 0.9rem;
  color: var(--navy-800);
  background: #fff;
  transition: all 0.2s ease;
}
.filter-tab:hover { border-color: var(--green-500); color: var(--green-600); }
.filter-tab.active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.portfolio-item { display: none; }
.portfolio-item.show { display: block; }

.eyebrow-label { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.4rem; display: block; }
.tag-pill {
  display: inline-flex; align-items: center; padding: 0.4rem 0.9rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14); color: #fff; font-weight: 600; font-size: 0.82rem; margin-bottom: 1rem;
}
.tech-stack { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tech-chip { padding: 0.4rem 0.85rem; border-radius: var(--radius-sm); background: var(--bg-light); color: var(--navy-800); font-size: 0.84rem; font-weight: 500; }

/* ---------- Values / Mission cards ---------- */
.value-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.85rem; }
.value-num {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--gradient-panel-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 1.25rem;
}
.value-card h4 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.mv-card { border-radius: var(--radius-lg); padding: 2.25rem; }
.mv-card.light { background: #fff; border: 1px solid var(--border-color); }
.mv-card.dark { background: var(--navy-900); color: #fff; }
.mv-card .icon-badge { margin-bottom: 1.25rem; }
.mv-card h4 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.mv-card.dark h4, .mv-card.dark p { color: #fff; }
.mv-card.dark p { color: var(--text-on-dark); }
.mv-card p { font-size: 0.95rem; }

.team-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; }
.team-card .icon-badge { margin: 0 auto 1.1rem; background: var(--gradient-panel-green); color: #fff; }
.team-card h4 { font-size: 1rem; font-weight: 600; }

/* ---------- Story / split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.story-visual {
  position: relative;
  background: var(--gradient-panel);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.story-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: #fff; border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lift);
  min-width: 170px;
}
.story-badge strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.5rem; color: var(--green-500); font-weight: 800; }
.story-badge span { font-size: 0.85rem; color: var(--text-muted); }
.split h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.split p { margin-bottom: 1.1rem; font-size: 0.98rem; }

/* ---------- Find us (map block) ---------- */
.map-block { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-color); max-width: 760px; margin: 0 auto; }
.map-visual {
  background: var(--gradient-hero);
  height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem;
  position: relative;
  overflow: hidden;
}
.map-visual::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px); background-size: 22px 22px; }
.map-pin-circle {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex; align-items: center; justify-content: center;
}
.map-pin-circle svg { width: 26px; height: 26px; color: #fff; }
.map-visual strong { position: relative; z-index: 1; color: #fff; font-family: 'Poppins', sans-serif; }
.map-details { background: #fff; padding: 1.75rem 2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; }
.map-details .item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--text-body); }
.map-details svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1.25rem;
}
.contact-info-card .icon-badge { margin: 0; flex-shrink: 0; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.contact-info-card p { font-size: 0.92rem; color: var(--text-body); margin: 0; }

.contact-form-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 2.5rem; }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.contact-form-card > p { font-size: 0.95rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-heading); margin-bottom: 0.5rem; }
.field label .req { color: var(--green-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  background: var(--bg-light); color: var(--text-heading); font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 1rem; font-size: 0.9rem; font-weight: 600; }
.form-status.success { color: var(--green-600); }
.form-status.error { color: #dc2626; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
