:root {
  --navy: #083d82;
  --navy-2: #062f66;
  --blue: #1188f6;
  --blue-2: #0c73d8;
  --sky: #eaf4ff;
  --ink: #15324f;
  --text: #52677d;
  --muted: #73869a;
  --line: #e5edf5;
  --bg: #f7faff;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(18, 66, 115, 0.09);
  --shadow-strong: 0 18px 50px rgba(9, 61, 130, 0.16);
  --radius: 22px;
  --container: 1180px;
  --font-heading: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
}

h1,
h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 42px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.84);
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(222, 233, 244, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #284866;
  font-size: 0.93rem;
  font-weight: 650;
}

.main-nav > a:not(.nav-cta) {
  padding: 11px 13px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a.active {
  color: var(--navy);
  background: var(--sky);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0b5eb6);
  box-shadow: 0 10px 24px rgba(8, 61, 130, 0.2);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 30, 70, 0.42) 0%, rgba(2, 30, 70, 0.1) 46%, rgba(0, 0, 0, 0) 75%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 34, 75, 0.02) 40%, rgba(0, 23, 56, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content > * {
  max-width: 610px;
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 6.4vw, 5.7rem);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.hero-copy {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0f8bff, #0b6fd4);
  box-shadow: 0 12px 28px rgba(17, 136, 246, 0.28);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 74px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.experience-badge {
  position: absolute;
  right: -28px;
  bottom: 30px;
  width: 170px;
  padding: 20px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-strong);
}

.experience-badge strong {
  display: block;
  margin-bottom: 4px;
  font-size: 2.3rem;
  line-height: 1;
}

.experience-badge span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
}

.about-copy p:not(.eyebrow) {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.services-section {
  background: linear-gradient(180deg, #f9fbfe 0%, #f4f9ff 100%);
}

.section-heading {
  margin-bottom: 42px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border: 1px solid #b9d7f5;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  overflow: hidden;
  border: 1px solid #e3edf8;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.service-card > img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.service-body {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 14px;
  padding: 20px;
}

.service-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.35;
}

.icon-circle {
  flex: 0 0 48px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.icon-circle svg {
  width: 25px;
  fill: currentColor;
}

.opportunity-section {
  background: var(--white);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.opportunity-panel {
  padding: 52px;
  background: #fbfdff;
}

.opportunity-panel + .opportunity-panel {
  border-left: 1px solid var(--line);
  background: #f8fbff;
}

.opportunity-panel h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin: 30px 0 22px;
}

.country {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  border: 1px solid #e5edf7;
  border-radius: 14px;
  background: var(--white);
  text-align: center;
}

.flag {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid #d3e4f8;
  border-radius: 50%;
  font-size: 1.9rem;
  background: var(--white);
}

.country strong {
  color: var(--navy);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.opportunity-panel small {
  color: #8494a5;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.sector-card {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 10px;
  border: 1px solid #e5edf7;
  border-radius: 14px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 7px 20px rgba(21, 74, 127, 0.04);
}

.sector-card span {
  font-size: 2rem;
}

.sector-card strong {
  color: var(--navy);
  font-size: 0.8rem;
  line-height: 1.4;
}

.gallery-section {
  background: linear-gradient(180deg, #f4f8fe 0%, #ffffff 80%);
}

.centered-heading {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2 {
  margin-bottom: 14px;
}

.centered-heading > p:last-child {
  color: var(--muted);
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #dfeaf5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.testimonials-section {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-card img {
  width: 88px;
  height: 108px;
  object-fit: cover;
  border-radius: 13px;
}

.stars {
  margin-bottom: 10px;
  color: #ffb300;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

blockquote {
  margin: 0 0 16px;
  color: #405a73;
  font-size: 0.94rem;
  line-height: 1.65;
}

.testimonial-card strong {
  color: var(--navy);
}

.location-section {
  background: #f8fbff;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.location-copy > p:not(.eyebrow) {
  max-width: 500px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.contact-detail p {
  margin: 3px 0 0;
}

.contact-detail strong {
  color: var(--ink);
}

.contact-icon {
  flex: 0 0 38px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #e7f3ff;
}

.location-btn {
  margin-top: 28px;
}

.map-card {
  overflow: hidden;
  min-height: 470px;
  border: 10px solid var(--white);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
}

.partner-section {
  padding: 58px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-2), #0c61b5);
}

.partner-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
}

.partner-section h2 {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.partner-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.partner-card {
  position: relative;
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 48px 20px 22px;
  border-radius: 16px;
  color: var(--navy);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.partner-label {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
}

.partner-card strong {
  line-height: 1.25;
}

.partner-card .arrow {
  position: absolute;
  right: 20px;
  font-size: 1.45rem;
}

.site-footer {
  padding-top: 68px;
  color: #60748a;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr 1.05fr 0.5fr;
  gap: 42px;
  padding-bottom: 52px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 380px;
  font-size: 0.9rem;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.98rem;
}

.footer-col > a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  font-size: 0.9rem;
}

.footer-col > a:hover {
  color: var(--blue);
}

.footer-contact p,
.footer-contact a {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.license {
  color: var(--navy);
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.floating-whatsapp svg {
  width: 30px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 2px;
    font-size: 0.86rem;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 10px 9px;
  }

  .nav-cta {
    margin-left: 4px;
    padding: 12px 15px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-card {
    grid-template-columns: 110px 1fr;
  }

  .testimonial-card img {
    width: 110px;
    height: 135px;
  }

  .partner-inner {
    grid-template-columns: 1fr;
  }

  .partner-actions {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .nav-toggle-label {
    display: flex;
    width: 38px;
    height: 38px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    cursor: pointer;
    background: var(--sky);
  }

  .nav-toggle-label span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(13, 53, 94, 0.1);
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .site-header.menu-open .main-nav {
    max-height: 620px;
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .main-nav > a:not(.nav-cta),
  .nav-cta {
    width: 100%;
    margin: 0;
    padding: 13px 14px;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 7px;
    border-radius: 12px;
  }

  .hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(2, 27, 62, 0.88) 0%, rgba(2, 27, 62, 0.64) 55%, rgba(2, 27, 62, 0.12) 100%);
  }

  .two-col,
  .opportunity-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    max-width: 620px;
  }

  .experience-badge {
    right: 22px;
  }

  .opportunity-panel + .opportunity-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .location-grid {
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  }

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .brand span {
    font-size: 0.78rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .hero {
    min-height: 620px;
    background-position: 67% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(0, 29, 68, 0.92) 0%, rgba(0, 29, 68, 0.75) 65%, rgba(0, 29, 68, 0.24) 100%);
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero h1 {
    max-width: 430px;
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero-copy {
    max-width: 460px;
    font-size: 0.96rem;
  }

  .hero-actions,
  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .experience-badge {
    right: 12px;
    bottom: 12px;
    width: 150px;
  }

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

  .opportunity-panel {
    padding: 34px 22px;
  }

  .country-grid,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .testimonial-card {
    flex: 0 0 88%;
    grid-template-columns: 76px 1fr;
    padding: 20px;
    scroll-snap-align: start;
  }

  .testimonial-card img {
    width: 76px;
    height: 94px;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
    height: 360px;
  }

  .partner-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    min-height: 100px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

/* Sign Up Page */
.signup-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(6, 47, 102, 0.98), rgba(11, 94, 182, 0.92)),
    url("assets/hero.png") center / cover no-repeat;
}

.signup-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.signup-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 48px;
}

.signup-hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  text-transform: uppercase;
}

.signup-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.signup-hero-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.signup-hero-note strong {
  color: var(--white);
}

.signup-hero-note span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.signup-section {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.signup-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
}

.signup-info {
  position: sticky;
  top: 112px;
}

.signup-info > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 32px;
}

.signup-info h2 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
}

.signup-info-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.signup-info-card:last-child {
  border-bottom: 1px solid var(--line);
}

.signup-step {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
}

.signup-info-card strong {
  color: var(--ink);
}

.signup-info-card p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.signup-form-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.form-heading {
  margin-bottom: 32px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  margin: 6px 0 8px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-kicker {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.required-mark {
  color: #d63638;
}

.optional-label {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--muted);
  background: #f0f4f8;
  font-size: 0.68rem;
  font-weight: 700;
  vertical-align: middle;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d6e1ec;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(17, 136, 246, 0.1);
}

.form-field input[readonly] {
  cursor: default;
  color: var(--navy);
  background: #f1f6fb;
  font-weight: 750;
}

.form-field .is-invalid {
  border-color: #d63638;
  box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.08);
}

.field-help {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.76rem;
}

.field-error {
  min-height: 0;
  margin-top: 5px;
  color: #c6292b;
  font-size: 0.76rem;
  font-weight: 650;
}

.input-with-suffix {
  position: relative;
}

.input-with-suffix input {
  padding-right: 64px;
}

.input-with-suffix > span {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  transform: translateY(-50%);
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.form-submit-row p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.submit-btn {
  flex: 0 0 auto;
  min-width: 205px;
  border: 0;
  cursor: pointer;
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 15px 17px;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 650;
}

.form-status.show {
  display: block;
}

.form-status.success {
  border: 1px solid #b9e4c7;
  color: #176a33;
  background: #eefaf2;
}

.form-status.error {
  border: 1px solid #f0c5c5;
  color: #a32325;
  background: #fff3f3;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.signup-footer {
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .signup-hero-inner,
  .signup-layout {
    grid-template-columns: 1fr;
  }

  .signup-hero-inner {
    gap: 28px;
  }

  .signup-hero-note {
    max-width: 520px;
  }

  .signup-info {
    position: static;
  }
}

@media (max-width: 640px) {
  .signup-hero {
    padding: 64px 0 58px;
  }

  .signup-form-card {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-field.full-width {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
}

/* Client feedback revision: normal-width type, carousel, locations and navy footer. */
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }
h1, h2, h3 { font-family: var(--font-heading); font-stretch: normal; }
h2 { font-weight: 700; line-height: 1.2; font-size: clamp(2rem, 3.3vw, 2.8rem); letter-spacing: -0.035em; }
.brand { min-width: 0; }
.brand span { line-height: 1.3; }
.nav-menu-button { border: 0; flex-shrink: 0; padding: 0; }
.about-grid { gap: 64px; }
.about-copy h2.eyebrow { font-size: .8rem; line-height: 1.5; letter-spacing: .16em; font-weight: 800; margin-bottom: 20px; }
.about-copy > p { line-height: 1.85; }
.why-us { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.why-us h3 { color: var(--navy); font-size: 1.55rem; margin-bottom: 20px; }
.advantages-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.advantages-list li { position: relative; padding-left: 36px; color: var(--ink); font-size: .96rem; font-weight: 650; line-height: 1.5; }
.advantages-list li::before { content: "\2713"; position: absolute; top: 1px; left: 0; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: var(--blue-2); background: var(--sky); font-weight: 800; }
.opportunity-panel h2 { font-size: clamp(1.75rem, 2.6vw, 2.25rem); line-height: 1.25; }
.sector-icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--navy); }
.sector-icon svg { display: block; width: 34px; height: 34px; }

/* Native horizontal scrolling remains usable without JavaScript. No autoplay. */
/* Gallery layout and lightbox are defined at the end of this stylesheet. */
.locations-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.location-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.location-card-copy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 32px; }
.location-label { display: inline-block; padding: 5px 12px; border-radius: 99px; background: var(--sky); color: var(--navy); text-transform: uppercase; letter-spacing: .09em; font-size: .71rem; font-weight: 800; margin-bottom: 18px; }
.location-card h3 { font-size: 1.4rem; line-height: 1.4; margin-bottom: 14px; }
.location-card .location-address { margin-bottom: 20px; }
.location-hours { font-size: .86rem; }
.location-hours strong { font-weight: 650; color: var(--ink); }
.location-card .text-link { margin-top: auto; font-size: .84rem; }
.location-map { background: #e5edf5; border-top: 1px solid var(--line); }
.location-map iframe { display: block; width: 100%; height: 275px; border: 0; }

.site-footer { background: #062750; color: #c7d7e9; }
.site-footer .brand, .site-footer h3 { color: white; }
.site-footer .brand img { padding: 3px; border-radius: 6px; background: white; }
.footer-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, .6fr) minmax(0, 1.1fr) minmax(0, .5fr); gap: 32px; }
.footer-brand .brand { align-items: center; }
.footer-brand .brand span { font-size: .83rem; max-width: 210px; }
.footer-contact a { overflow-wrap: anywhere; }
.site-footer .license { color: #afccec; }
.site-footer .footer-bottom { border-top-color: rgba(255,255,255,.16); color: #adc3dd; }
.site-footer a:hover { color: white; }
.socials a { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); }
.socials a:hover { background: var(--blue-2); }
.socials svg { width: 20px; height: 20px; }
.footer-social-heading { margin-top: 22px; }
.signup-info h2 { font-size: clamp(1.9rem, 2.8vw, 2.6rem); }
.signup-hero h1 { font-size: clamp(2.3rem, 4.5vw, 4rem); line-height: 1.15; }

@media (max-width: 1100px) {
  .nav-toggle-label { display: flex; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 10px; background: var(--sky); }
  .nav-toggle-label span { width: 20px; height: 2px; border-radius: 2px; background: var(--navy); }
  .main-nav { position: absolute; top: 82px; left: 0; right: 0; display: grid; max-height: 0; overflow: hidden; padding: 0 20px; background: white; box-shadow: 0 20px 40px rgba(13,53,94,.1); transition: max-height .25s, padding .25s; }
  .site-header.menu-open .main-nav { max-height: calc(100dvh - 82px); overflow-y: auto; padding-top: 16px; padding-bottom: 20px; }
  .main-nav > a:not(.nav-cta), .nav-cta { width: 100%; margin: 0; padding: 13px 14px; }
  .nav-cta { justify-content: space-between; margin-top: 7px; border-radius: 12px; }
  html:not(.js) .nav-wrap { flex-wrap: wrap; padding-block: 15px; }
  html:not(.js) .main-nav { position: static; max-height: none; box-shadow: none; width: 100%; padding: 0; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .opportunity-panel { padding: 35px 28px; }
}
@media (max-width: 900px) { .about-grid { gap: 42px; } }
@media (max-width: 700px) {
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .main-nav { top: 72px; }
  .site-header.menu-open .main-nav { max-height: calc(100dvh - 72px); }
  .footer-grid { grid-template-columns: 1fr; }
  .location-card-copy { padding: 25px; }
  .location-map iframe { height: 240px; }
  .about-copy p:not(.eyebrow) { font-size: 1rem; }
  .advantages-list li { font-size: .92rem; }
  .brand { gap: 8px; }
  .brand span { max-width: 200px; font-size: .72rem; }
  .nav-wrap { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* September 2026: supplied industry SVGs + proportional photo carousel. */
.sector-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* A shared height, but each card keeps the actual photo's aspect ratio.
   Portrait photos no longer sit inside an oversized landscape frame. */
.gallery-carousel {
  --gallery-height: clamp(260px, 30vw, 380px);
  min-width: 0;
}
.gallery-track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #b7c9de transparent;
  padding: 5px 0 16px;
  -webkit-overflow-scrolling: touch;
}
.gallery-track .gallery-item {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: none;
  height: var(--gallery-height);
  aspect-ratio: var(--photo-ratio);
  scroll-snap-align: start;
  border-radius: 16px;
  background: #e8eff7;
  position: relative;
}
.gallery-photo-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  -webkit-user-drag: none;
}
.gallery-track .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  background: transparent;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-track .gallery-item:hover img {
  transform: none;
}
.gallery-photo-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -4px;
  border-radius: inherit;
}
.gallery-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: rgba(6, 35, 65, .75);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  pointer-events: none;
  transition: background .2s;
}
.gallery-zoom svg {
  width: 17px;
  height: 17px;
}
.gallery-photo-link:hover .gallery-zoom,
.gallery-photo-link:focus-visible .gallery-zoom {
  background: var(--navy);
}
.gallery-track.is-dragging,
.gallery-track.is-dragging .gallery-photo-link {
  cursor: grabbing;
  user-select: none;
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}
.gallery-controls[hidden] { display: none; }
.gallery-hint {
  margin: 0;
  font-size: .85rem;
  color: var(--text);
}
.gallery-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gallery-counter {
  margin-right: 8px;
  font-size: .85rem;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #b9d1e8;
  border-radius: 50%;
  color: var(--navy);
  background: white;
  cursor: pointer;
  transition: background .2s;
}
.carousel-arrow:hover:not(:disabled) { background: var(--sky); }
.carousel-arrow:disabled { opacity: .35; cursor: default; }
.carousel-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* The full-size viewer shows the complete photo on a neutral dark backdrop.
   A native modal dialog provides keyboard focus isolation and Escape closing. */
.gallery-lightbox:not([open]) { display: none; }
.gallery-lightbox {
  width: min(1150px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  height: min(90vh, 920px);
  height: min(90dvh, 920px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  color: white;
  background: #071728;
  box-shadow: 0 24px 90px rgba(0, 0, 0, .4);
  overflow: hidden;
}
.gallery-lightbox::backdrop {
  background: rgba(3, 13, 27, .88);
}
.lightbox-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  height: 100%;
  padding: 18px 22px 20px;
}
.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lightbox-header h2 {
  margin: 0;
  font: 600 1rem/1.4 var(--font-heading);
  color: white;
  letter-spacing: 0;
}
.lightbox-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lightbox-counter {
  font-size: .85rem;
  color: #c2d0df;
  font-variant-numeric: tabular-nums;
}
.lightbox-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
  color: white;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-button:hover { background: rgba(255, 255, 255, .18); }
.lightbox-button:focus-visible { outline: 2px solid #93c5fd; outline-offset: 3px; }
.lightbox-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox-stage {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
  min-height: 0;
}
.lightbox-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
.lightbox-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-footer { text-align: center; }
.lightbox-footer p { margin: 0; }
#lightbox-caption { font-size: .9rem; line-height: 1.5; color: #f3f7fc; }
.lightbox-instructions { margin-top: 6px !important; font-size: .75rem; color: #a7b8ca; }

@media (max-width: 700px) {
  /* Even the widest supplied photo fits on a small screen at its native ratio. */
  .gallery-carousel { --gallery-height: min(290px, calc((100vw - 44px) / 1.8)); }
  .gallery-track { gap: 12px; }
  .gallery-track .gallery-item { border-radius: 12px; }
  .gallery-zoom { width: 29px; height: 29px; right: 8px; bottom: 8px; }
  .gallery-zoom svg { width: 15px; height: 15px; }
  .gallery-controls { flex-wrap: wrap; gap: 12px; }
  .gallery-navigation { margin-left: auto; }
  .gallery-lightbox {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    border-radius: 14px;
    height: 88vh;
    height: 88dvh;
  }
  .lightbox-shell { padding: 12px 10px 16px; gap: 10px; }
  .lightbox-header { padding-inline: 4px; }
  .lightbox-header-actions { gap: 10px; }
  /* Put navigation below the photo on phones so it can use the full width. */
  .lightbox-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) 44px;
    gap: 12px;
  }
  .lightbox-image-wrap { grid-column: 1 / -1; grid-row: 1; }
  .lightbox-previous { grid-column: 1; grid-row: 2; justify-self: end; margin-right: 2px; }
  .lightbox-next { grid-column: 2; grid-row: 2; justify-self: start; margin-left: 2px; }
  .lightbox-instructions { font-size: .7rem; }
}


/* Language switcher */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4f8fc;
}
.language-option {
  min-width: 38px;
  height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: #5f7388;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-option:hover { color: var(--navy); }
.language-option.active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 5px 14px rgba(8,61,130,.18);
}
@media (max-width: 1100px) {
  .language-switcher {
    width: fit-content;
    margin: 8px 0 4px;
  }
}
