*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1480px;
  margin: 0 auto;
  padding: 1.15rem 2rem;
  min-height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 84px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #111;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #0a4f8a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 96px);
  min-height: calc(100dvh - 96px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #000;
  color: #fff;
  padding:
    clamp(3.25rem, 8vh, 6.5rem)
    clamp(1.5rem, 5vw, 4.5rem)
    clamp(6.5rem, 12vh, 9.5rem);
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-line {
  display: block;
}

.hero-highlight {
  display: inline-block;
  margin: 0.35rem 0;
  padding: 0.18em 0.35em;
  background: #ffe600;
  color: #000;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-rate {
  margin: 0 0 1.25rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #ffe600;
  letter-spacing: 0.01em;
}

.hero-text {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.hero-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-cards {
  position: relative;
  z-index: 5;
  margin-top: -3.75rem;
  padding: 0 clamp(1.5rem, 5vw, 3.5rem) clamp(3.5rem, 7vw, 5.5rem);
  background: transparent;
}

.feature-cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3.75rem;
  bottom: 0;
  z-index: -1;
  background: #fff;
}

main > .feature-cards:first-child {
  margin-top: 0;
  padding-top: clamp(3rem, 6vw, 5rem);
}

main > .feature-cards:first-child::before {
  top: 0;
}

.feature-cards-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 2.25rem);
  max-width: 1320px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  padding: 2.85rem 1.85rem 2.4rem;
  background: #fff;
  border-bottom: 4px solid #ffe600;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.feature-card:nth-child(2) {
  transition-delay: 0.12s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.24s;
}

.feature-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.feature-card.is-accent {
  background: #ffe600;
  border-bottom-color: #ffe600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.feature-card-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 1.55rem;
  color: #ffe600;
}

.feature-card.is-accent .feature-card-icon {
  color: #111;
}

.feature-card-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.28rem, 1.85vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #111;
}

.feature-card p {
  margin: 0;
  max-width: 20rem;
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.55;
  color: #666;
}

.feature-card.is-accent p {
  color: #222;
}

.about {
  background: #fff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(1.25rem, 3vw, 2.75rem);
}

.about-media {
  display: grid;
  gap: 1rem;
}

.about-media-main {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.about-media-main img,
.about-media-side img,
.about-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 100%;
  aspect-ratio: 1;
  padding: 1.5rem 1rem;
  background: #000;
  color: #fff;
  text-align: center;
}

.about-stat-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 0.55rem;
}

.about-stat-icon svg {
  width: 100%;
  height: 100%;
}

.about-stat-number {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-stat-label {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-media-side {
  overflow: hidden;
  aspect-ratio: 1;
  background: #ddd;
}

.about-content {
  padding-right: clamp(0.5rem, 2vw, 2rem);
}

.about-eyebrow {
  margin: 0 0 0.9rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffe600;
  letter-spacing: 0.02em;
}

.about-content h2 {
  margin: 0 0 1.25rem;
  max-width: 18ch;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #111;
}

.about-text {
  margin: 0 0 1.85rem;
  max-width: none;
  font-size: clamp(1.1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  color: #666;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: end;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.about-list li {
  position: relative;
  padding-left: 2.15rem;
  font-size: clamp(1.2rem, 1.85vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  color: #222;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 3px;
  background-color: #ffe600;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23111' d='M6.3 11.6 2.8 8.1l1.2-1.2 2.3 2.3 5-5.2L12.5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem;
}

.about-inset {
  overflow: hidden;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  background: #111;
}

.positions {
  background: #fff;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  color: #111;
}

.positions-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3.25rem);
  align-items: center;
  width: 100%;
  padding: 0 clamp(1.25rem, 3vw, 2.75rem);
}

.positions-media {
  overflow: hidden;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  background: #111;
  border-bottom: 4px solid #ffe600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.positions-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.positions-eyebrow {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffe600;
  letter-spacing: 0.02em;
}

.positions-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.positions-rate {
  margin: 0 0 1.1rem;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: #c9a000;
}

.positions-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 1.45vw, 1.16rem);
  line-height: 1.7;
  color: #666;
}

.positions-role {
  padding: 1.6rem 1.5rem 1.7rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 4px solid #ffe600;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.position-tag {
  display: inline-flex;
  padding: 0.32rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  background: #ffe600;
}

.positions-role h3 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.positions-list {
  list-style: none;
  margin: 0 0 1.45rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.positions-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}

.positions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 2px;
  background-color: #ffe600;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23111' d='M6.3 11.6 2.8 8.1l1.2-1.2 2.3 2.3 5-5.2L12.5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.85rem;
}

.positions-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.8rem;
  background: #ffe600;
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 20px rgba(255, 230, 0, 0.35);
}

.positions-cta:hover {
  background: #ffef4d;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 230, 0, 0.45);
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 72vh, 720px);
  background: #000;
  color: #fff;
}

.why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.75rem, 6vw, 5rem) clamp(1.5rem, 4.5vw, 4rem);
}

.why-eyebrow {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
  font-weight: 800;
  color: #ffe600;
  letter-spacing: 0.02em;
}

.why-copy h2 {
  margin: 0 0 1.15rem;
  max-width: 14ch;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.why-text {
  margin: 0 0 2.25rem;
  max-width: 36rem;
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.why-point h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
}

.why-point p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.1rem;
  background: #ffe600;
}

.why-icon svg {
  width: 34px;
  height: 34px;
}

.why-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #1a1a1a;
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials {
  position: relative;
  overflow: hidden;
  min-height: clamp(720px, 88vh, 920px);
  display: flex;
  align-items: center;
  padding: clamp(5.5rem, 10vw, 8.5rem) clamp(1.5rem, 4vw, 3.5rem);
  color: #fff;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(1px);
  transform: scale(1.04);
}

.testimonials-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.testimonials-head {
  max-width: 860px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.testimonials-eyebrow {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffe600;
}

.testimonials-head h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.35rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.testimonials-lead {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.1rem;
  min-height: 340px;
  padding: 2.25rem 1.85rem 1.75rem;
  background: #fff;
  color: #333;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.testimonial-quote {
  margin: 0;
  font-size: clamp(1.08rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  color: #444;
}

.testimonial-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.95rem;
  align-items: center;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
}

.testimonial-role {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  color: #888;
}

.testimonial-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.5rem;
  line-height: 0.7;
  color: #ffe600;
  font-weight: 700;
}

.contact {
  background: #fff;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.contact-inner {
  max-width: 820px;
  margin: 0 auto;
}

.contact-eyebrow {
  margin: 0 0 1.25rem;
}

.contact-eyebrow span {
  display: inline-block;
  padding: 0.12em 0.35em;
  background: #ffe600;
  color: #111;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-inner h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111;
}

.contact-text {
  margin: 0 auto 2rem;
  max-width: 40rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: #666;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 2.2rem;
  background: #ffe600;
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 20px rgba(255, 230, 0, 0.35);
}

.contact-cta:hover {
  background: #ffef4d;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 230, 0, 0.45);
}

.site-footer {
  background: #000;
  color: #fff;
  min-height: clamp(720px, 88vh, 920px);
  display: flex;
  align-items: center;
  padding: clamp(5.5rem, 10vw, 8.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3rem);
}

.footer-inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "logo ."
    "links contact";
  column-gap: clamp(2.5rem, 6vw, 5rem);
  row-gap: 1.75rem;
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  grid-area: logo;
  display: block;
  margin: 0;
}

.footer-logo img {
  display: block;
  width: auto;
  height: clamp(96px, 12vw, 130px);
  object-fit: contain;
}

.footer-links-col {
  grid-area: links;
}

.footer-contact {
  grid-area: contact;
  justify-self: end;
  width: min(100%, 420px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col h3 {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  border-bottom: 3px solid #ffe600;
}

.footer-links {
  display: grid;
  gap: 1rem;
}

.footer-links a {
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffe600;
  transform: translateX(4px);
}

.footer-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.footer-info li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-height: 64px;
  padding: 0.9rem 1rem;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #ffe600;
  user-select: text;
  cursor: default;
}

.footer-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #111;
  background: #ffe600;
  flex-shrink: 0;
}

.footer-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-privacy {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 800;
  color: #ffe600;
  transition: opacity 0.2s ease;
}

.footer-privacy:hover {
  opacity: 0.85;
}

.footer-copy {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.55);
}

body.whatsform-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.whatsform-modal[hidden] {
  display: none !important;
}

.whatsform-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.whatsform-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.whatsform-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(90vh, 720px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.whatsform-modal-close {
  position: absolute;
  top: 0.4rem;
  right: 0.55rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.whatsform-modal-dialog iframe {
  display: block;
  width: 100%;
  min-width: 100%;
  height: min(80vh, 600px);
  border: 0;
  background: #fff;
}

@media (max-width: 900px) {
  .whatsform-modal {
    padding: 0;
    align-items: stretch;
  }

  .whatsform-modal-dialog {
    width: 100%;
    max-height: none;
    height: 100%;
    overflow: visible;
    box-shadow: none;
  }

  .whatsform-modal-dialog iframe {
    height: 100vh;
    height: 100dvh;
  }
}

.legal-page {
  background: #fff;
  padding: 2.5rem 1.25rem 4rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: #222;
  line-height: 1.7;
}

.legal-content h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.legal-content h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  color: #333;
}

.legal-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.page-empty {
  min-height: calc(100vh - 96px);
  min-height: calc(100dvh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #f7f7f7;
  color: #888;
  font-size: 1rem;
  font-weight: 500;
}

.nav-backdrop {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 0.9rem 1.15rem;
    min-height: 76px;
  }

  .logo img {
    height: 68px;
  }

  body.nav-open .site-header {
    z-index: 200;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 220;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 210;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(78vw, 300px);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 5.5rem 1.35rem 2rem;
    background: #fff;
    box-shadow: 8px 0 28px rgba(0, 0, 0, 0.14);
    transform: translateX(-105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    pointer-events: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 1rem 0.15rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1.12rem;
    pointer-events: auto;
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    justify-content: flex-start;
    padding: 2.75rem 1.25rem 3.25rem;
    order: 1;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-media {
    order: 2;
    min-height: 52vw;
    max-height: 420px;
    aspect-ratio: 4 / 3;
  }

  .feature-cards {
    margin-top: -2rem;
  }

  .feature-cards::before {
    top: 2rem;
  }

  main > .feature-cards:first-child {
    margin-top: 0;
  }

  main > .feature-cards:first-child::before {
    top: 0;
  }

  .feature-cards-inner {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 1rem;
  }

  .feature-card {
    min-height: 0;
    padding: 1.85rem 1.35rem 1.7rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.15rem;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content h2 {
    max-width: none;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .about-inset {
    max-width: 420px;
  }

  .positions-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.15rem;
  }

  .positions-media {
    min-height: 260px;
  }

  .why {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .why-copy {
    padding: 2.75rem 1.25rem 2.5rem;
  }

  .why-copy h2 {
    max-width: none;
  }

  .why-points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-media {
    min-height: 52vw;
    max-height: 420px;
    aspect-ratio: 4 / 3;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .testimonial-card {
    min-height: 0;
  }

  .site-footer {
    min-height: auto;
    align-items: stretch;
  }

  .footer-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "links"
      "contact";
    row-gap: 2.25rem;
    text-align: left;
  }

  .footer-contact {
    justify-self: start;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }

  .header-inner {
    padding: 0.8rem 1rem;
    min-height: 70px;
  }

  .hero-copy {
    padding: 2.25rem 1.1rem 2.75rem;
  }

  .hero-highlight {
    padding: 0.15em 0.28em;
  }

  .hero-media {
    min-height: 56vw;
    max-height: 360px;
  }

  .feature-cards {
    margin-top: -1.5rem;
  }

  .feature-cards::before {
    top: 1.5rem;
  }

  main > .feature-cards:first-child {
    margin-top: 0;
  }

  main > .feature-cards:first-child::before {
    top: 0;
  }

  .about-media-row {
    gap: 0.75rem;
  }

  .about-stat {
    padding: 1.1rem 0.7rem;
  }

  .about-stat-icon {
    width: 48px;
    height: 48px;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .about-stat-label {
    font-size: 0.85rem;
  }
}
