/* ── MMG Global Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── SVG ICON SIZING ── */
.card-icon svg,
.why-card-icon svg,
.pillar-icon svg,
.ss-icon svg,
.ind-icon svg,
.perk-icon svg,
.role-card-icon svg,
.team-card-icon svg,
.contact-item-icon svg,
.value-icon svg,
.role-icon svg,
.breakdown-bar-left svg,
.emergency-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #e07b00;
}
.card-icon svg, .why-card-icon svg, .perk-icon svg, .role-card-icon svg,
.contact-item-icon svg, .value-icon svg { color: #e07b00; }
.role-icon svg { color: rgba(224,123,0,0.9); width: 28px; height: 28px; }
.breakdown-bar-left svg { color: white; width: 26px; height: 26px; }
/* Icons on dark backgrounds */
.dark-section .card-icon svg,
.ind-icon svg { color: #f59e0b; }

:root {
  --red: #e07b00;
  --red-dark: #b85f00;
  --dark: #0d1117;
  --mid: #1a1f2e;
  --grey-dark: #374151;
  --grey: #6b7280;
  --grey-light: #9ca3af;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Barlow', sans-serif; letter-spacing: -0.02em; }

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.label--light { color: rgba(255,255,255,0.5); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 580px;
  line-height: 1.75;
}
.section-sub--light { color: rgba(255,255,255,0.55); }

/* ── LAYOUT ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 24px; }
.section-head { margin-bottom: 56px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--dark); }
.btn-white { background: white; color: var(--red); }
.btn-white:hover { opacity: 0.92; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 72px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img { height: 42px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: white; background: rgba(255,255,255,0.08); }
.nav-links .nav-cta {
  background: var(--red);
  color: white !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--red-dark); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(13,17,23,0.99);
  padding: 16px 24px 24px;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-direction: column;
  gap: 4px;
}
.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:last-child { border: none; }
.nav-mobile.open { display: flex; }

/* ── PAGE HERO (full-bleed photo) ── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-img,
.page-hero > img,
.hero-bg > img,
.photo-split-img > img,
.photo-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .label { color: rgba(255,255,255,0.6); }
.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  max-width: 700px;
}
.page-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-top: 12px;
  max-width: 560px;
}

/* ── CONTACT BAR ── */
.breakdown-bar {
  background: #1a1f2e;
  border-left: 4px solid var(--red);
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breakdown-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.breakdown-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.breakdown-bar-left span { font-size: 26px; }
.breakdown-bar-left strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: white;
  font-family: 'Barlow', sans-serif;
}
.breakdown-bar-left p { color: rgba(255,255,255,0.55); font-size: 14px; }
.breakdown-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.breakdown-phone {
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.01em;
}
.breakdown-phone:hover { color: #f59e0b; }

/* ── PHOTO SPLIT (image + text side by side) ── */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.photo-split--reverse { direction: rtl; }
.photo-split--reverse > * { direction: ltr; }
.photo-split-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.photo-split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photo-split-img:hover img { transform: scale(1.03); }
.photo-split-body {
  background: var(--bg);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-split-body--dark {
  background: var(--mid);
}
.photo-split-body p {
  font-size: 16px;
  color: var(--grey-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}
.photo-split-body--dark p { color: rgba(255,255,255,0.65); }

/* ── CARD GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.09); transform: translateY(-2px); }
.card--top-red { border-top: 3px solid var(--red); }
.card-icon {
  width: 50px; height: 50px;
  background: #fee2e2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.card p { font-size: 14px; color: var(--grey); line-height: 1.65; }

/* ── PHOTO CARDS ── */
.photo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  cursor: default;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
}
.photo-card-overlay h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
}
.photo-card-overlay p { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 4px; }

/* ── DARK SECTION ── */
.dark-section { background: var(--dark); }
.dark-section .section-title { color: white; }

/* ── RED SECTION ── */
.red-section { background: var(--red); }
.red-section .label { color: rgba(255,255,255,0.6); }
.red-section .section-title { color: white; }

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat-item { flex: 1; min-width: 160px; padding-right: 32px; }
.stat-num {
  font-family: 'Barlow', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-num em { color: var(--red); font-style: normal; }
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ── FEATURE LIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--grey-dark);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── DOWNLOAD STRIP ── */
.download-strip {
  background: var(--mid);
  padding: 60px 24px;
}
.download-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.download-strip h2 {
  font-size: 26px;
  font-weight: 800;
  color: white;
  font-family: 'Barlow', sans-serif;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.download-strip p { color: rgba(255,255,255,0.5); font-size: 15px; }

/* ── CONTACT FORM ── */
.form-grid { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--grey); }
.form-note a { color: var(--red); font-weight: 600; text-decoration: none; }

/* ── CONTACT INFO ── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: #fee2e2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 3px;
}
.contact-item a, .contact-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}
.contact-item a:hover { color: var(--red); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 64px 24px 32px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 38px; display: block; margin-bottom: 14px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey);
}
.breadcrumb a { color: var(--grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--dark); font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .photo-split { grid-template-columns: 1fr; }
  .photo-split--reverse { direction: ltr; }
  .photo-split-body { padding: 48px 28px; }
  .photo-split-img { min-height: 280px; }
  .page-hero { height: 360px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .download-strip-inner { flex-direction: column; }
  .breakdown-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
