/*
Theme Name: Gutscheinwerft
Theme URI: https://gutscheinwerft.de
Author: Gutscheinwerft GmbH
Author URI: https://gutscheinwerft.de
Description: Custom theme for Gutscheinwerft — multilingual (DE/EN), Gutenberg blocks, Polylang.
Version: 1.0.0
License: Proprietary
Text Domain: gutscheinwerft
*/

/* =============================================================================
   FONTS
   ============================================================================= */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* =============================================================================
   DESIGN TOKENS
   ============================================================================= */

:root {
  /* Colors */
  --color-navy: #1B3D5F;
  --color-navy-dark: #152f4a;
  --color-navy-deeper: #112540;
  --color-white: #ffffff;
  --color-off-white: #f4f7fa;
  --color-nav-link: #8ec8e8;
  --color-nav-link-hover: #ffffff;
  --color-btn-primary-bg: #ffffff;
  --color-btn-primary-fg: #1B3D5F;
  --color-btn-primary-hover-bg: #e8f0f7;
  --color-footer-heading: #ffffff;
  --color-footer-link: #a8c8dd;
  --color-footer-link-hover: #ffffff;
  --color-footer-divider: #2d5478;
  --color-icon-border: #2d5478;
  --color-body-text: #1B3D5F;
  --color-text-muted: #5a7a96;
  --color-border: #d0dde8;

  /* Typography */
  --font-primary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing */
  --container-max: 1400px;
  --container-pad: 24px;
  --header-max: 1800px;
  --header-height: 80px;
  --section-pad-y: 80px;
  --section-pad-y-sm: 48px;

  /* Border radii */
  --radius-btn: 100px;
  --radius-card: 12px;
  --radius-icon: 8px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(27, 61, 95, 0.10);
  --shadow-header: 0 2px 16px rgba(27, 61, 95, 0.18);
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  color: var(--color-navy);
  background-color: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================================================
   CONTAINER
   ============================================================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-body-text);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  line-height: 1.7;
  color: var(--color-body-text);
}

/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-fg);
  border-color: var(--color-btn-primary-bg);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-btn-primary-hover-bg);
  color: var(--color-navy-dark);
  box-shadow: 0 4px 16px rgba(27, 61, 95, 0.15);
  transform: translateY(-1px);
}

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

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--color-white);
  color: var(--color-navy);
}

/* =============================================================================
   HEADER
   ============================================================================= */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-navy);
  height: var(--header-height);
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
  max-width: var(--header-max);
}

/* Logo */
.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img,
.site-header__logo svg {
  height: 40px;
  width: auto;
}

/* Primary nav */
.site-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-primary__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-primary__item {
  position: relative;
}

.nav-primary__link {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-nav-link);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-primary__link:hover,
.nav-primary__link:focus-visible,
.nav-primary__item.current-menu-item>.nav-primary__link,
.nav-primary__item.current-page-ancestor>.nav-primary__link {
  color: var(--color-nav-link-hover);
}

/* Dropdown */
.nav-primary__item--has-dropdown {
  position: relative;
}

.nav-primary__toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-nav-link);
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.nav-primary__toggle:hover,
.nav-primary__toggle[aria-expanded="true"] {
  color: var(--color-nav-link-hover);
}

.nav-primary__chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-primary__toggle[aria-expanded="true"] .nav-primary__chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background-color: var(--color-navy-dark);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

/* Small arrow pointing up */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--color-navy-dark);
}

.nav-primary__item--has-dropdown .nav-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-nav-link);
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown__link:hover,
.nav-dropdown__link[aria-current="page"] {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

/* Header actions */
.site-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switcher flag */
.site-header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switcher__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switcher__item:hover {
  opacity: 1;
  transform: scale(1.08);
}

.lang-switcher__flag {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

/* CTA button in header */
.site-header__cta {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* Hamburger toggle (mobile) */
.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.site-header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================================================
   MOBILE NAV
   ============================================================================= */

@media (max-width: 1023px) {
  .site-header__nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--color-navy-dark);
    padding: 20px var(--container-pad) 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    display: none;
    justify-content: flex-start;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .nav-primary {
    width: 100%;
  }

  .nav-primary__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav-primary__item {
    width: 100%;
  }

  .nav-primary__link {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    text-align: left;
  }

  /* Toggle stays flex so the chevron can sit on the right edge instead
     of dropping below the label. */
  .nav-primary__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    text-align: left;
  }

  /* Mobile dropdown: static, no absolute positioning */
  .nav-dropdown {
    position: static;
    transform: none !important;
    left: auto;
    top: auto;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    box-shadow: none;
    margin: 4px 0 8px 12px;
    padding: 4px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown.is-open {
    display: block;
  }

  .nav-primary__item--has-dropdown:hover .nav-dropdown {
    /* disable hover-open on mobile — use click only */
    display: none;
  }

  .nav-primary__item--has-dropdown:hover .nav-dropdown.is-open {
    display: block;
  }

  .site-header__toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .site-header__cta {
    display: none;
  }
}

/* Reduce section padding on mobile globally */
@media (max-width: 639px) {
  :root {
    --section-pad-y: 56px;
    --section-pad-y-sm: 32px;
  }
}

/* =============================================================================
   MAIN CONTENT
   ============================================================================= */

.site-main {
  min-height: 60vh;
  background-color: #F8F4EE;
  padding-bottom: 1px;
  padding-top: 0.001rem;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.site-footer {
  background-color: var(--color-navy);
  color: var(--color-footer-link);
}

.site-footer__top {
  padding: 64px 0 48px;
}

.site-footer__grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Dynamic columns area stretches; social column stays at its natural width */
.site-footer__cols {
  flex: 1;
  display: flex;
  gap: 140px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Footer column */
.footer-col__heading {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-footer-heading);
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__list a,
.footer-col__link {
  font-size: 1.2rem;
  color: var(--color-footer-link);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 2;
}

.footer-col__list a:hover,
.footer-col__link:hover {
  color: var(--color-footer-link-hover);
}

/* Social icons column */
.footer-col--social .footer-col__heading {
  text-align: left;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-icon-border);
  border-radius: var(--radius-icon);
  color: var(--color-footer-link);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.footer-social__link:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.06);
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer bottom bar */
.site-footer__bottom {
  border-top: 1px solid var(--color-footer-divider);
  padding: 24px 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__designer,
.site-footer__copyright {
  font-size: 0.8125rem;
  color: var(--color-footer-link);
  opacity: 0.75;
}

.site-footer__brand-logo {
  flex-shrink: 0;
}

.site-footer__brand-logo img,
.site-footer__brand-logo svg {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

/* Footer responsive */
@media (max-width: 1023px) {
  .site-footer__grid {
    flex-wrap: wrap;
  }

  .site-footer__cols {
    flex: 1 1 100%;
    gap: 40px 60px;
  }

  .footer-col--social {
    flex: 0 0 auto;
  }
}

@media (max-width: 639px) {
  .site-footer__cols {
    gap: 28px 20px;
  }

  .site-footer__grid {
    gap: 28px;
  }

  .footer-col__list a,
  .footer-col__link {
    font-size: 1rem;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =============================================================================
   LOGO SVG PLACEHOLDER STYLES
   ============================================================================= */

.site-logo-svg {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  text-decoration: none;
}

.site-logo-svg__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.site-logo-svg__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo-svg__text-top {
  font-size: 0.6875rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.site-logo-svg__text-bottom {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

/* =============================================================================
   PAGE CONTENT AREA
   ============================================================================= */

.site-main .entry-content {
  /* padding: var(--section-pad-y) 0; */
}

/* =============================================================================
   SKIP LINK
   ============================================================================= */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: 0 0 var(--radius-card) 0;
}

.skip-link:focus {
  top: 0;
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* =============================================================================
   HERO SLIDER BLOCK
   ============================================================================= */

:root {
  --color-btn-cta: #F5A623;
  --color-btn-cta-hover: #e09518;
  --color-btn-cta-text: #1B3D5F;
  --color-btn-secondary: #4a7bb0;
  --color-btn-secondary-hover: #5e8fc2;
}

.hero-slider {
  position: relative;
  background-color: var(--color-navy);
  overflow: hidden;
  width: 100%;
}

.hero-slider__track {
  position: relative;
  width: 100%;
}

/* Single slide — no clipping needed */
.hero-slider--single .hero-slider__track {
  display: block;
}

/* Multi slide — only active slide visible */
.hero-slider--multi .hero-slider__track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.hero-slider__slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-slider {
  margin-bottom: var(--section-pad-y);
}

.entry-content>.hero-slider:first-child {
  margin-bottom: 0;
}

.hero-slider--multi .hero-slider__slide {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}

.hero-slider--multi .hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Inner layout */
.hero-slider__inner {
  width: 100%;
}

/* Content */
.hero-slider__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 60%;
}

.hero-slider__badge {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  margin: 0;
}

.hero-slider__headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-slider__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* Bullets — 3 columns, per-row variable widths */
.hero-slider__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.hero-slider__bullets-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
}

.hero-slider__bullet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.hero-slider__bullet-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.hero-slider__bullet-check svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hero-slider__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: var(--color-btn-cta);
  color: var(--color-btn-cta-text);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.hero-slider__btn:hover,
.hero-slider__btn:focus-visible {
  background-color: var(--color-btn-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.35);
}

.hero-slider__btn--secondary {
  background-color: var(--color-btn-secondary);
  color: var(--color-white);
}

.hero-slider__btn--secondary:hover,
.hero-slider__btn--secondary:focus-visible {
  background-color: var(--color-btn-secondary-hover);
  box-shadow: 0 6px 24px rgba(74, 123, 176, 0.4);
}

/* Media — anchored right edge of viewport, full slide height, fades to center */
.hero-slider__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  max-width: none;
  margin: 0;
  padding: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 45%);
  mask-image: linear-gradient(to right, transparent 0%, #000 45%);
}

/* Dots */
.hero-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 0 32px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
  background-color: var(--color-btn-cta);
  transform: scale(1.3);
}

/* Arrows */
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  z-index: 10;
}

.hero-slider__arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-slider__arrow svg {
  width: 20px;
  height: 20px;
}

.hero-slider__arrow--prev {
  left: 24px;
}

.hero-slider__arrow--next {
  right: 24px;
}

/* Empty placeholder */
.hero-slider--empty {
  background-color: var(--color-navy);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1023px) {
  .hero-slider__slide {
    padding: 60px 0 40px;
  }

  .hero-slider__content {
    max-width: 100%;
  }

  .hero-slider__media {
    width: 80%;
    opacity: 0.35;
  }

  .hero-slider__image {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 60%);
    mask-image: linear-gradient(to right, transparent 0%, #000 60%);
  }

  .hero-slider__arrow--prev {
    left: 12px;
  }

  .hero-slider__arrow--next {
    right: 12px;
  }
}

@media (max-width: 639px) {
  .hero-slider__slide {
    padding: 48px 0 32px;
  }

  .hero-slider__headline {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero-slider__btn {
    padding: 14px 32px;
    font-size: 0.9375rem;
    width: 100%;
    justify-content: center;
  }

  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }
}

/* =============================================================================
   TWO COLUMN TEXT BLOCK
   ============================================================================= */

.two-col-text {
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
}

.two-col-text__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.two-col-text__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.two-col-text__headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  line-height: 1.15;
  margin: 0;
}

.two-col-text__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .two-col-text__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================================================
   TEXT / LIST CARDS BLOCK
   ============================================================================= */

.tlc {
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
}

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

.tlc__card {
  background-color: #ffffff;
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Icon */
.tlc__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
}

.tlc__icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.tlc__icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
}

/* First title */
.tlc__title {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000000;
  line-height: 1.3;
  margin: 0 0 16px;
}

/* Text */
.tlc__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* Second title */
.tlc__title2 {
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
  line-height: 1.3;
  margin: 0 0 20px;
}

/* Bullets */
.tlc__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tlc__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-body-text);
  line-height: 1.4;
}

.tlc__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tlc__check svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 767px) {
  .tlc__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   TEXT BLOCK
   ============================================================================= */

.text-block {
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
}

.text-block__headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 20px;
}

.text-block__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: var(--container-max);
}

.text-block__bullets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.text-block__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--color-body-text);
  line-height: 1.4;
}

.text-block__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.text-block__check svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 1023px) {
  .text-block__bullets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .text-block__bullets {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   IMAGE / TEXT BLOCK
   ============================================================================= */

.img-text {
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
}

.img-text__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

/* Image-right: swap column order */
.img-text--image-right .img-text__inner {
  direction: rtl;
}

.img-text--image-right .img-text__inner>* {
  direction: ltr;
}

/*
 * Text drives the row height — image follows.
 * Media is positioned relative so the image can fill it via absolute.
 */
.img-text__media {
  position: relative;
  min-height: 280px;
}

.img-text__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

.img-text__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ddeaf6;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.img-text__placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Text column determines the height */
.img-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.img-text__headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  line-height: 1.2;
  margin: 0;
}

.img-text__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1023px) {
  .img-text__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .img-text--image-right .img-text__inner {
    direction: ltr;
  }

  .img-text__media {
    min-height: 260px;
    position: relative;
  }
}

/* =============================================================================
   HERO TEXT / IMAGE BLOCK
   ============================================================================= */

.hero-ti {
  position: relative;
  background-color: transparent;
  padding: var(--section-pad-y) 0 var(--section-pad-y);
  overflow: hidden;
  margin-bottom: var(--section-pad-y);
}

.entry-content>.hero-ti:first-child {
  margin-bottom: 0;
}

.hero-ti__inner {
  width: 100%;
}

.hero-ti__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 60%;
}

.hero-ti__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  color: #000000;
  line-height: 1.15;
  margin: 0;
}

.hero-ti__text {
  font-size: 1rem;
  color: var(--color-navi);
  line-height: 1.7;
  margin: 0;
}

/* Bullets — 3 columns, per-row variable widths */
.hero-ti__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.hero-ti__bullets-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
}

.hero-ti__bullet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9375rem;
  color: var(--color-body-text);
  line-height: 1.4;
}

.hero-ti__bullet-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.hero-ti__bullet-check svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hero-ti__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hero-ti__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--color-navy);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.hero-ti__btn:hover {
  background-color: var(--color-navy-dark);
  transform: translateY(-1px);
}

.hero-ti__btn--secondary {
  background-color: var(--color-btn-secondary);
}

.hero-ti__btn--secondary:hover {
  background-color: var(--color-btn-secondary-hover);
}

/* Image — anchored right edge of viewport, full section height, fades to center */
.hero-ti__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  max-width: none;
  margin: 0;
  padding: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-ti__image,
.hero-ti__placeholder {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 45%);
  mask-image: linear-gradient(to right, transparent 0%, #000 45%);
}

@media (max-width: 1023px) {
  .hero-ti__content {
    max-width: 100%;
  }

  .hero-ti__media {
    width: 80%;
    opacity: 0.35;
  }

  .hero-ti__image,
  .hero-ti__placeholder {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 60%);
    mask-image: linear-gradient(to right, transparent 0%, #000 60%);
  }
}

/* =============================================================================
   GET STARTED BLOCK
   ============================================================================= */

.get-started {
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
}

.get-started__header {
  margin-bottom: 40px;
}

.get-started__badge {
  display: inline-block;
  background-color: #ddeaf6;
  color: var(--color-navy);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  margin-bottom: 16px;
}

.get-started__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 12px;
}

.get-started__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

/* 3 column grid */
.get-started__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.get-started__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: var(--radius-card);
  padding: 32px;
  overflow: hidden;
  z-index: 0;
  transition: box-shadow 0.3s ease;
}

/* Hover gradient via pseudo-element — bottom to ~40% upward, blue */
.get-started__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top,
      rgba(59, 158, 226, 0.15) 0%,
      rgba(59, 158, 226, 0.06) 30%,
      transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  pointer-events: none;
}

.get-started__card:hover::before {
  opacity: 1;
}

.get-started__card:hover {
  box-shadow: 0 8px 32px rgba(27, 61, 95, 0.1);
}

/* Card header — label + sublabel */
.get-started__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-bottom: 16px;
}

.get-started__card-label {
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-navy-dark);
}

.get-started__card-sublabel {
  font-size: 0.888rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.get-started__card-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 0 20px;
}

/* Card title */
.get-started__card-title {
  font-size: 0.777rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-navy);
  line-height: 1.3;
  margin: 2rem 0 2rem 0;
}

/* Bullets */
.get-started__bullets {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 6rem;
}

.get-started__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1;
  color: var(--color-navy);
  line-height: 1.5;
}

.get-started__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.get-started__check svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Spacer — pushes button to bottom */
.get-started__spacer {
  flex: 1;
}

/* CTA button: blue outline by default */
.get-started__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  background-color: transparent;
  border: 2px solid var(--color-btn-secondary);
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  margin-bottom: 12px;
}

.get-started__btn:hover,
.get-started__card:hover .get-started__btn {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: #ffffff;
}

/* Footnote */
.get-started__footnote {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .get-started__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .get-started__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   PROCESS BLOCK
   ============================================================================= */

.process {
  position: relative;
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
  margin: 0 0 var(--section-pad-y);
  overflow: hidden;
}

/* Gradient: starts at bottom, fades upward to ~50% of the element */
.process__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top,
      #c5d9ee 0%,
      #dae6f0 30%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.process__inner {
  position: relative;
  z-index: 1;
}

/* Header */
.process__header {
  margin-bottom: 40px;
}

.process__badge {
  display: inline-block;
  background-color: #ddeaf6;
  color: var(--color-navy);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  margin-bottom: 16px;
}

.process__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  line-height: 1.2;
  margin: 0;
}

/* Illustration */
.process__media {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}

.process__image {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
}

.process__illustration {
  width: 100%;
  max-width: 900px;
}

.process__illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Steps row */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.process__step-title {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
  margin: 0;
}

.process__step-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

/* Responsive */
@media (max-width: 1023px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =============================================================================
   VALUE CARDS BLOCK
   ============================================================================= */

.value-cards {
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
}

.value-cards__header {
  margin-bottom: 40px;
}

.value-cards__badge {
  display: inline-block;
  background-color: #ddeaf6;
  color: var(--color-navy);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  margin-bottom: 16px;
}

/* Long-form variant: when the badge field is used for a lead paragraph
   instead of a short pill label, switch to a readable text style. */
.value-cards__lead {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 0 16px;
}

.value-cards__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  line-height: 1.2;
  margin: 0;
}

/* 2-column grid */
.value-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Each card */
.value-cards__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #ffffff;
  border-radius: var(--radius-card);
  padding: 32px;
}

/* Icon area */
.value-cards__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.value-cards__icon svg {
  width: 44px;
  height: 44px;
  display: block;
}

.value-cards__icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

/* Text area */
.value-cards__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.value-cards__card-title {
  font-size: 0.8125rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
  line-height: 1.3;
  margin: 0;
}

.value-cards__card-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .value-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   OUR PLATFORM BLOCK
   ============================================================================= */

.our-platform {
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
}

.our-platform__badge-wrap {
  margin-bottom: 20px;
}

.our-platform__badge {
  display: inline-block;
  background-color: #ddeaf6;
  color: var(--color-navy);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  padding: 8px 20px;
  border-radius: var(--radius-btn);
}

/* Long-form variant: when the badge field is used for a lead paragraph
   instead of a short pill label, switch to a readable text style. */
.our-platform__lead {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0;
}

.our-platform__card {
  background-color: #ffffff;
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-items: center;
  overflow: hidden;
}

/* Col 1: image only, no background */
.our-platform__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  align-self: stretch;
}

.our-platform__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.our-platform__illustration {
  width: 100%;
}

.our-platform__illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Col 2: title + text */
.our-platform__content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-self: stretch;
}

.our-platform__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
  line-height: 1.3;
  margin: 0;
}

.our-platform__text {
  font-size: 1rem;
  color: var(--color-body-text);
  line-height: 1.7;
  margin: 0;
}

.our-platform__footnote {
  font-size: 0.875rem;
  color: var(--color-nav-link);
  margin: 4px 0 0;
}

.our-platform__footnote-link {
  color: var(--color-nav-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.our-platform__footnote-link:hover {
  color: var(--color-navy);
}

/* Col 3: vertical divider */
.our-platform__divider {
  width: 1px;
  align-self: stretch;
  background-color: var(--color-border);
  margin: 32px 0;
}

/* Col 4: bullets */
.our-platform__bullets {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  align-self: stretch;
  justify-content: center;
}

.our-platform__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-body-text);
  line-height: 1.4;
}

.our-platform__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-platform__check svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 1023px) {
  .our-platform__card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .our-platform__divider {
    width: auto;
    height: 1px;
    margin: 0 32px;
    align-self: auto;
  }

  .our-platform__content,
  .our-platform__bullets {
    padding: 32px;
  }

  .our-platform__media {
    padding: 24px;
  }

  /* On stacked layout the card height is content-driven, so the image
     can no longer fill 100% of an unknown parent height — restore its
     natural aspect ratio and clamp the max so it never dominates. */
  .our-platform__image {
    height: auto;
    object-fit: contain;
    max-height: 320px;
  }
}

@media (max-width: 639px) {

  .our-platform__content,
  .our-platform__bullets {
    padding: 24px 20px;
  }

  .our-platform__media {
    padding: 16px;
  }
}

/* =============================================================================
   OFFER CARDS BLOCK
   ============================================================================= */

.offer-cards {
  background-color: transparent;
  padding: 0 0 var(--section-pad-y);
}

.offer-cards__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000000;
  margin-bottom: 48px;
}

.offer-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offer-cards__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background-color: #ffffff;
  border-radius: var(--radius-card);
  padding: 32px;
}

/* Media area */
.offer-cards__media {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.offer-cards__image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.offer-cards__illustration {
  width: 100%;
  max-width: 280px;
}

.offer-cards__illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Card title */
.offer-cards__card-title {
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  margin-bottom: 16px;
}

/* Divider line */
.offer-cards__divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 0 20px;
}

/* Bullet list */
.offer-cards__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-cards__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-body-text);
  line-height: 1.4;
}

.offer-cards__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-cards__check svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Responsive */
@media (max-width: 1023px) {
  .offer-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .offer-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   REFERENZEN TICKER BLOCK
   ============================================================================= */

.ref-ticker {
  background-color: var(--color-navy);
  padding-top: 32px;
  padding-bottom: 0;
  margin-bottom: var(--section-pad-y);
}

/* Label row */
.ref-ticker__header {
  margin-bottom: 28px;
}

.ref-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  color: rgba(142, 200, 232, 0.75);
  letter-spacing: 0.02em;
}

.ref-ticker__label-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(142, 200, 232, 0.75);
}

/* Constrain ticker to content max-width and center it */
.ref-ticker__inner {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  position: relative;
}

/* Viewport — clips overflow, left/right edge fade stays inside container */
.ref-ticker__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  padding-bottom: 40px;
}

/* Track: two identical sets sitting side by side — JS drives the animation */
.ref-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.ref-ticker__track:hover {
  animation-play-state: paused;
}

/* One full copy of all logos. padding-right = gap so the join is gapless */
.ref-ticker__set {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  flex-shrink: 0;
  padding-right: clamp(32px, 5vw, 72px);
}

/* Keyframe uses a CSS var set by JS with the exact pixel width of one set */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(var(--ticker-offset, -50%));
  }
}

/* Individual logo item */
.ref-ticker__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.ref-ticker__item:hover {
  opacity: 1;
}

.ref-ticker__logo {
  height: clamp(32px, 5vw, 48px);
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Fallback SVG items */
.ref-ticker__item--fallback {
  color: var(--color-white);
}

.ref-ticker__item--fallback svg {
  height: 40px;
  width: auto;
  display: block;
}

/* Bottom gradient: starts AFTER the logos, navy → off-white */
.ref-ticker__gradient {
  height: 50px;
  background: linear-gradient(to bottom,
      var(--color-navy) 0%,
      rgba(244, 247, 250, 0.5) 70%,
      var(--color-off-white) 100%);
  pointer-events: none;
}

/* =============================================================================
   LIST CARDS BLOCK
   ============================================================================= */

.list-cards {
  padding: 80px 0;
}

.list-cards__header {
  margin: 0 0 56px;
}

.list-cards__headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.list-cards__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.list-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.list-cards__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.list-cards__card-title {
  font-size: 0.85rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}

.list-cards__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-cards__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.list-cards__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.list-cards__check svg {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 640px) {
  .list-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   ICON CARDS BLOCK
   ============================================================================= */

.icon-cards {
  padding: 0 0 var(--section-pad-y);
}

.icon-cards__header {
  margin-bottom: 48px;
}

.icon-cards__headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #000;
}

.icon-cards__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 680px;
}

.icon-cards__grid {
  display: grid;
  gap: 16px;
}

.icon-cards__grid--col3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.icon-cards__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.icon-cards__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-cards__icon-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.icon-cards__icon svg {
  width: 28px;
  height: 28px;
}

.icon-cards__label {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

.icon-cards__footnote {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 900px;
}

@media (max-width: 900px) {
  .icon-cards__grid--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {

  .icon-cards__grid--col3,
  .icon-cards__grid--col2 {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   CTA BANNER BLOCK
   ============================================================================= */

.cta-banner {
  position: relative;
  padding-top: 0;
  padding-bottom: var(--section-pad-y);
  /* no bottom gap — merges into footer */
  overflow: hidden;
  background: var(--color-off-white);
}

/* Centered text content */
.cta-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--container-pad) 56px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.cta-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--color-navy);
}

.cta-banner__icon svg,
.cta-banner__icon-img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.cta-banner__headline {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 36px;
  max-width: 640px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 44px;
  background: var(--color-navy);
  color: #ffffff;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 0.2s ease;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.cta-banner__btn:hover {
  background: var(--color-navy-dark);
  color: #ffffff;
}

.cta-banner__subtext {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Decorative bars ---- */

.cta-banner__bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 600px;
  padding: 0;
}

.cta-banner__bar {
  flex: 1;
  height: var(--bar-h, 60%);
  background: linear-gradient(to top right,
      var(--color-navy) 0%,
      #c5d9ed 100%);
  border-radius: 6px 6px 0 0;
}

/* ---- Gradient overlay: fades bars into footer navy ---- */

.cta-banner__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 3;
  background: linear-gradient(to bottom,
      transparent 0%,
      var(--color-navy) 100%);
  pointer-events: none;
}

@media (max-width: 639px) {
  .cta-banner__bars {
    height: 220px;
  }

  .cta-banner__btn {
    width: 100%;
    max-width: 320px;
  }
}

/* =============================================================================
   STATS CARDS BLOCK
   ============================================================================= */

.stats-cards {
  padding: 0 0 var(--section-pad-y);
}

.stats-cards__badge {
  display: inline-block;
  background: #dce8f5;
  color: var(--color-navy);
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Long-form variant: when the badge field is used for a lead paragraph
   instead of a short pill label, switch to a readable text style. */
.stats-cards__lead {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 0 20px;
}

.stats-cards__headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0 0 40px;
}

.stats-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

/* Card base */
.stats-cards__card {
  background: #dce8f5;
  border-radius: var(--radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 180px;
}

/* Middle card (white/light) */
.stats-cards__card:nth-child(2) {
  background: #f4f4f0;
}

.stats-cards__stat {
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.stats-cards__desc {
  font-size: 1rem;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.stats-cards__icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-navy);
  border-radius: var(--radius-icon);
  flex-shrink: 0;
}

.stats-cards__icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Icon-only card: icon on top, text below */
.stats-cards__card--icon {
  justify-content: center;
  gap: 20px;
}

.stats-cards__footnote {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1023px) {
  .stats-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .stats-cards__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-cards__card {
    padding: 32px 24px;
    min-height: 0;
  }
}

/* =============================================================================
   CARDS & CTA BLOCK
   ============================================================================= */

.ccta {
  padding: 0 0 var(--section-pad-y);
}

.ccta__headline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
}

/* ---- Top white cards ---- */

.ccta__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ccta__top-row {
  display: grid;
  gap: 16px;
}

.ccta__top-row--1 {
  grid-template-columns: 1fr;
}

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

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

.ccta__top-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}

.ccta__top-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ccta__top-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ccta__top-icon svg {
  width: 24px;
  height: 24px;
}

.ccta__top-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 4px;
}

/* ---- Bottom blue cards ---- */

.ccta__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.ccta__bot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #dce8f5;
  border-radius: var(--radius-card);
  padding: 36px 24px 28px;
  text-align: center;
  min-height: 200px;
}

.ccta__bot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

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

.ccta__bot-icon svg {
  width: 48px;
  height: 48px;
}

.ccta__bot-label {
  font-size: 0.95rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: var(--color-navy);
  padding-top: 12px;
  border-top: 1px solid rgba(27, 61, 95, 0.15);
  width: 100%;
}

/* ---- CTA ---- */

.ccta__cta-wrap {
  display: flex;
  justify-content: center;
}

.ccta__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--color-navy);
  color: #ffffff;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 0.2s ease;
  letter-spacing: 0.01em;
}

.ccta__cta:hover {
  background: var(--color-navy-dark);
  color: #ffffff;
}

/* ---- Responsive ---- */

@media (max-width: 1023px) {
  .ccta__bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ccta__top-row--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ccta__top-row--3 .ccta__top-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {

  .ccta__top-row--2,
  .ccta__top-row--3 {
    grid-template-columns: 1fr;
  }

  .ccta__top-row--3 .ccta__top-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

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

  .ccta__cta {
    width: 100%;
  }
}

/* =============================================================================
   BLOCK EDITOR ALIGNMENT SUPPORT
   ============================================================================= */

.wp-block {
  max-width: var(--container-max);
}

/* =============================================================================
   eRECHT24 LEGAL TEXTS
   ============================================================================= */
.wp-block-erecht24 {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--container-pad);
}

.wp-block-erecht24 h1,
.wp-block-erecht24 h2,
.wp-block-erecht24 h3,
.wp-block-erecht24 h4,
.wp-block-erecht24 h5,
.wp-block-erecht24 h6 {
  margin: 1.5em 0 0.6em;
}

.wp-block-erecht24> :first-child {
  margin-top: 0;
}

.wp-block-erecht24 p,
.wp-block-erecht24 ul,
.wp-block-erecht24 ol {
  margin: 0 0 1em;
}

.wp-block-erecht24 li {
  margin-bottom: 0.4em;
}

/* =============================================================================
   CONTACT FORM 7
   ============================================================================= */
.wp-block-contact-form-7-contact-form-selector {
  padding: 0 0 var(--section-pad-y);
}

.wpcf7 {
  max-width: 640px;
  margin: 0 auto;
}

.wpcf7-form p {
  margin: 0 0 20px;
}

.wpcf7-form label {
  display: block;
  font-weight: var(--font-weight-semibold);
  font-size: 0.9375rem;
  color: var(--color-body-text);
  line-height: 1.4;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7-form select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  color: var(--color-body-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-icon);
  line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(27, 61, 95, 0.12);
}

.wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Checkbox / radio lists */
.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-radio {
  display: block;
  margin-top: 4px;
}

.wpcf7-form .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0 16px 0 0;
}

.wpcf7-form .wpcf7-list-item-label {
  font-weight: var(--font-weight-regular);
  color: var(--color-body-text);
}

.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: var(--color-navy);
  cursor: pointer;
}

/* Submit button — mirrors .btn / .btn--primary on a navy surface inverted */
.wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-navy);
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:focus-visible {
  background-color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
  box-shadow: 0 4px 16px rgba(27, 61, 95, 0.20);
  transform: translateY(-1px);
}

.wpcf7-form input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Validation states */
.wpcf7-form .wpcf7-not-valid {
  border-color: #d93636;
  box-shadow: 0 0 0 3px rgba(217, 54, 54, 0.10);
}

.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 0.8125rem;
  color: #d93636;
}

/* Status banners (success / error) */
.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-icon);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #1f7a4a;
  background-color: #e8f5ee;
  color: #155a36;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: 1px solid #d93636;
  background-color: #fdecec;
  color: #8c1f1f;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border: 1px solid #b35900;
  background-color: #fff4e6;
  color: #7a3d00;
}

/* Loading spinner */
.wpcf7-form .wpcf7-spinner {
  margin-left: 12px;
  vertical-align: middle;
}

/* Conditional Fields plugin — smooth show/hide */
.wpcf7-form .wpcf7cf_group {
  transition: opacity 0.2s ease;
}

@media (max-width: 640px) {
  .wpcf7-form input[type="submit"] {
    width: 100%;
  }
}