    :root {
      --black: #000000;
      --white: #ffffff;
      --red: #e10600;
      --gray: #f5f5f5;

      /* Typographic scale */
      --fs-xs: 0.8rem;
      --fs-sm: 0.9rem;
      --fs-base: 1rem;
      --fs-md: 1.2rem;
      --fs-lg: 1.5rem;
      --fs-xl: 2rem;
      --fs-xxl: 2.6rem;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
      background: var(--white);
      color: var(--black);
      line-height: 1.65;
      font-size: var(--fs-base);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

    header {
      position: fixed;
      inset: 0 0 auto 0;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(6px);
      z-index: 1000;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    header.scrolled {
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }

    header.hide {
      transform: translateY(-100%);
    }

    .header-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0.85rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo img {
      height: 38px;
      display: block;
    }

    .desktop-nav {
      display: none;
      gap: 2.5rem;
    }

    .desktop-nav a {
      color: var(--white);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
      opacity: 0.9;
    }

    .desktop-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: width 0.2s ease;
    }

    .desktop-nav a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .header-cta {
      display: none;
      gap: 0.5rem;
    }

    .cta-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .cta-icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
    }

    .cta-icon:hover {
      background: var(--red);
      border-color: var(--red);
    }

    .burger {
      width: 32px;
      height: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: none;
      border: none;
      cursor: pointer;
    }

    .burger span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--white);
      border-radius: 2px;
    }

    /* Tablet & Desktop */
    @media (min-width: 768px) {
      .desktop-nav {
        display: flex;
      }

      .header-cta {
        display: flex;
      }

      .burger {
        display: none;
      }
    }

    /* ================= HERO ================= */

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/hero.png') center/cover no-repeat;
      color: var(--white);
      text-align: center;
    }

    .hero-container {
      max-width: 960px;
      margin: 0 auto;
      padding: 8rem 1.25rem 5rem;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      line-height: 1.15;
      margin-bottom: 1.6rem;
      letter-spacing: -0.02em;
    }

    .hero p {
      font-size: 1.05rem;
      max-width: 760px;
      margin: 0 auto 1.2rem;
      opacity: 0.95;
    }

    .hero-subtext {
      font-size: 0.95rem;
      opacity: 0.85;
      margin-bottom: 2.8rem;
    }

    .hero-cta {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3.5rem;
    }

    .hero-cta a {
      padding: 0.95rem 1.6rem;
      font-weight: bold;
      border-radius: 6px;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .hero-cta .primary {
      background: var(--red);
      color: var(--white);
    }

    .hero-cta .secondary {
      border: 1px solid rgba(255,255,255,0.8);
      color: var(--white);
    }

    .hero-usp {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.85rem;
      opacity: 0.9;
    }

    .hero-usp span {
      position: relative;
      padding-left: 1rem;
    }

    .hero-usp span::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
    }

    @media (min-width: 768px) {
      .hero-container {
        padding-top: 9rem;
      }

      .hero h1 {
        font-size: 3.2rem;
      }

      .hero p {
        font-size: 1.1rem;
      }
    }

/* ================= WHY KAMINMASTER ================= */

    .why {
      background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
      padding: 5rem 1rem;
    }

    .why-container {
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
    }

    .why h2 {
      font-size: 1.9rem;
      margin-bottom: 3rem;
      position: relative;
    }

    .why h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background: var(--red);
      margin: 0.75rem auto 0;
    }

    .why-grid {
      display: grid;
      gap: 2rem;
    }

    .why-item {
      background: var(--white);
      padding: 2.5rem 2rem;
      border-radius: 10px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .why-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 70px rgba(0,0,0,0.12);
    }

    .why-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: rgba(225,6,0,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .why-icon svg {
      width: 32px;
      height: 32px;
      stroke: var(--red);
    }

    .why-item h3 {
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
    }

    .why-item p {
      font-size: 0.95rem;
      opacity: 0.8;
      max-width: 300px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .why h2 {
        font-size: 2.3rem;
      }

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

    /* ================= MOBILE MENU ================= */

    .mobile-nav {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.96);
      transform: translateY(-100%);
      transition: transform 0.35s ease;
      z-index: 999;
    }

    .mobile-nav.open {
      transform: translateY(0);
    }

    .mobile-nav-inner {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
    }

    .mobile-nav-inner a {
      color: var(--white);
      font-size: 1.4rem;
      font-weight: 600;
      text-decoration: none;
    }

    .mobile-cta {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .mobile-cta a {
      padding: 0.9rem 1.5rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    .mobile-cta .primary {
      background: var(--red);
      color: var(--white);
    }

    .mobile-cta .secondary {
      border: 1px solid var(--white);
      color: var(--white);
    }

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

    .process {
      padding: 5rem 1rem;
      background: var(--black);
      color: var(--white);
    }

    .process-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .process-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;
    }

    .process-header h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .process-header p {
      opacity: 0.85;
    }

    .process-grid {
      display: grid;
      gap: 2.5rem;
    }

    .process-step {
      position: relative;
      background: #111;
      padding: 2.5rem 2rem 2.75rem;
      border-radius: 14px;
    }

    .process-number {
      position: absolute;
      top: -20px;
      left: 20px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1rem;
    }

    .process-step h3 {
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
      font-size: 1.25rem;
    }

    .process-step p {
      opacity: 0.8;
      font-size: 0.95rem;
    }

    .process-cta {
      margin-top: 4rem;
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .process-cta a {
      padding: 0.9rem 1.4rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .process-cta .primary {
      background: var(--red);
      color: var(--white);
    }

    .process-cta .secondary {
      border: 1px solid var(--white);
      color: var(--white);
    }

    @media (min-width: 768px) {
      .process-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .process-header h2 {
        font-size: 2.4rem;
      }
    }

    /* ================= SERVICES ================= */

    .services {
      padding: 5rem 1rem;
      background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    }

    .services-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .services-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3.5rem;
    }

    .services-header h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .services-header p {
      font-size: 1rem;
      opacity: 0.8;
    }

    .services-grid {
      display: grid;
      gap: 2rem;
    }

    .service-card {
      background: var(--white);
      border-radius: 14px;
      overflow: hidden;
      text-decoration: none;
      color: var(--black);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 80px rgba(0,0,0,0.14);
    }

    .service-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .service-content {
      padding: 1.75rem 1.75rem 2rem;
    }

    .service-content h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .service-content p {
      font-size: 0.95rem;
      opacity: 0.8;
    }

    .services-cta {
      margin-top: 4rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .services-cta a {
      padding: 0.9rem 1.4rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .services-cta .primary {
      background: var(--red);
      color: var(--white);
    }

    .services-cta .secondary {
      border: 1px solid var(--black);
      color: var(--black);
    }

    @media (min-width: 640px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .services-header h2 {
        font-size: 2.4rem;
      }
    }

    /* ================= SEO CONTENT ================= */

    .seo {
      padding: 5rem 1rem;
      background: var(--white);
    }

    .seo-container {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    .seo-text h2 {
      font-size: 2rem;
      margin-bottom: 1.25rem;
    }

    .seo-text p {
      font-size: 0.95rem;
      opacity: 0.85;
      margin-bottom: 1rem;
      max-width: 600px;
    }

    .seo-cta {
      margin-top: 1.5rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .seo-cta a {
      padding: 0.8rem 1.4rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .seo-cta .primary {
      background: var(--red);
      color: var(--white);
    }

    .seo-cta .secondary {
      border: 1px solid var(--black);
      color: var(--black);
    }

    .seo-image img {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 14px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    }

    @media (min-width: 768px) {
      .seo-container {
        grid-template-columns: 1.2fr 0.8fr;
      }

      .seo-text h2 {
        font-size: 2.4rem;
      }
    }

    /* ================= REGIONS ================= */

    .regions {
      padding: 6rem 1rem;
      background: linear-gradient(180deg, #0b0b0b 0%, #000000 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .regions::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -120px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(225,6,0,0.25) 0%, rgba(225,6,0,0) 70%);
      pointer-events: none;
    }

    .regions-container {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .regions-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 4rem;
    }

    .regions-header h2 {
      font-size: 2.1rem;
      margin-bottom: 1rem;
    }

    .regions-header p {
      opacity: 0.85;
      font-size: 1rem;
    }

    .regions-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    .regions-map {
      background: #111;
      border-radius: 20px;
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    }

    .regions-map svg {
      width: 100%;
      max-width: 340px;
    }

    .regions-map span {
      font-weight: bold;
      letter-spacing: 0.04em;
      color: var(--red);
      text-transform: uppercase;
      font-size: 0.85rem;
    }

    .regions-list h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .regions-list p {
      opacity: 0.85;
      max-width: 520px;
      margin-bottom: 1.5rem;
    }

    .regions-list ul {
      list-style: none;
      padding: 0;
      margin-bottom: 2rem;
      display: grid;
      gap: 0.6rem;
    }

    .regions-list li {
      position: relative;
      padding-left: 1.2rem;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    .regions-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
    }

    .regions-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .regions-cta .primary {
      background: var(--red);
      color: var(--white);
      padding: 0.9rem 1.5rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    .regions-cta .secondary {
      border: 1px solid rgba(255,255,255,0.6);
      color: var(--white);
      padding: 0.9rem 1.5rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .regions-grid {
        grid-template-columns: 1fr 1.2fr;
      }

      .regions-header h2 {
        font-size: 2.6rem;
      }
    }

    /* ================= TRUST ================= */

    .trust {
      padding: 6rem 1rem;
      background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    }

    .trust-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .trust-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 4rem;
    }

    .trust-header h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    .trust-header p {
      font-size: 1rem;
      opacity: 0.8;
    }

    .trust-grid {
      display: grid;
      gap: 2.5rem;
    }

    .trust-item {
      background: var(--white);
      padding: 3rem 2.5rem;
      border-radius: 18px;
      box-shadow: 0 30px 70px rgba(0,0,0,0.08);
      text-align: center;
    }

    .trust-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: rgba(225,6,0,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-icon svg {
      width: 36px;
      height: 36px;
      stroke: var(--red);
    }

    .trust-item h3 {
      font-size: 1.35rem;
      margin-bottom: 0.75rem;
    }

    .trust-item p {
      font-size: 0.95rem;
      opacity: 0.85;
      max-width: 360px;
      margin: 0 auto;
    }

    .trust-cta {
      margin-top: 4rem;
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .trust-cta .primary {
      background: var(--red);
      color: var(--white);
      padding: 0.9rem 1.6rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    .trust-cta .secondary {
      border: 1px solid var(--black);
      color: var(--black);
      padding: 0.9rem 1.6rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .trust-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .trust-header h2 {
        font-size: 2.6rem;
      }
    }

    /* ================= AUDIENCE ================= */

    .audience {
      padding: 5rem 1rem;
      background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
    }

    .audience-container {
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
    }

    .audience-container h2 {
      font-size: 2rem;
      margin-bottom: 3rem;
    }

    .audience-grid {
      display: grid;
      gap: 2rem;
    }

    .audience-card {
      background: var(--white);
      padding: 3rem 2.5rem;
      border-radius: 16px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    }

    .audience-card h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .audience-card p {
      font-size: 0.95rem;
      opacity: 0.85;
      max-width: 480px;
      margin: 0 auto;
    }

    .audience-cta {
      margin-top: 3rem;
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .audience-cta a {
      padding: 0.9rem 1.5rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    .audience-cta .primary {
      background: var(--red);
      color: var(--white);
    }

    .audience-cta .secondary {
      border: 1px solid var(--black);
      color: var(--black);
    }

    @media (min-width: 768px) {
      .audience-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .audience-container h2 {
        font-size: 2.4rem;
      }
    }

    /* ================= FAQ ================= */

    .faq {
      padding: clamp(4rem, 8vw, 6rem) 1.25rem;
      background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3.5rem;
    }

    .faq-header h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      margin-bottom: 1rem;
    }

    .faq-header p {
      font-size: 1rem;
      opacity: 0.8;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .faq-item {
      background: var(--white);
      border-radius: 14px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: box-shadow 0.3s ease;
    }

    .faq-item[open] {
      box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    }

    .faq-item summary {
      cursor: pointer;
      padding: 1.4rem 1.75rem;
      font-weight: 600;
      font-size: 1rem;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      font-size: 1.4rem;
      color: var(--red);
      transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-content {
      padding: 0 1.75rem 1.6rem;
      font-size: 0.95rem;
      opacity: 0.85;
      line-height: 1.6;
      max-width: 720px;
    }

    .faq-cta {
      margin-top: 3.5rem;
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .faq-cta .primary {
      background: var(--red);
      color: var(--white);
      padding: 0.9rem 1.6rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    .faq-cta .secondary {
      border: 1px solid var(--black);
      color: var(--black);
      padding: 0.9rem 1.6rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .faq-item summary {
        font-size: 1.05rem;
      }
    }


    /* ================= FINAL CTA ================= */

    .final-cta {
      padding: 6rem 1.25rem 4rem;
      background: transparent;
      display: flex;
      justify-content: center;
    }

    .final-cta-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 3.5rem 3rem;
      background: linear-gradient(135deg, #0b0b0b 0%, #000000 100%);
      color: var(--white);
      border-radius: 28px;
      box-shadow: 0 40px 120px rgba(0,0,0,0.35);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .final-cta-container::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -120px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(225,6,0,0.35) 0%, rgba(225,6,0,0) 70%);
      pointer-events: none;
    }

    .final-cta h2 {
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      margin-bottom: 1rem;
    }

    .final-cta p {
      font-size: 1rem;
      opacity: 0.85;
      max-width: 620px;
      margin: 0 auto 2.5rem;
    }

    .final-cta-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .final-cta-actions a {
      padding: 1rem 1.8rem;
      border-radius: 999px;
      font-weight: bold;
      text-decoration: none;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .final-cta-actions .primary {
      background: var(--red);
      color: var(--white);
    }

    .final-cta-actions .secondary {
      border: 1px solid rgba(255,255,255,0.6);
      color: var(--white);
    }

    @media (min-width: 768px) {
      .final-cta-container {
        padding: 4.5rem 4rem;
      }
    }

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

    footer {
      background: linear-gradient(180deg, #0b0b0b 0%, #000000 100%);
      color: var(--white);
      padding: clamp(3rem, 6vw, 4.5rem) 1.25rem 2rem;
      margin-top: 4rem;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      gap: 3rem;
    }

    .footer-top {
      display: grid;
      gap: 2.5rem;
    }

    .footer-brand img {
      height: 42px;
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-size: 0.9rem;
      opacity: 0.8;
      max-width: 360px;
      line-height: 1.6;
    }

    .footer-column h4 {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      margin-bottom: 1rem;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .footer-column a {
      display: block;
      font-size: 0.9rem;
      color: var(--white);
      text-decoration: none;
      margin-bottom: 0.5rem;
      opacity: 0.8;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .footer-column a:hover {
      opacity: 1;
      transform: translateX(4px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      font-size: 0.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      opacity: 0.7;
    }

    .footer-bottom a {
      color: var(--white);
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .footer-top {
        grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
      }

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    @media (min-width: 1024px) {
      footer {
        padding-bottom: 2.5rem;
      }
    }

    /* ================= FLOATING CTA ================= */

    .floating-cta {
      position: fixed;
      right: 1.2rem;
      bottom: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      z-index: 1200;
    }

    .floating-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 50px rgba(0,0,0,0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      color: var(--white);
      text-decoration: none;
    }

    .floating-btn svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
    }

    .floating-btn.phone {
      background: var(--black);
      border: 1px solid rgba(255,255,255,0.25);
    }

    .floating-btn.whatsapp {
      background: var(--red);
    }

    .floating-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 70px rgba(0,0,0,0.35);
    }

    @media (min-width: 1024px) {
      .floating-cta {
        right: 2rem;
        bottom: 2rem;
      }
    }

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


/* ================= SUBPAGE HERO ================= */

.subpage-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);

  /* Abstand zum Fixed Header + großzügige Vertikal-Räume */
  padding:
    calc(var(--header-height, 80px) + 4rem)
    1.5rem
    clamp(3.5rem, 7vw, 5rem);

  position: relative;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 160px;
  height: 3px;
  background: var(--red);
  border-radius: 4px;
  opacity: 0.9;
}

.subpage-hero-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow / Micro Branding */
.subpage-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.75rem;
  font-weight: 600;
}

/* Headline */
.subpage-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}

/* Subtext */
.subpage-hero p {
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 2.75rem;
  opacity: 0.85;
  line-height: 1.75;
}

/* Badges */
.subpage-hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.subpage-hero-badges span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(225,6,0,0.1);
  color: var(--red);
  font-weight: 600;
}

/* Tablet+ */
@media (min-width: 768px) {
  .subpage-hero {
    padding-top: calc(var(--header-height, 80px) + 5rem);
  }

  .subpage-hero p {
    font-size: 1.05rem;
  }
}

/* Desktop+ */
@media (min-width: 1200px) {
  .subpage-hero {
    padding-bottom: 5.5rem;
  }
}
