/* ===================== Base / Variables ===================== */
:root {
  --navy: #0d3b66;
  --navy-dark: #092c4d;
  --blue: #1e6fd9;
  --blue-light: #2f8ff0;
  --gray-900: #1c2733;
  --gray-700: #4a5764;
  --gray-500: #6b7785;
  --gray-300: #c9cfd6;
  --gray-100: #f4f6f9;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(13, 59, 102, 0.08);
  --container: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 16px; color: var(--gray-500); }

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 8px;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--blue);
}

.section-head { max-width: 560px; margin-bottom: 40px; }
.section-head-center { max-width: 560px; margin: 0 auto 40px; text-align: center; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--blue); border-color: var(--blue); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline.btn-light {
  color: var(--white);
  border-color: var(--white);
}
.btn-outline.btn-light:hover { background: var(--white); color: var(--navy); }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 78px; width: auto; display: block; }

.footer-logo { display: inline-flex; }
.footer-logo .logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 8px 0;
  position: relative;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--blue); }
.main-nav > ul > li > a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue);
}
.chev { transition: transform 0.2s ease; flex-shrink: 0; }
.has-dropdown:hover > a .chev,
.has-dropdown.open > a .chev { transform: rotate(180deg); }

.btn-nav { flex-shrink: 0; }

/* Contact Us lives as a header button on desktop; mobile hides that button (see .btn-nav below)
   so this list item restores access to it inside the hamburger panel instead. */
.nav-contact-mobile { display: none; }

/* dropdown / flyout menus */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px rgba(13,59,102,0.05);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--gray-100); color: var(--blue); }

.flyout-menu { min-width: 300px; padding: 12px; }
.flyout-menu li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
}
.flyout-copy { display: flex; flex-direction: column; flex: 1; }
.flyout-copy strong { font-size: 0.92rem; color: var(--gray-900); }
.flyout-copy small { font-size: 0.76rem; color: var(--gray-500); font-weight: 400; }

/* nested sub-flyout (e.g. Medical > Medical Tourism, Dental Care, ...) */
.flyout-menu li.has-subflyout { position: relative; }

/* desktop: opens as a side flyout so it never pushes Hospitality/Technology down and breaks hover navigation */
.sub-menu.dropdown-menu {
  position: absolute;
  top: -10px;
  left: 100%;
  margin-left: -2px;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px rgba(13,59,102,0.05);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  max-height: none;
  overflow: visible;
  transform: translateX(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.has-subflyout:hover > .sub-menu.dropdown-menu,
.has-subflyout.open > .sub-menu.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
}
.sub-menu .flyout-icon { width: 26px; height: 26px; border-radius: 6px; }
.sub-menu .flyout-icon::before { width: 14px; height: 14px; }
.sub-label { font-size: 0.84rem; font-weight: 600; color: var(--gray-700); }
.sub-menu li a:hover .sub-label,
.sub-menu li a.current .sub-label { color: var(--blue); }

.flyout-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gray-100);
  display: inline-block;
  position: relative;
}
.flyout-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-color: var(--navy);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
/* inline icon shapes via mask, no external assets */
.flyout-icon[data-icon="automotive"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16 5 10a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2l1 6" fill="none" stroke="black" stroke-width="1.8"/><rect x="2" y="16" width="20" height="4" rx="1"/><circle cx="7" cy="20" r="1.6"/><circle cx="17" cy="20" r="1.6"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16 5 10a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2l1 6" fill="none" stroke="black" stroke-width="1.8"/><rect x="2" y="16" width="20" height="4" rx="1"/><circle cx="7" cy="20" r="1.6"/><circle cx="17" cy="20" r="1.6"/></svg>');
}
.flyout-icon[data-icon="logistics"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="3" y="7" width="18" height="12" rx="1" fill="none" stroke="black" stroke-width="1.8"/><path d="M3 12h18M9 7v12M15 7v12" stroke="black" stroke-width="1.8"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="3" y="7" width="18" height="12" rx="1" fill="none" stroke="black" stroke-width="1.8"/><path d="M3 12h18M9 7v12M15 7v12" stroke="black" stroke-width="1.8"/></svg>');
}
.flyout-icon[data-icon="medical"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21s-7-4.6-9.4-8.8C1 8.8 2.7 5 6.4 5c2 0 3.3 1 4.6 2.6L12 8.9l1-1.3C14.3 6 15.6 5 17.6 5c3.7 0 5.4 3.8 3.8 7.2C19 16.4 12 21 12 21z" fill="none" stroke="black" stroke-width="1.6"/><path d="M12 8v8M8 12h8" stroke="black" stroke-width="1.6"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 21s-7-4.6-9.4-8.8C1 8.8 2.7 5 6.4 5c2 0 3.3 1 4.6 2.6L12 8.9l1-1.3C14.3 6 15.6 5 17.6 5c3.7 0 5.4 3.8 3.8 7.2C19 16.4 12 21 12 21z" fill="none" stroke="black" stroke-width="1.6"/><path d="M12 8v8M8 12h8" stroke="black" stroke-width="1.6"/></svg>');
}
.flyout-icon[data-icon="hospitality"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 20v-7a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v7" fill="none" stroke="black" stroke-width="1.8"/><path d="M3 20h18M7 8V5h10v3" stroke="black" stroke-width="1.8"/><circle cx="12" cy="12" r="2" fill="black"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 20v-7a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v7" fill="none" stroke="black" stroke-width="1.8"/><path d="M3 20h18M7 8V5h10v3" stroke="black" stroke-width="1.8"/><circle cx="12" cy="12" r="2" fill="black"/></svg>');
}
.flyout-icon[data-icon="technology"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="11" rx="1" fill="none" stroke="black" stroke-width="1.8"/><path d="M2 19h20M9 19l1-3h4l1 3" stroke="black" stroke-width="1.8"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="11" rx="1" fill="none" stroke="black" stroke-width="1.8"/><path d="M2 19h20M9 19l1-3h4l1 3" stroke="black" stroke-width="1.8"/></svg>');
}
.flyout-icon[data-icon="medical-tourism"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2L11 13" fill="none" stroke="black" stroke-width="1.8"/><path d="M22 2l-7 20-4-9-9-4 20-7z" fill="none" stroke="black" stroke-width="1.8" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2L11 13" fill="none" stroke="black" stroke-width="1.8"/><path d="M22 2l-7 20-4-9-9-4 20-7z" fill="none" stroke="black" stroke-width="1.8" stroke-linejoin="round"/></svg>');
}
.flyout-icon[data-icon="medical-training"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 8l10 5 10-5-10-5z" fill="none" stroke="black" stroke-width="1.7" stroke-linejoin="round"/><path d="M6 10.5V16c0 1.5 3 3 6 3s6-1.5 6-3v-5.5" fill="none" stroke="black" stroke-width="1.7"/><path d="M22 8v6" stroke="black" stroke-width="1.7"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3 2 8l10 5 10-5-10-5z" fill="none" stroke="black" stroke-width="1.7" stroke-linejoin="round"/><path d="M6 10.5V16c0 1.5 3 3 6 3s6-1.5 6-3v-5.5" fill="none" stroke="black" stroke-width="1.7"/><path d="M22 8v6" stroke="black" stroke-width="1.7"/></svg>');
}
.flyout-icon[data-icon="dental-care"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c-2 0-3 1.2-4 1.2S6 4 4.5 4 2 5.8 2 8c0 3 1 5 1.5 8 .3 1.8 1 3 2 3s1.3-2 1.5-3.5c.2-1.3.7-2 2-2h2c1.3 0 1.8.7 2 2 .2 1.5.5 3.5 1.5 3.5s1.7-1.2 2-3c.5-3 1.5-5 1.5-8 0-2.2-1-4-2.5-4S14 5.2 12 4z" fill="none" stroke="black" stroke-width="1.5" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c-2 0-3 1.2-4 1.2S6 4 4.5 4 2 5.8 2 8c0 3 1 5 1.5 8 .3 1.8 1 3 2 3s1.3-2 1.5-3.5c.2-1.3.7-2 2-2h2c1.3 0 1.8.7 2 2 .2 1.5.5 3.5 1.5 3.5s1.7-1.2 2-3c.5-3 1.5-5 1.5-8 0-2.2-1-4-2.5-4S14 5.2 12 4z" fill="none" stroke="black" stroke-width="1.5" stroke-linejoin="round"/></svg>');
}
.flyout-icon[data-icon="pharmacy-services"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="3" y="9" width="18" height="6" rx="3" transform="rotate(-45 12 12)" fill="none" stroke="black" stroke-width="1.7"/><line x1="9" y1="9" x2="15" y2="15" stroke="black" stroke-width="1.7" transform="rotate(-45 12 12)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="3" y="9" width="18" height="6" rx="3" transform="rotate(-45 12 12)" fill="none" stroke="black" stroke-width="1.7"/><line x1="9" y1="9" x2="15" y2="15" stroke="black" stroke-width="1.7" transform="rotate(-45 12 12)"/></svg>');
}
.flyout-icon[data-icon="vision-care"]::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z" fill="none" stroke="black" stroke-width="1.6"/><circle cx="12" cy="12" r="3.2" fill="none" stroke="black" stroke-width="1.6"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z" fill="none" stroke="black" stroke-width="1.6"/><circle cx="12" cy="12" r="3.2" fill="none" stroke="black" stroke-width="1.6"/></svg>');
}

.icon-lg {
  width: 120px;
  height: 120px;
  background: transparent;
  border-radius: 0;
}
.icon-lg::before { width: 100px; height: 100px; background-color: #fff; }

.flyout-menu li a.current { background: var(--gray-100); }
.flyout-menu li a.current .flyout-copy strong { color: var(--blue); }

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Hero ===================== */
.hero { padding: 60px 0 0; background: var(--white); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 { font-size: 2.7rem; margin-bottom: 18px; }
.accent { color: var(--blue); }
.hero-copy p { max-width: 480px; font-size: 1.02rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero-art { padding: 10px 0; }
.hero-art-img { width: 100%; height: auto; }

.page-hero-photo .page-hero-inner { grid-template-columns: 1fr 1.32fr; }
.hero-art-photo { overflow: visible; position: relative; }
.hero-art-photo .hero-art-img {
  width: 122%;
  max-width: 122%;
  margin-left: -11%;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at 55% 50%, #000 30%, transparent 92%);
  mask-image: radial-gradient(ellipse 78% 82% at 55% 50%, #000 30%, transparent 92%);
}

/* photo hero card, feathered only on the left edge where it meets the copy */
.hero-art-card { padding: 0; position: relative; overflow: visible; min-height: 380px; align-self: stretch; }
.hero-art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 20%);
  mask-image: linear-gradient(to right, transparent 0%, #000 20%);
}

.feature-strip {
  margin-top: 50px;
  background: var(--white);
  border: 1px solid #eef1f5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateY(40%);
  position: relative;
  z-index: 2;
}
.feature-item {
  padding: 32px 30px;
  border-right: 1px solid #eef1f5;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gray-100);
  margin-bottom: 14px;
}
.feature-item h3 { margin-bottom: 8px; }
.feature-item p { margin: 0; font-size: 0.92rem; }

/* ===================== About ===================== */
.about { padding: 150px 0 90px; background: var(--white); }
.about.about-tight { padding: 90px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-art { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-art-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.about-copy h2 { margin-bottom: 16px; }
.about-copy p { max-width: 480px; }

.about-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: url('../assets/luxury-villa.png') center / cover no-repeat;
  box-shadow: var(--shadow);
}
.about-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,44,77,0.94) 0%, rgba(9,44,77,0.8) 38%, rgba(9,44,77,0.25) 68%, rgba(9,44,77,0) 88%);
}
.about-feature-content {
  position: relative;
  z-index: 1;
  padding: 50px 56px;
  max-width: 560px;
  color: var(--white);
}
.about-feature-content .eyebrow { color: #a9cbf2; }
.about-feature-content .eyebrow::after { background: #a9cbf2; }
.about-feature-content h2 { color: var(--white); margin-bottom: 16px; }
.about-feature-content p { color: #dbe6f2; max-width: 480px; }

/* ===================== Industry detail pages ===================== */
.page-hero { padding: 60px 0 90px; background: linear-gradient(180deg, #f4f6f9 0%, #ffffff 100%); }
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.page-hero-copy p { max-width: 480px; font-size: 1.02rem; }
.hero-icon-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.cta-banner { background: var(--navy); color: var(--white); padding: 70px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: #c8d5e4; max-width: 560px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== Medical tourism page ===================== */
.checklist { list-style: none; margin: 0 0 22px; padding: 0; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--blue);
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 13l4 4L19 7" fill="none" stroke="black" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 13l4 4L19 7" fill="none" stroke="black" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.checklist-label {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  display: block;
}

.info-strip {
  margin-top: 50px;
  background: var(--white);
  border: 1px solid #eef1f5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-strip .feature-item { padding: 30px 24px; border-right: 1px solid #eef1f5; }
.info-strip .feature-item:last-child { border-right: none; }
.info-strip-5 { grid-template-columns: repeat(5, 1fr); }

.card-grid-6 { grid-template-columns: repeat(3, 1fr); }

/* process / journey steps */
.process { padding: 90px 0; background: var(--gray-100); }
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 54px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 0;
  border-top: 2px dashed var(--gray-300);
  z-index: 0;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}
.process-icon .step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: 0.84rem; max-width: 170px; margin: 0; }

/* promo grid (villas / financing) */
.promo { padding: 90px 0; background: var(--white); }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.promo-card.dark { background: linear-gradient(135deg, var(--blue-light) 0%, var(--navy) 65%); }
.promo-card.light { background: var(--gray-100); }
.promo-watermark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 130px;
  height: 130px;
  opacity: 0.18;
}
.promo-card.light .promo-watermark { opacity: 0.12; }
.promo-content { position: relative; z-index: 1; padding: 36px; }
.promo-card.dark .promo-content { color: var(--white); }
.promo-card.dark .promo-content h3 { color: var(--white); }
.promo-card.dark .promo-content p { color: #d7e4f2; }
.promo-card.dark .checklist li { color: #e6edf6; }
.promo-card.dark .checklist li::before { background-color: #cfe0f5; }
.promo-card.light .checklist { columns: 2; column-gap: 20px; }

/* stats ribbon */
.stats-ribbon { background: var(--navy); color: var(--white); padding: 40px 0; }
.stats-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

/* testimonials */
.testimonials { padding: 90px 0; background: var(--gray-100); }
.testimonial-carousel { display: flex; align-items: center; gap: 16px; margin-top: 44px; }
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px;
  flex: 1;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.testimonial-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-quote { font-size: 0.9rem; color: var(--gray-700); font-style: italic; margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--gray-900); }
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.carousel-btn:hover { background: var(--navy); border-color: var(--navy); }
.carousel-btn:hover svg { stroke: var(--white); }

/* final cta split */
.final-cta { padding: 80px 0; background: var(--white); }
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 40px;
  align-items: center;
}
.final-cta-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.final-cta-photo { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }
.final-cta-copy h2 { margin-bottom: 10px; }
.final-cta-copy p { max-width: 420px; }
.final-cta-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray-500);
  font-size: 0.8rem;
  font-weight: 700;
  gap: 12px;
  padding: 0 10px;
}
.final-cta-contact { display: flex; flex-direction: column; gap: 10px; }
.final-cta-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  white-space: nowrap;
}
.final-cta-contact a:hover { color: var(--blue); }

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100), #dfe6ee);
}
.photo-placeholder svg { width: 34%; height: 34%; opacity: 0.55; }

/* ===================== Program impact cards (photo + overlapping icon) ===================== */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.impact-item { display: flex; flex-direction: column; height: 100%; }
.impact-photo { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; height: 200px; flex-shrink: 0; }
.impact-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.impact-caption {
  background: var(--white);
  border: 1px solid #eef1f5;
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 22px 26px;
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.impact-caption .card-icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
  border: 4px solid var(--white);
}
.impact-caption h3 { margin-top: 14px; }
.impact-caption p { font-size: 0.92rem; margin: 0; }
.impact-caption .learn-more { margin-top: auto; padding-top: 14px; }

.impact-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.impact-grid-5 .impact-photo { height: 160px; }
.impact-grid-5 .impact-caption { padding: 30px 16px 22px; }
.impact-grid-5 .impact-caption h3 { font-size: 0.98rem; }
.impact-grid-5 .impact-caption p { font-size: 0.84rem; }

.impact-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.impact-grid-4 .impact-photo { height: 180px; }
.impact-grid-4 .impact-caption h3 { font-size: 1.02rem; }
.impact-grid-4 .impact-caption p { font-size: 0.86rem; }

/* ===================== Partners banner ===================== */
.partners { padding: 90px 0; background: var(--white); }
.partners-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  box-shadow: var(--shadow);
}
.partners-content { padding: 56px; color: var(--white); }
.partners-content .eyebrow { color: #a9cbf2; }
.partners-content .eyebrow::after { background: #a9cbf2; }
.partners-content h2 { color: var(--white); margin-bottom: 14px; }
.partners-content p { color: #dbe6f2; max-width: 460px; }
.partner-logos { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 22px; }
.partner-logo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.partner-logo-chip .maple-leaf { color: #e02020; font-size: 1.1rem; line-height: 1; }
.partner-logo-chip .ti-max { font-style: italic; letter-spacing: 0.02em; }
.partners-photo { min-height: 320px; }
.partners-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===================== Horizontal stat strip ===================== */
.stat-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid #eef1f5;
}
.stat-strip-item:last-child { border-right: none; }
.stat-strip-item .stat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-strip-item strong { display: block; font-size: 1.25rem; color: var(--navy); line-height: 1.2; }
.stat-strip-item > div span { font-size: 0.8rem; color: var(--gray-500); }
.stat-strip-item > div p { margin: 4px 0 0; font-size: 0.78rem; color: var(--gray-500); line-height: 1.4; }

/* ===================== Transformation split CTA ===================== */
.transform-cta { padding: 90px 0; }
.transform-cta-card {
  background: #eaf1fb;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
.transform-cta-content { padding: 50px; }
.transform-cta-content h2 { margin-bottom: 12px; }
.transform-cta-content p { max-width: 420px; margin-bottom: 24px; }
.transform-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.transform-cta-photo { height: 100%; min-height: 300px; }
.transform-cta-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===================== Mini icon steps (compact horizontal process) ===================== */
.mini-steps { display: flex; align-items: flex-start; gap: 0; margin-bottom: 28px; }
.mini-step { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; width: 90px; }
.mini-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-step span { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.mini-step-divider { flex: 1; border-top: 2px dashed var(--gray-300); margin-top: 22px; min-width: 12px; }
.mini-steps-plain { gap: 28px; flex-wrap: wrap; }

/* ===================== Two-up partner cards (e.g. McKesson / Pharmasave) ===================== */
.partner-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.partner-card-grid-single { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.partner-card {
  background: var(--white);
  border: 1px solid #eef1f5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.partner-wordmark { margin-bottom: 20px; }
.partner-wordmark-mckesson {
  font-size: 1.9rem;
  font-weight: 800;
  color: #003da6;
  letter-spacing: -0.01em;
}
.partner-wordmark-mckesson .accent-dot { color: #ff671f; }
.partner-wordmark-pharmasave {
  display: inline-block;
  background: #e0122a;
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: 4px;
}
.partner-card p { margin-bottom: 16px; }
.partner-card .learn-more { display: inline-flex; }
.partner-wordmark-tremaine {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f7a6b;
  letter-spacing: -0.01em;
}
.partner-card .checklist { margin-top: 4px; }

/* ===================== Dark partner banner (logos only) ===================== */
.partner-banner-section { padding: 0 0 90px; }
.partner-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.partner-banner-content .eyebrow { color: #a9cbf2; }
.partner-banner-content .eyebrow::after { background: #a9cbf2; }
.partner-banner-content h2 { color: var(--white); margin-bottom: 14px; }
.partner-banner-content p { color: #dbe6f2; max-width: 420px; margin: 0 0 22px; }
.partner-banner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.partner-banner-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 24px;
}
.partner-banner-stats .stat { align-items: flex-start; text-align: left; }
.partner-banner-stats-4 { grid-template-columns: repeat(4, 1fr); }
.partner-banner-solo { grid-template-columns: 1fr; }
.partner-banner-solo .partner-banner-content p { max-width: 560px; }
.partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 22px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  text-align: center;
}
.partner-badge-mark { font-weight: 800; letter-spacing: 0.01em; color: var(--white); line-height: 1; }
.partner-badge-sub { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #9fb7d6; }
.partner-badge-iaa .partner-badge-mark { font-size: 1.85rem; }
.partner-badge-iaa .accent-dot { color: #ff9f1c; }
.partner-badge-copart .partner-badge-mark { font-size: 1.55rem; }
.partner-badge-manheim .partner-badge-mark { font-size: 1.4rem; }
.partner-badge-manheim .accent-dot { color: #4ea1ff; }

/* ===================== Simple CTA bar ===================== */
.cta-bar-section { padding: 0 0 90px; }
.cta-bar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-bar-left { display: flex; align-items: center; gap: 18px; }
.cta-bar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-bar-text h3 { color: var(--white); margin-bottom: 4px; font-size: 1.15rem; }
.cta-bar-text p { color: #c8d5e4; margin: 0; font-size: 0.9rem; }

/* ===================== Services / Industries ===================== */
.services { padding: 90px 0; background: var(--gray-100); }
.industries { padding: 90px 0; background: var(--white); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card-grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #eef1f5;
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon img { width: 32px; height: 32px; object-fit: contain; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-100);
  margin-bottom: 16px;
}
.card p { font-size: 0.92rem; margin-bottom: 14px; }
.learn-more {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===================== Contact page ===================== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.contact-form-card {
  background: var(--white);
  border: 1px solid #eef1f5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-status { font-size: 0.9rem; margin: -6px 0 16px; min-height: 1.2em; }
.form-status-success { color: #1a7f4b; }
.form-status-error { color: #c0392b; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #d7dee6;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--gray-700);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #eef1f5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.contact-info-item .feature-icon { margin-bottom: 0; }
.contact-info-item h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { margin: 0; font-size: 0.9rem; color: var(--gray-500); }

/* ===================== Legal pages (Privacy Policy / Terms of Service) ===================== */
.legal-page { padding: 70px 0 100px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-updated { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 40px; }
.legal-content h2 { margin: 40px 0 14px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { margin: 24px 0 10px; font-size: 1.05rem; }
.legal-content p { line-height: 1.7; }
.legal-content ul { padding-left: 22px; margin: 0 0 16px; color: var(--gray-500); }
.legal-content li { line-height: 1.7; margin-bottom: 8px; }
.legal-content a { color: var(--blue); font-weight: 600; }

/* ===================== Stats ===================== */
.stats { background: var(--navy); color: var(--white); padding: 60px 0; }
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}
.stats-copy h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.stats-copy p { color: #c8d5e4; font-size: 0.92rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat strong { font-size: 1.8rem; }
.stat span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: #c8d5e4; }

/* ===================== Footer ===================== */
.site-footer { background: #0a1626; color: #c8d5e4; padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: #8ea3bb; font-size: 0.9rem; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #c8d5e4; font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--blue-light); }
.contact-list li { font-size: 0.9rem; margin-bottom: 14px; color: #c8d5e4; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.social-links a:hover { background: var(--blue); }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.82rem;
  color: #7d90a8;
}
.footer-legal a:hover { color: var(--white); }

/* ===================== Responsive ===================== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; }
  .page-hero-inner, .page-hero-photo .page-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-art-photo .hero-art-img { width: 100%; max-width: 100%; margin-left: 0; }
  .page-hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-icon-circle { order: -1; width: 200px; height: 200px; }
  .hero-icon-circle .icon-lg { width: 90px; height: 90px; }
  .hero-icon-circle .icon-lg::before { width: 76px; height: 76px; }
  .feature-strip { position: static; transform: none; grid-template-columns: 1fr; margin-top: 30px; }
  .feature-item { border-right: none; border-bottom: 1px solid #eef1f5; }
  .about { padding-top: 60px; }
  .about-inner { grid-template-columns: 1fr; }
  .card-grid, .card-grid-5, .card-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; text-align: center; }
  .stats-copy { text-align: center; }
  .stats-grid, .stats-ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .info-strip { grid-template-columns: 1fr 1fr; }
  .info-strip .feature-item { border-bottom: 1px solid #eef1f5; }
  .process-steps { flex-direction: column; align-items: center; gap: 34px; }
  .process-steps::before { display: none; }
  .process-step p { max-width: 320px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card.light .checklist { columns: 1; }
  .about-feature-content { max-width: 100%; padding: 40px 32px; }
  .about-feature::before { background: linear-gradient(180deg, rgba(9,44,77,0.5) 0%, rgba(9,44,77,0.92) 55%, rgba(9,44,77,0.96) 100%); }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta-copy p { margin: 0 auto; }
  .final-cta-divider { flex-direction: row; }

  .impact-grid { grid-template-columns: 1fr; gap: 46px; }
  .partners-card { grid-template-columns: 1fr; }
  .partners-photo { min-height: 240px; order: -1; }
  .partners-content { padding: 40px; text-align: center; }
  .partners-content p { margin-left: auto; margin-right: auto; }
  .partner-logos { justify-content: center; }
  .stat-strip-item { border-right: none; border-bottom: 1px solid #eef1f5; }
  .transform-cta-card { grid-template-columns: 1fr; }
  .transform-cta-photo { order: -1; min-height: 220px; }
  .transform-cta-content { text-align: center; padding: 40px; }
  .transform-cta-content p { margin-left: auto; margin-right: auto; }
  .transform-cta-actions { justify-content: center; }

  .partner-card-grid { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; text-align: center; }
  .cta-bar-left { flex-direction: column; text-align: center; }

  .impact-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .impact-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .info-strip-5 { grid-template-columns: repeat(2, 1fr); }
  .partner-banner { grid-template-columns: 1fr; text-align: center; }
  .partner-banner-content p { margin-left: auto; margin-right: auto; }
  .partner-banner-stats { max-width: 360px; margin: 0 auto; }
  .partner-banner-stats .stat { align-items: center; text-align: center; }
  .partner-banner-stats-4 { grid-template-columns: repeat(2, 1fr); max-width: 420px; }

  .hero-art-card { min-height: 280px; }
  .mini-steps { justify-content: center; flex-wrap: wrap; row-gap: 20px; }
  .mini-step-divider { min-width: 24px; }

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

@media (max-width: 560px) {
  .partner-banner-logos { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .logo-img { height: 58px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 20px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid var(--gray-100); }
  .main-nav > ul > li > a { padding: 16px 0; justify-content: space-between; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    padding: 0 0 12px 12px;
  }
  .has-dropdown.open > .dropdown-menu { display: block; }
  .flyout-menu { min-width: 0; }

  /* mobile: back to an inline accordion instead of the desktop side flyout */
  .sub-menu.dropdown-menu {
    position: static;
    margin-left: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .has-subflyout.open > .sub-menu.dropdown-menu {
    max-height: 340px;
    padding: 4px 0 4px 16px;
  }
  .sub-menu li a { padding: 9px 10px; }
  .btn-nav { display: none; }
  .nav-contact-mobile { display: block; }
  .card-grid, .card-grid-5, .card-grid-6 { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }

  .info-strip { grid-template-columns: 1fr; }
  .stats-ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { flex: 0 0 100%; }

  .impact-grid-5 { grid-template-columns: 1fr; }
  .impact-grid-4 { grid-template-columns: 1fr; }
  .info-strip-5 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
}
