:root {
  --ink: #0f1f35;
  --ink-2: #17304b;
  --blue: #4a90e2;
  --blue-2: #8ec5ff;
  --light: #e6f0fc;
  --light-2: #edf3fb;
  --white: #ffffff;
  --muted: #55657a;
  --muted-2: #73849a;
  --border: #d9e4f2;
  --success: #0f9d58;
  --danger: #c0392b;
  --shadow-sm: 0 6px 18px rgba(15, 31, 53, 0.08);
  --shadow-md: 0 10px 24px rgba(15, 31, 53, 0.12);
  --shadow-lg: 0 18px 36px rgba(15, 31, 53, 0.18);
  --radius: 16px;
  --radius-lg: 22px;
  --container: 1200px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 1rem;
  color: var(--muted);
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  color: var(--ink);
}
h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}
h3 {
  font-size: 1.15rem;
}
ul {
  margin: 0;
  padding-left: 1rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  overflow: visible;
  transition:
    box-shadow var(--transition);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 20px;
  background: #ffffff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1440,0 L1440,10 C1320,35 1200,40 1080,30 C960,20 840,10 720,15 C600,20 480,35 360,38 C240,40 120,30 0,20 Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1440,0 L1440,10 C1320,35 1200,40 1080,30 C960,20 840,10 720,15 C600,20 480,35 360,38 C240,40 120,30 0,20 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  pointer-events: none;
}
.header-wave {
  display: none;
}
.site-header.scrolled {
  box-shadow: 0 10px 24px rgba(15, 31, 53, 0.08);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-size: 0.95rem;
}
.brand-text small {
  font-size: 0.795rem;
  color: var(--muted);
}
.desktop-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.desktop-nav a {
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}
.desktop-nav a:hover,
.desktop-nav a.active {
  background: var(--light);
  color: var(--ink);
}
.desktop-cta {
  margin-left: 0.5rem;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
  margin-left: 0.25rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  padding: 0 0 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open {
  display: grid;
  gap: 0.35rem;
}
.mobile-nav a {
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(217, 228, 242, 0.7);
  font-weight: 600;
  color: var(--muted);
}
.mobile-nav a:last-of-type {
  border-bottom: none;
}
.mobile-nav .btn {
  margin-top: 0.4rem;
}
.mobile-nav .btn-primary {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.1;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 3px solid rgba(74, 144, 226, 0.35);
  outline-offset: 2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #3a78c5);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--ink);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--ink-2);
}
.btn-outline {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--light);
  color: var(--ink);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.28);
  border-color: transparent;
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.38);
  border-color: transparent;
  color: #fff;
}
.btn-light {
  background: #fff;
  border-color: var(--border);
  color: var(--ink);
}
.btn-light:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.28);
  border-color: transparent;
  color: #fff;
}

.theme-dark {
  /* Must be single-color so wave separators can match pixel-perfectly */
  color: #fff;
  background: var(--ink);
}
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4 {
  color: #fff;
}
.theme-dark p {
  color: rgba(255, 255, 255, 0.82);
}
.theme-light {
  /* Light section must follow hero and alternate with theme-soft */
  background: var(--white);
  color: var(--ink);
}
.theme-soft {
  /* Solid color so wave separators can match pixel-perfectly */
  background: var(--light);
}
.theme-soft h2,
.theme-soft h3 {
  color: var(--ink);
}

.section {
  padding: 4.25rem 0;
  position: relative;
}
.section.compact {
  padding: 3rem 0;
}
.section-header {
  margin: 0 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}
.section-header .intro {
  max-width: 700px;
}
.section-header .eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--blue);
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.theme-dark .section-header .eyebrow {
  color: #e9f3ff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}
.section-header p {
  margin: 0;
  max-width: 65ch;
}

.wave {
  height: 68px;
  line-height: 0;
  margin-bottom: -1px;
  /* Two-tone section separator: background = previous section, path fill = next section */
  --wave-from: var(--white);
  --wave-to: var(--light);
  background: var(--wave-from);
}
.wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wave path {
  fill: var(--wave-to);
}

/* map wave colors to section backgrounds (must match exactly) */
.wave.from-dark {
  --wave-from: var(--ink);
}
.wave.from-light {
  --wave-from: var(--white);
}
.wave.from-soft {
  --wave-from: var(--light);
}
.wave.to-dark {
  --wave-to: var(--ink);
}
.wave.to-light {
  --wave-to: var(--white);
}
.wave.to-soft {
  --wave-to: var(--light);
}

.hero {
  padding: 4.75rem 0 3.25rem;
  margin-top: -20px;
  margin-bottom: -1px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-copy p {
  font-size: 1.05rem;
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.trust-pill {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}
.trust-pill strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}
.trust-pill small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}
.hero-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 0.9rem;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-kpis {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.hero-kpis .kpi {
  padding: 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.hero-kpis .kpi strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.hero-kpis .kpi span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.grid {
  display: grid;
  gap: 1rem;
}
.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.theme-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.theme-dark .card p {
  color: rgba(255, 255, 255, 0.78);
}
.theme-dark .card h3,
.theme-dark .card h4 {
  color: #fff;
}
.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.card .muted-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.card .muted-list li {
  padding: 0.35rem 0;
  color: var(--muted);
  border-top: 1px dashed rgba(15, 31, 53, 0.12);
}
.theme-dark .card .muted-list li {
  color: rgba(255, 255, 255, 0.78);
  border-top-color: rgba(255, 255, 255, 0.12);
}

.media-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.media-card img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.theme-dark .media-card img {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.media-card .card-body {
  padding: 1rem;
}
.media-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(74, 144, 226, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.6rem;
}
.theme-dark .media-card .tag {
  background: rgba(255, 255, 255, 0.12);
  color: #eaf4ff;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.theme-dark .panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}
.panel img {
  border-radius: 14px;
}
.highlight-list {
  display: grid;
  gap: 0.6rem;
}
.highlight {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.75rem;
  border-radius: 12px;
}
.highlight i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.12);
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
  flex-shrink: 0;
}
.highlight strong {
  display: block;
  margin-bottom: 0.2rem;
}
.highlight p {
  margin: 0;
  font-size: 0.9rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.stat {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  padding: 0.9rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--ink);
}
.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}
.theme-dark .stat {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}
.theme-dark .stat strong {
  color: #fff;
}
.theme-dark .stat span {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 0.85rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem;
}
.step .num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  color: #fff;
  font-weight: 700;
}
.step p {
  margin: 0;
  font-size: 0.92rem;
}
.theme-dark .step {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}
.theme-dark .step p {
  color: rgba(255, 255, 255, 0.78);
}

.price-cards .card {
  height: 100%;
}
.price-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0.35rem 0 0.7rem;
}

.faq {
  display: grid;
  gap: 0.65rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.theme-dark .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}
.faq-btn {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0.95rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}
.faq-btn:hover {
  background: rgba(74, 144, 226, 0.04);
}
.theme-dark .faq-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq-btn .arrow {
  transition: transform var(--transition);
}
.faq-btn[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}
.faq-panel .faq-body {
  padding: 0 1rem 1rem;
}
.faq-panel p {
  margin: 0;
  font-size: 0.92rem;
}

.form-shell {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 18px;
  padding: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.form-field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.form-field label {
  font-weight: 700;
  font-size: 0.86rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.form-field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 3px solid rgba(74, 144, 226, 0.18);
  border-color: var(--blue);
}
.form-field.is-error input,
.form-field.is-error textarea,
.form-field.is-error select {
  border-color: var(--danger);
  background: #fff8f7;
}
.field-error {
  font-size: 0.8rem;
  color: var(--danger);
  display: none;
}
.form-field.is-error .field-error {
  display: block;
}
.form-success {
  display: none;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(15, 157, 88, 0.25);
  background: rgba(15, 157, 88, 0.08);
  color: #0a7b45;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font-weight: 600;
}
.form-success.show {
  display: block;
}
.form-note {
  font-size: 0.82rem;
  color: var(--muted-2);
  margin-top: 0.4rem;
}
.checkbox-group {
  display: grid;
  gap: 0.45rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.checkbox-label:hover {
  border-color: var(--blue);
  background: rgba(74, 144, 226, 0.04);
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.2rem 0 1rem;
}
.chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}
.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.chip.active {
  background: rgba(74, 144, 226, 0.12);
  border-color: rgba(74, 144, 226, 0.35);
  color: var(--blue);
}
.theme-dark .chip {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.theme-dark .chip.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  min-width: min(100%, 340px);
}
.search-box input {
  border: 0;
  outline: none;
  flex: 1;
  font: inherit;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.kpi-strip .stat {
  padding: 1rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-weight: 700;
  font-size: 0.72rem;
  background: rgba(74, 144, 226, 0.1);
  color: var(--blue);
}
.testimonial {
  display: grid;
  gap: 0.55rem;
}
.testimonial .quote {
  font-size: 0.95rem;
  margin: 0;
}
.testimonial .who {
  font-size: 0.82rem;
  color: var(--muted);
}
.testimonial-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
}
.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-body .quote {
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-style: italic;
}
.testimonial-body .who {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.reason-card {
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reason-dark {
  background: var(--ink);
  color: #fff;
}
.reason-light {
  background: var(--light);
  color: var(--ink);
  border: 1px solid var(--border);
}
.reason-white {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}
.reason-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.reason-dark h3 {
  color: #fff;
}
.reason-num {
  color: var(--blue);
  margin-right: 0.25rem;
}
.reason-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  flex-grow: 1;
}
.reason-dark p {
  color: rgba(255, 255, 255, 0.8);
}
.reason-light p {
  color: var(--muted);
}

/* Rekry CTA – full-width image banner */
.rekry-cta {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  padding: 8rem 0;
  overflow: hidden;
  margin: 0;
}
.rekry-cta-wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}
.rekry-cta-wave svg {
  display: block;
  width: 100%;
  height: 64px;
}
.rekry-cta-wave-top {
  top: 0;
}
.rekry-cta-wave-bottom {
  bottom: 0;
}
.rekry-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 53, 0.65);
}
.rekry-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.rekry-cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: #fff;
}
.rekry-cta-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
}
.article-content h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}
.article-content .pull-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  border-left: 4px solid var(--blue);
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin: 2rem 0;
}
.article-content .article-img {
  margin: 2rem -2rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-content .article-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.article-content .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.article-content .two-col h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.article-content .two-col p {
  font-size: 0.95rem;
}
@media (max-width: 760px) {
  .article-content .two-col {
    grid-template-columns: 1fr;
  }
  .article-content .article-img {
    margin: 1.5rem 0;
    border-radius: 12px;
  }
}
a.media-card {
  text-decoration: none;
  color: inherit;
}
a.media-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.city-card {
  padding: 0;
  overflow: hidden;
}
.city-img-wrapper {
  position: relative;
}
.city-img-wrapper img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  display: block;
}
.city-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
  line-height: 1.5;
}
.person-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.person-card-expanded {
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
}
.person-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.person-title {
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.person-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.person-contact {
  font-size: 0.88rem;
  margin: 0;
}
.person-contact a {
  color: var(--ink);
}
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.cta-band {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
}
.cta-band .cta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.cta-band p {
  margin: 0;
  max-width: 58ch;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 2.5rem 0 1.1rem;
  margin-top: 0;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.75fr 0.9fr;
  gap: 1rem;
  padding-bottom: 1.25rem;
}
.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-brand .brand-mark {
  margin-top: 0.1rem;
}
.footer-brand strong {
  display: block;
  margin-bottom: 0.3rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-links li,
.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: #fff;
}
.site-footer h4 {
  color: #fff;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 3.6rem;
  }
  .hero-copy {
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.35rem 0;
  }
  .wave {
    height: 36px;
  }
  .site-header::after {
    bottom: -12px;
    height: 12px;
  }
  .rekry-cta-wave svg {
    height: 36px;
  }
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust {
    grid-template-columns: 1fr;
  }
  .hero-kpis {
    grid-template-columns: 1fr;
  }
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .stat-grid,
  .kpi-strip {
    grid-template-columns: 1fr;
  }
  .section-header {
    margin-bottom: 1.15rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cta-band .cta-row {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Direct contact section */
.direct-contact {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
}
.direct-contact p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.direct-contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.direct-contact-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.direct-contact-actions .btn svg {
  flex-shrink: 0;
}
