    /* =========================
       Design tokens / reset
    ========================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --font-base: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

      --color-green: #21ab00;
      --color-maroon: #871639;
      --color-blue: #3f3e74;
      --color-navy: #1c1c2d;
      --color-white: #ffffff;
      --color-black: #000000;

      --color-page-bg: #f5f5f7;
      --color-text-main: #111111;
      --color-text-muted: #4b4b4b;
      --color-border-soft: #e5e7eb;

      --radius-pill: 999px;
      --radius-btn: 15px;
      --radius-card: 18px;
      --radius-large: 18px;

      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.24);
      --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.18);

      --transition-fast: 0.18s ease-out;
      --container-max: 1200px;
    }

	html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
  overflow-x: hidden;
}


    body {
      font-family: var(--font-base);
      background: var(--color-page-bg);
      color: var(--color-text-main);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background-color: #fff;
    }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section { scroll-margin-top: 80px; }

    /* =========================
       Buttons
    ========================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.1rem;
      border-radius: var(--radius-btn);
      border: 2px solid transparent;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
    }

    .btn--blue {
      background: var(--color-blue);
      color: var(--color-white);
      border-radius: var(--radius-btn);
    }

    .btn--maroon {
      background: var(--color-maroon);
      color: var(--color-white);
      border-radius: var(--radius-btn);
    }

    .btn--outline-light {
      background: transparent;
      color: var(--color-white);
      border-color: var(--color-white);
    }

    .btn--outline-dark {
      background: transparent;
      color: var(--color-white);
      border-color: var(--color-white);
    }

    .btn:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    }

    /* Consistent button width for action groups */
    .hero-actions .btn {
      min-width: 200px;
      text-align: center;
    }

    /* =========================
       Highlight pills
    ========================== */
    .highlight-pill {
      display: inline-block;
      padding: 0.1em 0.55em;
      border-radius: 15px;
      background: var(--color-maroon);
    }
    .highlight-pill--blue {
      background: var(--color-blue);
    }

    /* =========================
       Header (nav centered)
    ========================== */
    .site-header {
      background: #151519;
      color: var(--color-white);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .header-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0.9rem 1.5rem;
      display: grid;
      grid-template-columns: auto 1fr auto; /* logo / nav / actions */
      align-items: center;
      gap: 1.5rem;
      position: relative; /* for absolute mobile menu positioning */
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0rem;
    }

    .brand img,
    .brand-logo {
      width: 130px;  /* adjust as needed */
      height: auto;
      display: block;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #000;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand-mark span {
      color: var(--color-white);
      font-weight: 700;
      font-size: 1.1rem;
    }

    .brand-name {
      font-weight: 600;
      font-size: 1.2rem;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3.25rem;
      font-size: 0.95rem;
      margin-left: 130px;
    }

    .main-nav a {
      opacity: 0.85;
      padding-bottom: 0.15rem;
      position: relative;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--color-blue);
      transition: width var(--transition-fast);
    }

    .main-nav a:hover {
      opacity: 1;
    }
    .main-nav a:hover::after { width: 100%; }

    .header-actions {
      display: flex;
      gap: 0.6rem;
    }

    .nav-toggle {
      display: none;
      width: 34px;
      height: 18px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
	background-color: black;
    }

    .nav-toggle span {
      display: block;
      height: 2px;
      border-radius: 999px;
      background: var(--color-white);
    }

    /* =========================
       Hero (green)
    ========================== */
    .hero {
      background-image: url("images/hero.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: var(--color-white);
      padding: 7.25rem 0 15rem;
    }

    .hero-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .hero-copy {
      max-width: 32rem;
    }

    .hero-video {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-video .video-thumb {
      width: 100%;
      max-width: 520px;
      aspect-ratio: 16 / 9;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
      background: url("images/thumb.jpg") center / cover no-repeat;
    }

    .hero-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 0.7rem;
      font-weight: 600;
    }

    .hero-title {
      font-size: clamp(2.3rem, 3vw + 1rem, 3.3rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.6;
      margin-bottom: 3rem;
    }

    .hero-highlight {
      display: inline;
      padding: 0 0.4em;
      border-radius: 15px;
      background: var(--color-blue);
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }

    .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 3rem;
      color: var(--color-white);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 0rem;
    }

    .hero-right { display: none; } /* legacy, unused */

    /* =========================
       ROI band
    ========================== */
    .calculator-shell {
      background: transparent;
      padding: 0 0 2.75rem;
      margin-top: -150px;
    }

    .roi-card {
      max-width: 100%;
      background: #1b1b1b;
      color: var(--color-white);
      border-radius: var(--radius-large);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 2.7rem 4rem 2.8rem;
    }

    .roi-card-header {
      text-align: center;
      margin-bottom: 1.4rem;
    }

    .roi-card-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .roi-card-sub {
      font-size: 1rem;
      color: #d4d4d4;
    }

    .roi-content {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 5.8rem;
      align-items: center;
    }

    .roi-form {
      display: grid;
      gap: 1.8rem;
    }

    .roi-field {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .roi-field label {
      font-size: 1rem;
      color: #d0d0d0;
      font-weight: 500;
    }

    .roi-slider-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 0rem;
      align-items: center;
      margin-top: 0.35rem;
      min-height: 28px;
    }

    .roi-slider-row input[type="range"] {
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
      height: 30px;
      border-top-left-radius:10px;
      border-top-right-radius:0px;
      border-bottom-right-radius:0px;
      border-bottom-left-radius:10px;
      background: #fff;
      outline: none;
      cursor: pointer;
    }

    .roi-slider-row input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 40px;
      height: 28px;
      border-radius: 10px;
      background-color: var(--color-maroon);
      background-image: url("images/arrow.svg");
      background-size: 18px 18px;
      background-repeat: no-repeat;
      background-position: center;
      border: none;
    }

    .roi-slider-row input[type="range"]::-moz-range-thumb {
      width: 40px;
      height: 24px;
      border-radius: 10px;
      background-color: var(--color-maroon);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M6 3l5 5l-5 5H5l5-5l-5-5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      border: none;
      box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
    }

    .roi-slider-row input[type="range"]::-moz-range-track {
      height: 8px;
      border-radius: 10px;
      background: #d9d9de;
    }

    .roi-slider-value {
      min-width: 100px;
      padding: 0.333rem 0.9rem;
      border-radius:10px;
      background: #b3b3b8;
      color: #fff;
      font-size: 1.1rem;
      text-align: center;
      margin-left: -6px;
    }

    .roi-bullets {
      font-size: 0.8rem;
      color: #fff;
      list-style: none;
      padding-left: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .roi-bullets li {
      position: relative;
      padding-left: 1.2rem;
      font-size: 1rem;
    }

    .roi-bullets li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1rem;
      color: #ffffff;
    }

    .roi-results {
      margin-top: 1.2rem;
      font-size: 0.9rem;
      color: #d4d4d4;
    }
    
    /* ROI CALCULATOR (client version) */

:root {
    --bg: #151519;
    --card-bg: #1c1c2d;
    --accent: #871639;
    --accent-soft: rgba(135, 22, 57, 0.15);
    --text-main: #ffffff;
    --text-muted: #a4a4b3;
    --track: #2e2e40;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.4);
    --radius-lg: 18px;
    --transition-fast: 200ms ease-out;
  }

  * { box-sizing: border-box; }

  .calculator-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
    width: 100%;
    background: linear-gradient(135deg, #1c1c2d, #151519);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 32px clamp(24px, 4vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    color: var(--text-main);
  }

  .calc-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 32px;
    align-items: flex-start;
  }
  @media (max-width: 880px) {
    .calc-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .savings-body { flex-direction: column; gap: 16px; }
    .savings-card { text-align: center; }
    .stat-row { justify-content: center; }
  }

  .calc-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .calc-heading { margin-bottom: 24px; }
  .calc-heading h1 {
    margin: 0 0 4px;
    font-weight: 650;
    letter-spacing: 0.03em;
    font-size: 2rem;
  }
  .calc-heading p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
  }

  .input-card {
    background: radial-gradient(circle at top left, #252538, #1c1c2d);
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
  }
  .input-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(135, 22, 57, 0.2), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
  }
  .input-card > * { position: relative; z-index: 1; }

  .input-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 550;
    margin-bottom: 4px;
  }

  .slider-thumb-label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    padding: 5px 10px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    pointer-events: none;
    z-index: 3;
  }
  .slider-thumb-label .thumb-arrow {
    font-size: 0.6rem;
    opacity: 0.7;
  }

  .slider-wrap {
    position: relative;
    padding-block: 14px;
  }

  /* RANGE slider track – transparent so the fill div behind shows through */
  input[type="range"] {
    width: 100%;
    appearance: none;
    height: 8px;
    border-radius: 999px;
    background: transparent;
    outline: none;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  /* Thumb: invisible but keeps hit area for dragging */
  input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 48px;
    height: 28px;
    border-radius: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: grab;
  }
  input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
  }
  input[type="range"]::-moz-range-thumb {
    width: 48px;
    height: 28px;
    border-radius: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: grab;
  }
  input[type="range"]::-moz-range-thumb:active {
    cursor: grabbing;
  }

  /* Track background + colored fill - sits behind the transparent input */
  .slider-fill {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    border-radius: 999px;
    overflow: hidden;
    background: var(--track);
  }
  .slider-fill-inner {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #3f3e74);
    width: 0;
  }

  .hint {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* Savings dashboard card */
  .savings-card {
    background: radial-gradient(circle at top left, #252538, #1c1c2d);
    border-radius: var(--radius-lg);
    padding: 18px 20px 16px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
  }
  .savings-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(135, 22, 57, 0.25), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
  }
  .savings-card > * { position: relative; z-index: 1; }

  .savings-header {
    font-size: 0.95rem;
    font-weight: 550;
    margin-bottom: 12px;
  }

  .savings-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .gauge-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
  }
  .gauge-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  .gauge-track {
    fill: none;
    stroke: var(--track);
    stroke-width: 10;
  }
  .gauge-fill {
    fill: none;
    stroke: url(#gaugeGrad);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 439.82;
    stroke-dashoffset: 439.82;
    transition: stroke-dashoffset 500ms cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 0 8px rgba(135, 22, 57, 0.4));
  }
  .gauge-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .gauge-number {
    font-size: 2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #c8c8d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .gauge-unit {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 3px;
  }

  .savings-info {
    min-width: 0;
    text-align: center;
  }

  .stat-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
  }
  .stat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .stat-value {
    font-size: 1.35rem;
    font-weight: 650;
    font-variant-numeric: tabular-nums;
  }
  .stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
  }

  .savings-anchor {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0 0 8px;
  }
  .savings-anchor strong {
    color: var(--text-main);
  }
  .savings-basis {
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.6;
    margin: 0;
  }

  .calc-right {
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }
  .calc-cta {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
  }
  @media (max-width: 880px) {
    .calc-cta { margin-top: 24px; margin-bottom: 0; }
  }
  .calc-cta p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .calc-cta .btn--maroon {
    transition: box-shadow 0.4s ease;
  }
  .calc-cta.cta-glow .btn--maroon {
    box-shadow: 0 0 24px rgba(135, 22, 57, 0.5), 0 0 48px rgba(135, 22, 57, 0.2);
  }
  /* Right column */
  .process-card {
    background: #1a1a28;
    border-radius: var(--radius-card);
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .process-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
  }
  .process-title h2 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .process-chip {
    min-width: fit-content;
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
  }
  .process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  .process-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }
  .process-bullet {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(135, 22, 57, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .process-bullet svg { width: 10px; height: 10px; fill: #ffffff; }
  .process-footnote {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.85;
  }


    /* =========================
       Section generic
    ========================== */
    .section {
      padding: 3.1rem 0;
    }

    .section--white { background: var(--color-white); }
    .section--light { background: var(--color-page-bg); }
    .section--black { background: #151519; color: var(--color-white); }
    .section--blue { background: var(--color-blue); color: var(--color-white); }
    .section--green { background: var(--color-green); }

    .section-header {
      margin-bottom: 2rem;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 0.4rem;
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--color-text-muted);
      max-width: 40rem;
    }

    .section--black .section-subtitle,
    .section--blue .section-subtitle {
      color: rgba(255, 255, 255, 0.85);
    }

    .section-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .section--black .section-kicker,
    .section--blue .section-kicker {
      color: rgba(255, 255, 255, 0.8);
    }

    /* =========================
       Ihre Vorteile
    ========================== */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 4.8rem;
      text-align: center;
    }

    .benefit {
      background: var(--color-white);
    }

    .benefit-top {
      background: var(--color-green);
      border-radius: 16px;
      height: 110px;
      margin-bottom: 0.9rem;
    }

    .benefit-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .benefit-text {
      font-size: 1rem;
      color: var(--color-text-muted);
    }

    /* =========================
       Funktionen
    ========================== */
    .functions-wrapper {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 7rem 1.5rem;
    }

    .functions-header {
      max-width: 32rem;
      margin-bottom: 3.2rem;
    }

    .functions-header .section-title {
      margin-bottom: 0.7rem;
    }

    .functions-header p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.88);
    }

    .functions-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 7.2rem 9rem;
      margin-top: 6.3rem;
    }

    .function-card {
      text-align: left;
      font-size: 0.9rem;
    }

    .function-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.1rem;
    }

    .function-icon span {
      font-size: 1.4rem;
      line-height: 1;
    }

    .function-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .function-text {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.88);
    }

    /* =========================
       Ergebnisse / Profitabilität
    ========================== */
    .stats-section {
      background: var(--color-blue);
      color: var(--color-white);
      padding: 5rem 0;
    }

    .stats-container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5rem;
      flex-wrap: wrap;
    }

    .stats-figures {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .stats-text {
      max-width: 32rem;
    }

    .stats-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    .stats-title {
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin-bottom: 1.4rem;
    }

    .stats-subtitle {
      font-size: 1rem;
      margin-bottom: 0;
      opacity: 0.9;
    }

    .stat-block {
      min-width: 160px;
      align-content: end;
    }

    .stat-label-top {
      font-size: 0.95rem;
      margin-bottom: 0.3rem;
      opacity: 0.9;
    }

    .stat-value {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .stat-caption {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    .stats-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .stats-buttons .btn {
      border-radius: 15px;
    }

    .btn--outline-light-arrow::after {
      content: "";
      display: inline-block;
      width: 16px;              /* size of icon */
      height: 16px;
      margin-left: 0.4rem;
      background-image: url("images/arrow.svg");
      background-repeat: no-repeat;
      background-size: contain; /* scales the SVG */
      background-position: center;
      font-size: 0.9rem;
    }

    /* video thumbnail/right side */
    .video-thumb {
      position: relative;
      border: none;
      background: none;
      padding: 0;
      cursor: pointer;
      width: 100%;
      max-width: 420px;
      aspect-ratio: 16 / 9;
      border-radius: 24px;
      overflow: hidden;
    }

    .video-thumb-image {
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 20%, #ffffff22, transparent 60%), #151519;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffffaa;
      font-size: 1rem;
    }

    .video-thumb-play {
      color: #fff;
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      pointer-events: none;
    }

    .video-thumb-play-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: rgba(135, 22, 57, 0.85);
      border: 3px solid rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
      animation: pulse-ring 2.5s ease-out infinite;
    }

    @keyframes pulse-ring {
      0% { box-shadow: 0 0 0 0 rgba(135, 22, 57, 0.5); }
      70% { box-shadow: 0 0 0 18px rgba(135, 22, 57, 0); }
      100% { box-shadow: 0 0 0 0 rgba(135, 22, 57, 0); }
    }

    .video-thumb-play-icon {
      margin-left: 5px;
      font-size: 2.4rem;
    }

    .video-thumb-play-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      background: rgba(0, 0, 0, 0.6);
      padding: 0.35em 0.9em;
      border-radius: 999px;
    }

    .video-thumb:hover .video-thumb-play-circle {
      transform: scale(1.08);
      background: rgba(135, 22, 57, 1);
      border-color: #ffffff;
      animation: none;
    }

    /* =========================
       Video modal
    ========================== */
    .video-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 40;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease-out;
    }

    .video-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .video-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
    }

    .video-modal-dialog {
      position: relative;
      z-index: 1;
      width: 90%;
      max-width: 1400px;
      border-radius: 10px;
      overflow: hidden;
      background: #000;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
      border: 2px solid #ffffff;
    }

    .video-modal-body {
      position: relative;
      padding-top: 56.25%; /* 16:9 */
    }

    .video-modal-body iframe,
    .video-modal-body video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-modal-close {
      position: absolute;
      top: 10px;
      right: 12px;
      z-index: 2;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 0;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      font-size: 1.4rem;
      line-height: 1;
    }

    /* =========================
       Testimonials carousel
    ========================== */
    .testimonials-section {
      background: #fff;
      padding: 5rem 0 5.4rem;
    }

    .testimonials-section .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .testimonial-slider {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }

    .testimonial-slider-viewport {
      overflow: hidden;
    }

    .testimonial-slider-track {
      display: flex;
      transition: transform 0.4s ease;
    }

    /* show 3 cards at a time on desktop */
    .testimonial-slide {
      flex: 0 0 33.3333%;
      padding: 0 0.75rem;
      display: flex;
    }

    .testimonial-card-new {
      position: relative;
      background: #e9eaee;
      border-radius: 18px;
      padding: 3.2rem 2.4rem 2.4rem;
      max-width: 100%;
      width: 100%;
      text-align: center;
      margin-top: 26px;
      display: flex;
      flex-direction: column;
    }

    .testimonial-card-label {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 0.55rem 1.8rem;
      border-radius: var(--radius-btn);
      background: #151519;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.9rem;
      white-space: nowrap;
      z-index: 1;
    }

    .testimonial-card-text {
      font-size: 1rem;
      line-height: 1.6;
      max-width: 560px;
      margin: 0 auto;
      color: #222222;
      flex: 1;
    }

    .testimonial-logo-block {
      width: 220px;
      height: 110px;
      border-radius: 18px;
      overflow: hidden;
      background-image: url("images/logo.png");
      margin: 1.5rem auto 0;
      flex-shrink: 0;
    }

    .testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d1d5;
  font-size: 2.8rem;
  z-index: 2;             /* make sure it's above cards */
}

.testimonial-nav--prev { left: -50px; }   /* was 50px */
.testimonial-nav--next { right: -50px; }  /* was -80px */


    .testimonial-nav:hover {
      color: #a0a0a8;
    }

    /* =========================
       OLD Pricing
    ========================== */
    .pricing-wrap {
      position: relative;
      color: var(--color-white);
      padding: 4rem 0 7rem;
      background-image: url("images/pricing.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .pricing-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
      text-align: center;
    }

    .pricing-heading {
      margin-bottom: 2.8rem;
    }

    .pricing-heading h2 {
      font-size: 2rem;
      margin-bottom: 0.35rem;
    }

    .pricing-heading p {
      font-size: 1rem;
      opacity: 0.9;
    }

    .pricing-grid {
      display: flex;
      justify-content: center;
      gap: 6rem;
      flex-wrap: wrap;
    }

    .pricing-card {
      position: relative;
      width: 380px;
      max-width: 100%;
      border-radius: var(--radius-card);
      background: var(--color-maroon);
      padding: 3.8rem 3rem 2.8rem;
      box-shadow: var(--shadow-soft);
      text-align: center;
    }

    .pricing-badge {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--color-white);
      color: #111111;
      padding: 0.45rem 1.7rem;
      border-radius: var(--radius-btn);
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
      white-space: nowrap;
    }

    .pricing-title {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 0.7rem;
    }

    .pricing-price {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
    }

    .pricing-note {
      font-size: 1rem;
      margin-bottom: 1.8rem;
      margin-top: -1rem;
      font-weight: bold;
    }

    .pricing-list {
      font-size: 1rem;
      margin-bottom: 1.6rem;
      text-align: center;
      line-height: 1.5;
    }

    .pricing-list li {
      list-style: disc;
      margin-left: 1.2rem;
      margin-bottom: 0.25rem;
    }

    .pricing-card .btn {
      border-radius: 15px;
      padding-inline: 2.6rem;
    }
    /* =========================
       NEW Pricing
    ========================== */
    
    /* PRICING – PODIUM CARDS  ------------------------------------------ */

:root {
  /* New vars; safe to add alongside your existing ones */
  --pricing-primary: #8a1538;      /* Deep burgundy */
  --pricing-primary-hover: #a31b45;
  --pricing-dark-bg: #0f1115;
  --pricing-card-dark: #1a1d24;
  --pricing-text-white: #ffffff;
  --pricing-text-grey: #b0b3b8;
  --pricing-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
  --pricing-shadow-glow: 0 10px 40px rgba(138, 21, 56, 0.4);
}

/* Section wrapper */
.pricing-section {
  padding: 8rem 1.5rem 10rem;
  background-image: url("images/pricing.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  color: var(--pricing-text-white);
}

.pricing-section .pricing-header {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 700px;
}

.pricing-section .pricing-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.pricing-section .pricing-header p {
  font-size: 1rem;
  color: var(--pricing-text-grey);
}

/* Grid */
.pricing-section .pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}

/* Cards */
.pricing-section .pricing-card {
  background: var(--pricing-card-dark);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-section .pricing-card .card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-section .plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.pricing-section .plan-subline {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.pricing-section .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
}

.pricing-section .currency {
  font-size: 1.5rem;
  font-weight: 500;
}

.pricing-section .price {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-section .period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

/* Features */
.pricing-section .features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1; /* pushes CTA button to bottom */
}

.pricing-section .features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #e0e0e0;
}

.pricing-section .features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--pricing-primary);
  margin-top: 3px;
}

.pricing-section .features strong {
  color: #fff;
  font-weight: 600;
}

/* CTA buttons */
.pricing-section .btn {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-btn);
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

/* Basic card */
.pricing-section .card-basic {
  box-shadow: var(--pricing-shadow-soft);
}

.pricing-section .card-basic .plan-name {
  color: var(--pricing-text-grey);
}

.pricing-section .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--pricing-text-white);
}

.pricing-section .btn-outline:hover {
  border-color: var(--pricing-text-white);
  background: rgba(255, 255, 255, 0.05);
}

/* Pro card */
.pricing-section .card-pro {
  background: linear-gradient(145deg, var(--pricing-primary) 0%, #5e0d26 100%);
  transform: scale(1.05);
  box-shadow: var(--pricing-shadow-glow);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-section .card-pro .plan-name {
  color: #fff;
}

.pricing-section .card-pro .plan-subline {
  color: rgba(255, 255, 255, 0.9);
}

/* white checkmarks on red card */
.pricing-section .card-pro .features li svg {
  fill: #fff;
}

/* Pro button */
.pricing-section .btn-white {
  background: #ffffff;
  color: var(--pricing-primary);
}

.pricing-section .btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Add-ons text */
.pricing-section .add-ons {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.pricing-section .add-ons strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
}

/* Badge on pro card */
.pricing-section .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--pricing-primary);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-card);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Trust note */
.pricing-section .trust-note {
  margin: 3rem auto 0;
  max-width: 900px;
  font-size: 0.9rem;
  color: var(--pricing-text-grey);
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0.8;
}

.pricing-section .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .pricing-section .pricing-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .pricing-section .card-pro {
    transform: scale(1);
    order: -1;
  }

  .pricing-section .trust-note {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}


    /* =========================
       Mission / team
    ========================== */
    .mission-section {
      background: var(--color-white);
      padding: 3.3rem 0;
    }

    .mission-layout {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 2.6rem;
      align-items: center;
    }

    .mission-image {
      width: 100%;
      height: 660px;
      border-radius: var(--radius-large);
      background-image: url("images/place.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .mission-text-group {
      font-size: 1rem;
    }

    .mission-text-group h2 {
      font-size: 2rem;
      margin-bottom: 0.4rem;
    }

    .mission-text-group p {
      margin-bottom: 1rem;
      color: var(--color-text-muted);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 4.2rem;
      margin-bottom: 3rem;
    }

    .team-card {
      text-align: left;
      font-size: 0.85rem;
    }

    .team-card img {
      width: 120px;
      height: 150px;
      border-radius: 12px;
      margin-bottom: 8px;
      object-fit: cover;
      object-position: top;
    }

    .team-avatar {
      width: 120px;
      height: 150px;
      border-radius: 12px;
      margin-bottom: 8px;
      background-image: url("images/place.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .team-name {
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.4rem;
      margin-bottom: 0.1rem;
    }

    .team-role {
      font-size: 0.9rem;
      color: #871639;
    }

    /* =========================
       FAQ (overlap with CTA)
    ========================== */
    .faq-section {
      background: transparent;
      padding: 3.6rem 0 5.4rem;
      position: relative;
      z-index: 2;
    }

    .faq-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .faq-card {
      background: #151519;
      color: var(--color-white);
      border-radius: var(--radius-card);
      padding: 4rem 4rem 4.5rem;
      margin-bottom: -120px;
    }

    .faq-header {
      margin-bottom: 3.5rem;
    }

    .faq-title {
      font-size: 2rem;
      font-weight: 600;
      text-align: center;
    }

    .faq-grid {
      display: flex;
      flex-direction: column;
      max-width: 740px;
      margin: 0 auto;
    }

    .faq-item {
      padding: 1.8rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .faq-item:first-child {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .faq-question {
      font-size: 1.15rem;
      line-height: 1.4;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .faq-answer {
      color: rgba(255, 255, 255, 0.65);
      font-size: 1rem;
      line-height: 1.6;
    }

    .faq-cta-prompt {
      text-align: center;
      margin-top: 3rem;
      padding-top: 0;
      border-top: none;
    }

    .faq-cta-prompt p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 1.2rem;
    }

    /* =========================
       CTA strip on image band
    ========================== */
    .cta-strip {
      position: relative;
      z-index: 1;
      margin-top: -90px; /* pulls CTA up under FAQ card */
      padding: 16rem 0 16rem;
      color: var(--color-white);
      background-image: url("images/cta.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .cta-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }

    .cta-content {
      flex: 1;
      min-width: 280px;
    }

    .cta-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .cta-sub {
      font-size: 1rem;
      opacity: 0.9;
    }

    .btn--cta-primary {
      background: var(--color-maroon);
      color: var(--color-white);
      font-size: 1rem;
      font-weight: 700;
      padding: 0.85rem 2.2rem;
      border-radius: var(--radius-btn);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .btn--cta-primary:hover {
      background: #6e1230;
    }

    /* =========================
       Kontakt
    ========================== */
    .contact-section {
      background: var(--color-white);
      padding: 3.4rem 0 3.6rem;
    }

    .contact-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .contact-image {
      width: 100%;
      height: 660px;
      border-radius: var(--radius-large);
      background-image: url("images/s.jpg");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }

    .contact-card {
      background: #E4E5E8;
      border-radius: var(--radius-large);
      padding: 2rem 1.8rem 1.8rem;
    }

    .contact-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .contact-sub {
      font-size: 1rem;
      color: var(--color-text-muted);
      margin-bottom: 1.5rem;
    }

    .form-grid {
      display: grid;
      gap: 0.85rem;
    }

    .form-row {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .form-row label {
      font-size: 1rem;
      font-weight: 500;
      color: var(--color-text-muted);
    }

    .form-row input,
    .form-row textarea {
      border-radius: 10px;
      border: 1px solid #d4d4d8;
      padding: 0.55rem 0.7rem;
      font-size: 0.9rem;
      outline: none;
      background: var(--color-white);
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    }

    .form-row textarea {
      resize: vertical;
      min-height: 110px;
    }

    .form-row input:focus,
    .form-row textarea:focus {
      border-color: var(--color-blue);
      box-shadow: 0 0 0 1px rgba(63, 62, 116, 0.3);
    }

    .contact-actions {
      margin-top: 1rem;
    }

    /* =========================
       Footer
    ========================== */
    .footer-top {
      background: #151519;
      color: rgba(255, 255, 255, 0.9);
      padding: 2.1rem 0 2.4rem;
      font-size: 1rem;
    }

    .footer-top-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 6.8rem;
    }

    .footer-heading {
      font-weight: 600;
      margin-bottom: 0.4rem;
      font-size: 1.5rem;
    }

    .footer-contact-link {
      display: inline-block;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: color var(--transition-fast), border-color var(--transition-fast);
    }

    .footer-contact-link:hover {
      color: #fff;
      border-bottom-color: rgba(255, 255, 255, 0.6);
    }

    /* FOOTER BOTTOM — NEW DESIGN */

    .footer-bottom {
      background: #7b0c2c; /* Your maroon color */
      padding: 20px 0;
      color: #fff;
    }

    .footer-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 32px;
    }

    /* LEFT: LOGO */
    .footer-left img {
      height: 44px;
      display: block;
    }

    /* CENTER AREA */
    .footer-center {
      flex: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
    }

    .footer-nav {
      display: flex;
      gap: 32px;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .footer-nav a {
      color: #ffffff;
      text-decoration: none;
    }

    .footer-nav a:hover {
      text-decoration: underline;
    }

    .footer-divider {
      width: 70%;
      max-width: 650px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    }

    .footer-copy {
      font-size: 0.85rem;
      margin-top: 4px;
    }

    .footer-copy a {
      margin-left: 8px;
      color: #ffffff;
      text-decoration: none;
    }

    .footer-copy a:hover {
      text-decoration: underline;
    }

    /* RIGHT: SOCIAL ICONS */
    .footer-right {
      display: flex;
      gap: 10px;
    }

    .social-icon {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 2px solid #fff;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .social-icon svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .social-icon:hover {
      background: #fff;
      color: #7b0c2c;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
      }

      .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
      }

      .footer-divider {
        width: 90%;
      }
    }

    .footer-bottom-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }

    .footer-logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #000;
    }

    .footer-social {
      display: flex;
      gap: 0.4rem;
    }

    .footer-social span {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    /* =========================
       Responsive tweaks
    ========================== */
    @media (max-width: 992px) {
      .roi-content {
        grid-template-columns: minmax(0, 1fr);
      }

      .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-video {
        order: -1;
      }

      .mission-layout,
      .contact-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .footer-top-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .stats-container {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2.5rem;
      }

      .stats-figures {
        flex-direction: column;
        gap: 1.5rem;
        text-align: left;
      }
      .stats-text {
        text-align: left;
      }
      .stat-block {
        align-content: start;
      }

      .testimonial-slide {
        flex: 0 0 50%;
      }

      .pricing-card {
        width: 100%;
        padding: 3.2rem 2.3rem 2.4rem;
      }

      .pricing-grid {
        gap: 2rem;
      }

      .cta-strip {
        margin-top: -80px;
      }
    }

    @media (max-width: 768px) {
      .main-nav,
      .header-actions {
        display: none;
      }

      .nav-toggle {
        display: flex;
        justify-self: end;
        cursor: pointer;
      }

      /* mobile dropdown full-width */
.main-nav.is-open,
.header-actions.is-open {
  display: flex;
  position: fixed;        /* was absolute */
  top: 65px;              /* height of your header */
  left: 0;                
  right: 0;
  width: 100vw;           /* force full screen width */
  background: #151519;
  padding: 1.2rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 9999;          /* ensure above everything */
}

/* Fix alignment of mobile nav items */
.main-nav.is-open {
  margin-left: 0 !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

/* Ensure container does not restrict width */
.mobile-menu,
.main-nav.is-open {
  max-width: 100% !important;
  width: 100vw !important;
}

      .main-nav.is-open a {
        padding: 0.4rem 0;
      }

      .header-actions.is-open {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 16.6rem;
        padding-top: 0.8rem;
      }

      .container,
      .hero-inner,
      .pricing-inner,
      .mission-layout,
      .faq-inner,
      .cta-inner,
      .contact-inner,
      .footer-top-inner,
      .footer-bottom-inner,
      .testimonials-section .container {
        padding-inline: 1rem;
      }

      .roi-band {
        margin-top: -60px;
      }

      /* mobile ROI / FAQ paddings */
      .roi-card {
        padding: 2rem 1.4rem 2rem;
      }

      .roi-content {
        gap: 2.4rem;
      }

      .faq-card {
        padding: 2.5rem 1.4rem 2.8rem;
        margin-bottom: -80px;
      }

      .faq-title {
        font-size: 1.6rem;
      }

      .faq-item {
        padding: 1.4rem 0;
      }

      .faq-question {
        font-size: 1.05rem;
      }

      .benefits-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .mission-layout {
        gap: 2rem;
      }

      .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .functions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .testimonial-card-new {
        padding: 2.6rem 1.8rem 2.4rem;
      }

      .testimonial-logo-block {
        width: 180px;
        height: 90px;
      }

      .testimonial-nav--prev { left: 4px; }
      .testimonial-nav--next { right: 4px; }

      .pricing-card {
        padding-inline: 2rem;
      }

      .pricing-grid {
        gap: 2rem;
      }

      .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }

      /* prevent slider causing horizontal scroll on mobile */
      .testimonial-slider-viewport {
        overflow: hidden;
      }
    }

    @media (max-width: 520px) {
      .hero-title {
        font-size: 2.1rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .pricing-grid {
        gap: 1.6rem;
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .roi-band {
        margin-top: -45px;
      }

      .functions-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .stats-title {
        font-size: 1.6rem;
      }

      .testimonial-slide {
        flex: 0 0 100%;
        padding: 0 0.4rem;
      }

      .testimonial-card-new {
        padding: 2.4rem 1.5rem 2.2rem;
      }

      .pricing-card {
        padding: 3rem 1.6rem 2.2rem;
      }

      .cta-strip {
        margin-top: -170px;
      }

      /* even tighter ROI / FAQ on very small phones */
      .roi-card {
        padding: 1.6rem 1.1rem 1.8rem;
      }

      .faq-card {
        padding: 2rem 1rem 2.4rem;
        margin-bottom: -60px;
      }

    }
