/* =========================================
       VARIABLES & RESET
    ========================================= */
    :root {
      --green-dark:   #1e5c0f;
      --green-mid:    #2e8b15;
      --green-main:   #4db825;
      --green-light:  #7dd44f;
      --green-pale:   #e8f5e1;
      --green-ultra:  #f2faea;
      --white:        #ffffff;
      --off-white:    #f8fdf5;
      --gray-100:     #f1f5ed;
      --gray-200:     #e0e9d8;
      --gray-500:     #7a8c71;
      --gray-700:     #3d4e35;
      --dark:         #1a2614;
      --font-display: 'Fraunces', serif;
      --font-body:    'DM Sans', sans-serif;
      --font-ui:      'Nunito', sans-serif;
      --radius-sm:    8px;
      --radius-md:    16px;
      --radius-lg:    32px;
      --radius-xl:    48px;
      --shadow-sm:    0 2px 8px rgba(30,92,15,0.08);
      --shadow-md:    0 8px 32px rgba(30,92,15,0.12);
      --shadow-lg:    0 24px 64px rgba(30,92,15,0.18);
    }

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

    /* AOS-Fallback: Elemente nie permanent verstecken */
    /* Verhindert FOUC wenn AOS langsam lädt */
    [data-aos] {
      pointer-events: auto !important;
    }

    body:not(.aos-initialized) [data-aos] {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }


  html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
}

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    .container {
      width: min(1180px, 100% - 3rem);
      margin-inline: auto;
    }

    /* =========================================
       HEADER
    ========================================= */
    #header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 18px 0;
      transition: all 0.35s ease;
    }

    #header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
      border-bottom: 1px solid var(--gray-200);
      transition: opacity 0.35s;
    }

    #header.scrolled { padding: 10px 0; }

    .header-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1rem;
    }

    /* Logo bleibt links */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      justify-self: start;
    }

    /* Nav zentriert */
    .navmenu {
      justify-self: center;
    }

    /* Telefon rechts */
    .header-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-self: end;
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--dark);
      white-space: nowrap;
      transition: color 0.2s;
    }

    .header-phone i {
      color: var(--green-main);
      font-size: 1rem;
    }

    .header-phone:hover { color: var(--green-main); }

    .logo img { height: 44px; width: auto; }

    .logo-text {
      font-family: var(--font-ui);
      font-weight: 900;
      font-size: 1.25rem;
      line-height: 1.1;
    }

    .logo-text span { color: var(--green-main); }
    .logo-sub {
      display: block;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray-500);
    }

    /* NAV */
    .navmenu ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    /* Mobile: nav is hidden by default, shown only when .open */
    @media (max-width: 991px) {
      .navmenu ul {
        display: none;
      }
      .navmenu ul.open {
        display: flex;
      }
    }

    .navmenu a {
      display: block;
      padding: 8px 14px;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gray-700);
      border-radius: var(--radius-sm);
      transition: color 0.2s, background 0.2s;
    }

    .navmenu a:hover, .navmenu a.active {
      color: var(--green-main);
      background: var(--green-pale);
    }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      background: var(--green-main);
      color: var(--white) !important;
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(77,184,37,0.35);
    }

    .btn-cta:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(77,184,37,0.4);
    }

    .btn-cta-outline {
      background: transparent;
      color: var(--green-main) !important;
      border: 2px solid var(--green-main);
      box-shadow: none;
    }

    .btn-cta-outline:hover {
      background: var(--green-pale);
      transform: translateY(-2px);
    }

    /* Mobile nav toggle */
    .mobile-nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      color: var(--dark);
      cursor: pointer;
      padding: 4px;
      position: relative;
      z-index: 10;
    }

    @media (max-width: 991px) {
      /* Grid wird auf mobile zu flex mit logo/phone/toggle */
      .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
      }

      /* Logo nimmt verfügbaren Platz links */
      .logo { flex: 1; }

      /* Telefon im Header auf Mobile ausblenden (ist im Sticky-Button verfügbar) */
      .header-phone { display: none; }

      /* Toggle button above everything */
      .mobile-nav-toggle {
        display: block;
        position: relative;
        z-index: 1100;
        flex-shrink: 0;
      }

      /* Full-screen overlay */
      .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white);
        z-index: 1050;
        padding: 90px 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .nav-links li { width: 100%; }

      .nav-links a {
        font-size: 1.05rem;
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-200);
        border-radius: 0;
        background: none !important;
        color: var(--dark) !important;
      }

      .nav-links a:hover,
      .nav-links a.active {
        color: var(--green-main) !important;
        background: none !important;
      }

      /* Telefonnummer als letzter Eintrag im aufgeklappten Menü */
      .nav-phone-mobile {
        display: flex !important;
        align-items: center;
        gap: 10px;
        margin-top: 1.5rem;
        padding: 14px 20px;
        background: var(--green-pale);
        border-radius: var(--radius-md);
        font-family: var(--font-ui);
        font-weight: 800;
        font-size: 1rem;
        color: var(--green-dark) !important;
        border-bottom: none !important;
        width: 100%;
      }

      .nav-phone-mobile i { color: var(--green-main); font-size: 1.1rem; }
    }

    /* Desktop: Telefon im Nav ausblenden */
.nav-phone-item {
  display: none;
}

/* Mobile: nur im aufgeklappten Menü einblenden */
@media (max-width: 991px) {
  .nav-phone-item {
    display: block;
  }
}
    /* =========================================
       HERO
    ========================================= */
    #hero {
      min-height: 100vh;
      padding-top: 100px;
      background: var(--off-white);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Organic background blob */
    #hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -15%;
      width: 70vw;
      height: 70vw;
      max-width: 900px;
      max-height: 900px;
      background: radial-gradient(ellipse, #c8edb4 0%, #e8f5e1 40%, transparent 70%);
      border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
      z-index: 0;
    }

    #hero::after {
      content: '';
      position: absolute;
      bottom: -10%;
      left: -10%;
      width: 50vw;
      height: 50vw;
      max-width: 600px;
      max-height: 600px;
      background: radial-gradient(ellipse, #d8f0c8 0%, transparent 70%);
      border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
      z-index: 0;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-pale);
      border: 1.5px solid var(--green-light);
      color: var(--green-dark);
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }

    .hero-badge i { font-size: 0.9rem; color: var(--green-main); }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 900;
      line-height: 1.08;
      color: var(--dark);
      margin-bottom: 1.25rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--green-main);
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: var(--gray-500);
      max-width: 460px;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .hero-actions .btn-cta { font-size: 0.9rem; padding: 14px 28px; }
    .hero-actions .btn-cta-outline { font-size: 0.9rem; padding: 12px 26px; }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.8rem;
      color: var(--gray-700);
    }

    .trust-item i {
      color: var(--green-main);
      font-size: 1.1rem;
    }

    /* Hero visual */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-card-stack {
      position: relative;
      width: 380px;
      height: 440px;
    }

    .hero-main-card {
      position: absolute;
      top: 0; left: 0; right: 0;
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-200);
    }

    .hero-card-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
      margin-bottom: 1.25rem;
    }

    .hero-card-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .hero-card-text {
      font-size: 0.9rem;
      color: var(--gray-500);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .stat-box {
      background: var(--green-ultra);
      border-radius: var(--radius-sm);
      padding: 1rem;
      text-align: center;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--green-dark);
      display: block;
    }

    .stat-label {
      font-family: var(--font-ui);
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gray-500);
    }

    /* Floating badges */
    .float-badge {
      position: absolute;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 0.75rem 1rem;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--gray-200);
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.78rem;
      white-space: nowrap;
      animation: float 4s ease-in-out infinite;
    }

    .float-badge i { color: var(--green-main); font-size: 1.1rem; }

  .float-badge-1 {
  top: -20px;
  right: -20px;
  animation-delay: -2s;
}

.float-badge-2 {
  top: -20px;
  left: -20px;
  animation-delay: -1s;
}

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @media (max-width: 991px) {
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .hero-visual { order: -1; }
      .hero-card-stack { width: 320px; height: 380px; }
      .float-badge-2 { left: -10px; }
      .float-badge-1 { right: -10px; }
    }

    @media (max-width: 600px) {
      .hero-card-stack { width: 280px; height: 340px; }
      .float-badge { display: none; }
    }

    /* =========================================
       SECTION SHARED
    ========================================= */
    section { padding: 90px 0; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--green-main);
      margin-bottom: 0.75rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--green-main);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 900;
      color: var(--dark);
      line-height: 1.12;
      margin-bottom: 1rem;
    }

    .section-title em { font-style: italic; color: var(--green-main); }

    .section-desc {
      font-size: 1rem;
      color: var(--gray-500);
      max-width: 560px;
      line-height: 1.7;
    }

    .section-header {
      margin-bottom: 3.5rem;
    }

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

    .section-header.center .section-label {
      justify-content: center;
    }

    .section-header.center .section-desc {
      margin-inline: auto;
    }

    /* =========================================
       SERVICES
    ========================================= */
    #services {
      background: var(--gray-100);
      position: relative;
      overflow: hidden;
    }

    #services::before {
      content: '';
      position: absolute;
      top: -30%;
      left: -5%;
      width: 40vw;
      height: 40vw;
      background: radial-gradient(ellipse, #d8f0c8 0%, transparent 70%);
      border-radius: 50%;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

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

    @media (max-width: 560px) {
      .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--gray-200);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      cursor: default;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--green-light);
    }

    /* Bild oben */
    .service-img-wrap {
      width: 100%;
      height: 180px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }

    .service-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.45s ease;
    }

    .service-card:hover .service-img-wrap img {
      transform: scale(1.06);
    }

    /* Grüner Overlay-Gradient am Bildunterrand */
    .service-img-wrap::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(to top, rgba(26,38,20,0.55), transparent);
      pointer-events: none;
    }

    /* Text-Bereich */
    .service-body {
      padding: 1.25rem 1.25rem 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .service-icon {
      width: 44px;
      height: 44px;
      background: var(--green-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      color: var(--green-dark);
      margin-bottom: 0.85rem;
      transition: background 0.25s, color 0.25s;
      flex-shrink: 0;
    }

    .service-card:hover .service-icon {
      background: var(--green-main);
      color: var(--white);
    }

    .service-name {
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.95rem;
      color: var(--dark);
      margin-bottom: 0.45rem;
      line-height: 1.3;
    }

    .service-desc {
      font-size: 0.83rem;
      color: var(--gray-500);
      line-height: 1.6;
      flex: 1;
    }

    /* =========================================
       ABOUT
    ========================================= */
    #about {
      background: var(--white);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-big-stat {
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      border-radius: var(--radius-lg);
      padding: 3rem;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .about-big-stat::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 100%;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
    }

    .about-big-number {
      font-family: var(--font-display);
      font-size: 5rem;
      font-weight: 900;
      display: block;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .about-big-label {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 1rem;
      opacity: 0.9;
      display: block;
    }

    .about-values {
      margin-top: 1.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .value-card {
      background: var(--green-ultra);
      border-radius: var(--radius-md);
      padding: 1.25rem;
      text-align: center;
      border: 1px solid var(--gray-200);
    }

    .value-card i {
      font-size: 1.5rem;
      color: var(--green-main);
      margin-bottom: 0.5rem;
      display: block;
    }

    .value-card span {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.8rem;
      color: var(--gray-700);
      display: block;
    }

    .about-text .section-desc { max-width: 100%; margin-bottom: 1.25rem; }

    .about-checklist {
      list-style: none;
      margin: 1.5rem 0 2rem;
    }

    .about-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.93rem;
      color: var(--gray-700);
      padding: 6px 0;
    }

    .about-checklist li i {
      color: var(--green-main);
      font-size: 1rem;
      margin-top: 3px;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    }

    /* =========================================
       PROCESS / WHY US
    ========================================= */
    #process {
      background: var(--dark);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    #process::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234db825' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    #process .section-label { color: var(--green-light); }
    #process .section-label::before { background: var(--green-light); }
    #process .section-title { color: var(--white); }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    .process-card {
      text-align: center;
      padding: 2.5rem 1.5rem;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      transition: background 0.3s, transform 0.3s;
    }

    .process-card:hover {
      background: rgba(77,184,37,0.12);
      transform: translateY(-6px);
      border-color: rgba(77,184,37,0.3);
    }

    .process-number {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(77,184,37,0.2);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .process-icon {
      width: 56px;
      height: 56px;
      background: var(--green-main);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: white;
      margin: 0 auto 1rem;
    }

    .process-title {
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 1rem;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

    .process-text {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
    }

    @media (max-width: 768px) {
      .process-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    }

    /* =========================================
       FAQ
    ========================================= */
    #faq {
      background: var(--green-ultra);
    }

    .faq-inner {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 5rem;
      align-items: start;
    }

    .faq-sticky { position: sticky; top: 120px; }

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

    .faq-item {
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--gray-200);
      overflow: hidden;
      transition: box-shadow 0.3s;
    }

    .faq-item.open { box-shadow: var(--shadow-md); border-color: var(--green-light); }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.93rem;
      color: var(--dark);
      transition: color 0.2s;
    }

    .faq-item.open .faq-question { color: var(--green-main); }

    .faq-question i {
      flex-shrink: 0;
      font-size: 0.9rem;
      color: var(--green-main);
      transition: transform 0.3s;
    }

    .faq-item.open .faq-question i { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s;
      padding: 0 1.5rem;
      font-size: 0.9rem;
      color: var(--gray-500);
      line-height: 1.7;
    }

    .faq-item.open .faq-answer {
      max-height: 500px;
      padding-bottom: 1.25rem;
    }

    @media (max-width: 768px) {
      .faq-inner { grid-template-columns: 1fr; gap: 2rem; }
      .faq-sticky { position: static; }
    }

    /* =========================================
       CONTACT
    ========================================= */
    #contact {
      background: var(--white);
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

    .contact-highlight {
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      color: white;
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .contact-highlight::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 60%;
      height: 100%;
      background: rgba(255,255,255,0.07);
      border-radius: 50%;
    }

    .contact-highlight-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .contact-highlight-text {
      font-size: 0.9rem;
      opacity: 0.85;
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.93rem;
      color: white;
      margin-bottom: 0.75rem;
      opacity: 0.9;
    }

    .contact-link i {
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .contact-extras {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-extra-card {
      background: var(--gray-100);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      border: 1px solid var(--gray-200);
    }

    .contact-extra-card i {
      font-size: 1.5rem;
      color: var(--green-main);
      flex-shrink: 0;
    }

    .contact-extra-card strong {
      display: block;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--dark);
    }

    .contact-extra-card span {
      font-size: 0.82rem;
      color: var(--gray-500);
    }

    /* Form */
    .contact-form-wrap {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--gray-200);
    }

    .form-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .form-subtitle {
      font-size: 0.88rem;
      color: var(--gray-500);
      margin-bottom: 2rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group.full { grid-column: 1 / -1; }

    .form-group label {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gray-700);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--dark);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      -webkit-appearance: none;
    }

    .form-group select {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 18px;
      padding-right: 40px;
      cursor: pointer;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green-main);
      box-shadow: 0 0 0 3px rgba(77,184,37,0.12);
    }

    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      width: 100%;
      margin-top: 1.25rem;
      padding: 14px;
      font-size: 0.95rem;
    }

    .form-note {
      font-size: 0.78rem;
      color: var(--gray-500);
      text-align: center;
      margin-top: 0.75rem;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
    }

    .form-success i {
      font-size: 3rem;
      color: var(--green-main);
      display: block;
      margin-bottom: 1rem;
    }

    .form-success h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-grid { grid-template-columns: 1fr; }
      .contact-form-wrap { padding: 1.75rem; }
    }

    /* =========================================
       FOOTER
    ========================================= */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 50px 0 30px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 2rem;
    }

    .footer-brand .logo-text { color: white; font-size: 1.1rem; }
    .footer-brand .logo-text span { color: var(--green-light); }

    .footer-tagline {
      font-size: 0.85rem;
      line-height: 1.65;
      margin: 1rem 0 1.5rem;
    }

    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 0.5rem;
      transition: color 0.2s;
    }

    .footer-contact a:hover { color: var(--green-light); }
    .footer-contact a i { color: var(--green-main); }

    .footer-heading {
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: white;
      margin-bottom: 1rem;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links a {
      font-size: 0.87rem;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--green-light); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--green-light); }

    @media (max-width: 768px) {
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { justify-content: center; text-align: center; }
    }

    /* =========================================
       STICKY CALL BUTTON
    ========================================= */
    .sticky-call {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .sticky-call-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--green-main);
      color: white;
      padding: 14px 20px;
      border-radius: 50px;
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.85rem;
      box-shadow: 0 6px 24px rgba(77,184,37,0.45);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .sticky-call-btn:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 10px 32px rgba(77,184,37,0.55);
    }

    .sticky-call-btn i { font-size: 1.1rem; }
   
    @media(min-width: 768px) {.sticky-call {display:none;} }
  

    /* =========================================
       SCROLL TO TOP
    ========================================= */
    .scroll-top {
      position: fixed;
      bottom: 90px;
      right: 28px;
      z-index: 899;
      width: 44px;
      height: 44px;
      background: var(--white);
      border-radius: 50%;
      box-shadow: var(--shadow-md);
      border: 1.5px solid var(--gray-200);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-main);
      font-size: 1.1rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .scroll-top.visible { opacity: 1; pointer-events: all; }
    .scroll-top:hover { transform: translateY(-3px); }

    /* =========================================
       UTILITIES
    ========================================= */
    .green { color: var(--green-main); }
    .mt-1 { margin-top: 1rem; }

    /* Preloader */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preloader-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .preloader-icon img { height: 60px; animation: pulse 1.2s ease-in-out infinite; }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
    }
    /* =========================================
       MOBILE HERO OPTIMIERUNG
    ========================================= */
    @media (max-width: 991px) {

      #hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 60px;
        align-items: flex-start;
      }

      .hero-card-stack {
        width: 100%;
        max-width: 340px;
        height: auto;
        margin: 30px auto 0;
      }

      .hero-main-card {
        position: relative;
        padding: 1.75rem;
      }

      .hero-card-icon { width: 56px; height: 56px; font-size: 1.5rem; margin-bottom: 0.75rem; }
      .hero-card-title { font-size: 1.2rem; margin-bottom: 0.3rem; }
      .hero-card-text  { font-size: 0.85rem; margin-bottom: 1rem; }
      .stat-number     { font-size: 1.4rem; }
      .hero-title      { font-size: 2rem; margin-bottom: 1rem; }
      .hero-subtitle   { font-size: 0.93rem; margin-bottom: 1.5rem; }

      .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.75rem;
      }

      .hero-actions .btn-cta,
      .hero-actions .btn-cta-outline {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 0.88rem;
      }

      .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
      }

      .trust-item { font-size: 0.78rem; gap: 6px; }

      .hero-badge { font-size: 0.68rem; padding: 5px 11px; margin-bottom: 1rem; }
    }

    @media (max-width: 480px) {
      .hero-card-stack { max-width: 100%; margin-top: 20px; }
      .float-badge     { display: none; }
      .hero-title      { font-size: 1.75rem; }
      .hero-trust      { grid-template-columns: 1fr; gap: 0.4rem; }
    }
    /* =========================================
       COOKIE CONSENT SYSTEM
    ========================================= */

    /* Banner – sticky am unteren Bildschirmrand */
    #cm-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9990;
      background: var(--dark);
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
    }

    #cm-banner.cm-visible {
      transform: translateY(0);
    }

    .cm-banner-inner {
      width: min(1180px, 100% - 2rem);
      margin-inline: auto;
      padding: 1.25rem 0;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .cm-banner-icon {
      width: 40px;
      height: 40px;
      background: rgba(77,184,37,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green-light);
      font-size: 1.1rem;
    }

    .cm-banner-text {
      flex: 1;
      min-width: 220px;
    }

    .cm-banner-text strong {
      display: block;
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--white);
      margin-bottom: 3px;
    }

    .cm-banner-text p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
      margin: 0;
    }

    .cm-banner-text a {
      color: var(--green-light);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cm-banner-actions {
      display: flex;
      gap: 0.6rem;
      flex-shrink: 0;
      flex-wrap: wrap;
      align-items: center;
    }

    /* Cookie Buttons */
    .cm-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 18px;
      border-radius: 50px;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.8rem;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      white-space: nowrap;
      line-height: 1;
    }

    .cm-btn-primary {
      background: var(--green-main);
      color: white;
      box-shadow: 0 4px 14px rgba(77,184,37,0.4);
    }

    .cm-btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .cm-btn-secondary {
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.85);
      border: 1px solid rgba(255,255,255,0.15);
    }

    .cm-btn-secondary:hover {
      background: rgba(255,255,255,0.14);
      color: white;
    }

    .cm-btn-link {
      background: none;
      color: rgba(255,255,255,0.5);
      font-size: 0.78rem;
      padding: 6px 10px;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cm-btn-link:hover { color: rgba(255,255,255,0.8); }

    /* ── Detail Modal ────────────────────────────────── */
    #cm-detail {
      position: fixed;
      inset: 0;
      z-index: 9995;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    #cm-detail.cm-visible {
      pointer-events: all;
      opacity: 1;
    }

    .cm-detail-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }

    .cm-detail-panel {
      position: relative;
      z-index: 1;
      background: var(--white);
      border-radius: 24px 24px 0 0;
      padding: 0;
      width: 100%;
      max-width: 680px;
      max-height: 92vh;
      overflow-y: auto;
      transform: translateY(30px);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 -8px 48px rgba(0,0,0,0.2);
    }

    #cm-detail.cm-visible .cm-detail-panel {
      transform: translateY(0);
    }

    .cm-detail-header {
      position: sticky;
      top: 0;
      background: var(--white);
      padding: 1.5rem 1.75rem 1rem;
      border-bottom: 1px solid var(--gray-200);
      z-index: 2;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
    }

    .cm-detail-header h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0 0 4px;
    }

    .cm-detail-header p {
      font-size: 0.82rem;
      color: var(--gray-500);
      margin: 0;
      line-height: 1.5;
    }

    .cm-close-btn {
      background: var(--gray-100);
      border: none;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--gray-700);
      font-size: 1rem;
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .cm-close-btn:hover { background: var(--gray-200); }

    .cm-detail-body {
      padding: 1.25rem 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    /* Consent-Kategorie-Karte */
    .cm-category {
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .cm-category:has(.cm-toggle:checked) {
      border-color: var(--green-light);
    }

    .cm-category-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      cursor: pointer;
      user-select: none;
    }

    .cm-cat-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .cm-cat-icon.green  { background: var(--green-pale);  color: var(--green-dark); }
    .cm-cat-icon.blue   { background: #e8f0fe;            color: #1a56db; }
    .cm-cat-icon.orange { background: #fff3e0;            color: #e65100; }

    .cm-cat-info { flex: 1; }

    .cm-cat-info strong {
      display: block;
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.88rem;
      color: var(--dark);
      margin-bottom: 2px;
    }

    .cm-cat-info span {
      font-size: 0.78rem;
      color: var(--gray-500);
      line-height: 1.4;
    }

    /* Toggle Switch */
    .cm-toggle-wrap {
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }

    .cm-toggle {
      position: relative;
      appearance: none;
      -webkit-appearance: none;
      width: 44px;
      height: 24px;
      background: var(--gray-200);
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.25s;
      outline: none;
    }

    .cm-toggle::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 18px;
      height: 18px;
      background: white;
      border-radius: 50%;
      transition: transform 0.25s;
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }

    .cm-toggle:checked {
      background: var(--green-main);
    }

    .cm-toggle:checked::after {
      transform: translateX(20px);
    }

    .cm-toggle:disabled {
      background: var(--green-main);
      opacity: 0.7;
      cursor: not-allowed;
    }

    .cm-toggle:disabled::after {
      transform: translateX(20px);
    }

    /* Cookie-Details Accordion */
    .cm-category-details {
      padding: 0 1.25rem 1rem;
      font-size: 0.8rem;
      color: var(--gray-500);
      line-height: 1.6;
      border-top: 1px solid var(--gray-100);
    }

    .cm-cookie-list {
      margin-top: 0.6rem;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .cm-cookie-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 10px;
      background: var(--gray-100);
      border-radius: 6px;
      font-size: 0.75rem;
    }

    .cm-cookie-item code {
      font-family: monospace;
      color: var(--dark);
      font-weight: 600;
    }

    .cm-cookie-item span {
      color: var(--gray-500);
    }

    /* Detail Footer */
    .cm-detail-footer {
      position: sticky;
      bottom: 0;
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      padding: 1rem 1.75rem;
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .cm-detail-footer .cm-btn {
      flex: 1;
      justify-content: center;
      min-width: 120px;
    }

    .cm-btn-dark {
      background: var(--dark);
      color: white;
    }

    .cm-btn-dark:hover { background: var(--gray-700); }

    .cm-btn-outline-dark {
      background: transparent;
      color: var(--dark);
      border: 1.5px solid var(--gray-200);
    }

    .cm-btn-outline-dark:hover {
      border-color: var(--gray-500);
      background: var(--gray-100);
    }

    /* Mobile Anpassungen */
    @media (max-width: 600px) {
      .cm-banner-inner { padding: 1rem 0; gap: 1rem; }
      .cm-banner-icon  { display: none; }
      .cm-banner-actions { width: 100%; }
      .cm-btn          { flex: 1; justify-content: center; font-size: 0.78rem; padding: 10px 14px; }
      .cm-detail-header { padding: 1.25rem 1.25rem 0.75rem; }
      .cm-detail-body   { padding: 1rem 1.25rem; }
      .cm-detail-footer { padding: 0.75rem 1.25rem; }
      .cm-detail-panel  { border-radius: 20px 20px 0 0; }
    }

    /* =========================================
       CONTACT INTERCEPT MODAL
    ========================================= */
    .cmo-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .cmo-overlay[hidden] { display: none; }

    .cmo-overlay.cmo-open {
      opacity: 1;
    }

    .cmo-box {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 0;
      width: 100%;
      max-width: 420px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.25);
      transform: translateY(20px) scale(0.97);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cmo-overlay.cmo-open .cmo-box {
      transform: translateY(0) scale(1);
    }

    /* Header */
    .cmo-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem 1.5rem 1.25rem;
      border-bottom: 1px solid var(--gray-200);
    }

    .cmo-header-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: white;
      flex-shrink: 0;
      box-shadow: 0 6px 18px rgba(77,184,37,0.35);
    }

    .cmo-header-icon.cmo-email {
      background: linear-gradient(135deg, #1a73e8, #0d47a1);
      box-shadow: 0 6px 18px rgba(26,115,232,0.35);
    }

    .cmo-title {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0 0 2px;
      line-height: 1.2;
    }

    .cmo-subtitle {
      font-size: 0.8rem;
      color: var(--gray-500);
      margin: 0;
    }

    .cmo-close {
      margin-left: auto;
      background: var(--gray-100);
      border: none;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--gray-500);
      font-size: 0.9rem;
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s;
    }

    .cmo-close:hover {
      background: var(--gray-200);
      color: var(--dark);
    }

    /* Info Card */
    .cmo-info-card {
      margin: 1.25rem 1.5rem 0;
      background: var(--green-ultra);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 1rem 1.1rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .cmo-info-card.cmo-email-info {
      background: #f0f4ff;
      border-color: #c7d4f5;
    }

    .cmo-info-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.82rem;
      color: var(--gray-700);
      line-height: 1.4;
    }

    .cmo-info-row i {
      color: var(--green-main);
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .cmo-info-card.cmo-email-info .cmo-info-row i {
      color: #1a73e8;
    }

    /* Target (Nummer / E-Mail) */
    .cmo-target {
      margin: 1rem 1.5rem 0;
      padding: 0.85rem 1.1rem;
      background: var(--gray-100);
      border-radius: var(--radius-md);
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 1.05rem;
      color: var(--dark);
      letter-spacing: 0.02em;
      text-align: center;
      border: 1.5px solid var(--gray-200);
    }

    /* Action Buttons */
    .cmo-actions {
      padding: 1.25rem 1.5rem 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .cmo-btn-confirm {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px;
      background: var(--green-main);
      color: white;
      border-radius: 50px;
      font-family: var(--font-ui);
      font-weight: 800;
      font-size: 0.95rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 18px rgba(77,184,37,0.35);
    }

    .cmo-btn-confirm:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(77,184,37,0.4);
      color: white;
    }

    .cmo-btn-confirm.cmo-email-btn {
      background: #1a73e8;
      box-shadow: 0 6px 18px rgba(26,115,232,0.35);
    }

    .cmo-btn-confirm.cmo-email-btn:hover {
      background: #0d47a1;
      box-shadow: 0 10px 24px rgba(26,115,232,0.4);
    }

    .cmo-btn-cancel {
      display: block;
      width: 100%;
      padding: 12px;
      background: transparent;
      color: var(--gray-500);
      border: 1.5px solid var(--gray-200);
      border-radius: 50px;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
      text-align: center;
    }

    .cmo-btn-cancel:hover {
      background: var(--gray-100);
      color: var(--dark);
      border-color: var(--gray-500);
    }

    /* Consent Note */
    .cmo-consent-note {
      font-size: 0.72rem;
      color: var(--gray-500);
      text-align: center;
      padding: 0 1.5rem 1.25rem;
      line-height: 1.5;
      margin: 0;
    }

    @media (max-width: 480px) {
      .cmo-box { border-radius: 20px 20px 0 0; }
      .cmo-overlay { align-items: flex-end; padding: 0; }
    }