@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');


    /* ── Reset & Base ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; color-scheme: light; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #FAF9F7;
      color: #1C1914;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── Tokens ───────────────────────────────────── */
    :root {
      --dark:        #FAF9F7;
      --dark-mid:    #F2EFE8;
      --dark-card:   #FFFFFF;
      --purple:      #9A7630;
      --purple-light:#C8963E;
      --purple-faint:#F5F0E8;
      --gold:        #A87230;
      --gold-light:  #C8963E;
      --white:       #1C1914;
      --gray:        #6E6860;
      --gray-light:  #9A948C;
      --border: rgba(0,0,0,0.08);
      --glow:   rgba(168,114,48,0.10);
    }

    /* ── Utilities ────────────────────────────────── */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
    .tag {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: rgba(200,150,62,0.08);
      border: 1px solid rgba(200,150,62,0.22);
      border-radius: 999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
      color: var(--gold-light);
      text-transform: uppercase;
    }
    .badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(200,150,62,0.12);
      border: 1px solid rgba(200,150,62,0.3);
      border-radius: 999px;
      padding: 0.35rem 1rem;
      font-size: 0.8rem; font-weight: 600;
      color: var(--gold-light);
      cursor: pointer;
      transition: background 0.2s;
    }
    .badge:hover { background: rgba(200,150,62,0.2); }
    .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
    @keyframes pulse {
      0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
    }

    /* ── Buttons ──────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.85rem 2rem; border-radius: 8px;
      font-size: 0.95rem; font-weight: 600; cursor: pointer;
      text-decoration: none; transition: all 0.2s; border: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, #E2B96A 100%);
      color: #1a0a00;
      box-shadow: 0 4px 24px rgba(200,150,62,0.35);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(200,150,62,0.5);
    }
    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.25);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.45);
    }

    /* ── Section headline ─────────────────────────── */
    .section-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--purple-light);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 800; line-height: 1.2;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .section-sub {
      font-size: 1.05rem; color: var(--gray);
      max-width: 560px; line-height: 1.7;
    }

    /* ────────────────────────────────────────────────
       NAVIGATION
    ──────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0;
      transition: background 0.3s, box-shadow 0.3s;
    }
    nav.scrolled {
      box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 2rem; max-width: 1120px; margin: 0 auto;
      position: relative;
    }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { height: 44px; width: auto; }
    .nav-links {
      display: flex; gap: 2.2rem; list-style: none;
      align-items: center;
    }
    .nav-links a {
      color: rgba(240,238,249,0.75);
      text-decoration: none; font-size: 0.9rem; font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta { display: flex; align-items: center; }
    .hamburger { display: none; cursor: pointer; background: none; border: none; padding: 0.25rem; }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--white); margin: 4px 0;
      transition: transform 0.3s, opacity 0.2s;
      transform-origin: center;
    }

    /* ────────────────────────────────────────────────
       HERO
    ──────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(200,150,62,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200,150,62,0.04) 0%, transparent 60%),
        var(--dark);
      padding: 8rem 0 5rem;
      position: relative; overflow: hidden;
    }
    .hero::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='%23A87230' fill-opacity='0.025' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 480px;
      column-gap: 4rem;
      row-gap: 1.5rem;
      align-items: start;
    }
    .hero-badge-row { margin-bottom: 1.8rem; }
    .hero-headline {
      font-family: 'Space Grotesk', 'Inter', sans-serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 700; line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 1.25rem;
    }
    .hero-headline em {
      font-style: normal;
      background: linear-gradient(135deg, var(--purple-light) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.15rem; color: var(--gray-light);
      line-height: 1.7; max-width: 500px;
      margin-bottom: 2.5rem;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
    .hero-stats {
      display: flex; gap: 0.7rem;
      flex-wrap: wrap;
      grid-column: 1 / -1;
    }
    .hero-stat-card {
      background: #FFFDF9;
      border: 1px solid rgba(168,114,48,0.35);
      border-top: 3px solid #A87230;
      border-radius: 14px;
      padding: 0.75rem 1rem;
      min-width: 0;
      flex: 1;
      box-shadow: 0 4px 16px rgba(0,0,0,0.07), 0 0 0 1px rgba(168,114,48,0.08);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .hero-stat-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.10);
      transform: translateY(-2px);
    }
    .stat-icon {
      margin-bottom: 0.35rem;
      display: flex; align-items: center;
    }
    .stat-num {
      font-size: 1.9rem; font-weight: 800; color: var(--white);
      letter-spacing: -0.03em;
    }
    .stat-num span { color: var(--gold); }
    .stat-label { font-size: 0.78rem; color: var(--gray); margin-top: 0.1rem; }

    /* Hero photo stack */
    .hero-visual {
      position: relative;
      display: flex; justify-content: flex-end;
      align-self: flex-start;
      margin-top: 3.5rem;
    }
    .hero-photo-main {
      width: 400px; max-width: 100%;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
      position: relative; z-index: 2;
    }
    .hero-photo-main img {
      width: 100%; height: 560px;
      object-fit: cover; object-position: top center;
      display: block;
    }
    /* Floating card on photo */
    .hero-float-card {
      position: absolute;
      bottom: -20px; left: -50px; z-index: 3;
      background: #FFFDF9;
      border: 1px solid rgba(168,114,48,0.45);
      border-top: 3px solid #A87230;
      border-radius: 16px;
      padding: 1rem 1.4rem;
      min-width: 200px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 0 0 1px rgba(168,114,48,0.12);
    }
    .hero-float-card .card-value {
      font-size: 1.5rem; font-weight: 800;
      background: linear-gradient(135deg, #A87230, #C8963E);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-float-card .card-label {
      font-size: 0.75rem; color: #6E6860; margin-top: 0.15rem; line-height: 1.4;
    }
    /* Glow behind photo */
    .hero-glow {
      position: absolute;
      width: 350px; height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(123,47,190,0.35) 0%, transparent 70%);
      top: 50%; left: 50%; transform: translate(-40%, -45%);
      filter: blur(40px);
      z-index: 1;
    }


    /* ────────────────────────────────────────────────
       HERO BRAND CARD
    ──────────────────────────────────────────────── */
    .hero-brand-card {
      width: 420px; max-width: 100%;
      border-radius: 24px;
      background: linear-gradient(160deg, rgba(22,18,12,0.97) 0%, rgba(12,10,6,0.99) 100%);
      border: 1px solid rgba(168,114,48,0.28);
      box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(168,114,48,0.10), inset 0 1px 0 rgba(168,114,48,0.12);
      padding: 0; overflow: hidden;
      position: relative; z-index: 2;
    }
    .hbc-network { width: 100%; display: block; }
    .hbc-svg { width: 100%; height: auto; display: block; }
    .hbc-line { stroke: rgba(168,114,48,0.65); stroke-width: 1.5; }
    .hbc-line-dim { stroke: rgba(168,114,48,0.32); stroke-width: 1.2; }
    @keyframes hbcNodePulse {
      0%, 100% { opacity: 0.5; }
      50%       { opacity: 1; }
    }
    .hbc-node-pulse    { animation: hbcNodePulse 2.6s ease-in-out infinite; }
    .hbc-node-pulse-d1 { animation: hbcNodePulse 2.6s ease-in-out 0.4s infinite; }
    .hbc-node-pulse-d2 { animation: hbcNodePulse 2.6s ease-in-out 0.9s infinite; }
    .hbc-node-pulse-d3 { animation: hbcNodePulse 2.6s ease-in-out 1.4s infinite; }
    .hbc-node-pulse-d4 { animation: hbcNodePulse 2.6s ease-in-out 1.8s infinite; }
    @keyframes hbcRingBreath {
      0%, 100% { opacity: 0.45; }
      50%       { opacity: 0.9; }
    }
    .hbc-node-ring { animation: hbcRingBreath 3.2s ease-in-out infinite; }

    /* ────────────────────────────────────────────────
       SERVICES
    ──────────────────────────────────────────────── */
    .services {
      padding: 7rem 0;
      background: var(--dark);
    }
    .services-header {
      text-align: center; margin-bottom: 4rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.2rem;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--purple), var(--gold));
      opacity: 0; transition: opacity 0.25s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(123,47,190,0.4);
      border-color: rgba(123,47,190,0.4);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 52px; height: 52px;
      background: var(--purple-faint);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .service-title {
      font-size: 1.15rem; font-weight: 700; color: var(--white);
      margin-bottom: 0.75rem;
    }
    .service-desc {
      font-size: 0.9rem; color: var(--gray); line-height: 1.65;
      margin-bottom: 1.5rem;
    }
    .service-link {
      font-size: 0.85rem; font-weight: 600; color: var(--purple-light);
      text-decoration: none; display: flex; align-items: center; gap: 0.3rem;
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 0.5rem; }

    /* ────────────────────────────────────────────────
       REFERENZEN / RESULTS
    ──────────────────────────────────────────────── */
    .results {
      padding: 7rem 0;
      background: var(--dark-mid);
      position: relative;
    }
    .results::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(123,47,190,0.12), transparent 60%);
      pointer-events: none;
    }
    .results-header { margin-bottom: 4rem; }
    .results-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    .result-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
    }
    .result-number {
      font-size: 2.5rem; font-weight: 900;
      background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.4rem;
    }
    .result-desc { font-size: 0.9rem; color: var(--gray); }

    /* Testimonial — scrollendes Karussell */
    .testimonials-track-wrap {
      overflow: hidden;
      position: relative;
      margin-top: 3rem;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    }
    .testimonials-track {
      display: flex;
      gap: 1.5rem;
      width: max-content;
      animation: scrollTestimonials 40s linear infinite;
    }
    .testimonials-track:hover { animation-play-state: paused; }
    @keyframes scrollTestimonials {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .testimonial {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      flex-shrink: 0;
      width: 360px;
    }
    .testimonial-stars {
      color: var(--gold); font-size: 0.9rem; letter-spacing: 2px;
      margin-bottom: 0.9rem;
    }
    .testimonial-text {
      font-size: 0.95rem; color: var(--gray-light); line-height: 1.7;
      font-style: italic; margin-bottom: 1.5rem;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 0.9rem;
    }
    .testimonial-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--purple-faint);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 700; color: var(--purple-light);
      flex-shrink: 0;
    }
    .testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
    .testimonial-role { font-size: 0.78rem; color: var(--gray); }

    /* ────────────────────────────────────────────────
       ÜBER MICH
    ──────────────────────────────────────────────── */
    .about {
      padding: 7rem 0;
      background: var(--dark);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 390px 1fr;
      gap: 5rem;
      align-items: start;
    }
    .about-photo {
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }
    .about-photo img {
      width: 100%; height: 460px;
      object-fit: cover; object-position: top center;
      display: block;
    }
    .about-photo-badge {
      position: absolute;
      bottom: 24px; right: 24px;
      background: rgba(8,5,20,0.9);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.8rem 1.2rem;
    }
    .about-photo-badge p { font-size: 0.75rem; color: var(--gray); }
    .about-photo-badge strong { font-size: 0.95rem; color: var(--white); }
    .about-text .section-label { margin-bottom: 0.5rem; }
    .about-body {
      font-size: 1rem; color: var(--gray-light); line-height: 1.8;
      margin-bottom: 1.4rem;
    }
    .about-body strong { color: var(--white); font-weight: 600; }
    .about-quote {
      border-left: 3px solid var(--purple);
      padding-left: 1.2rem;
      margin: 2rem 0;
      font-size: 1.1rem; font-style: italic;
      color: var(--white); line-height: 1.6;
    }
    .about-logos {
      display: flex; flex-wrap: wrap; gap: 1rem;
      margin-top: 0; padding-top: 0.5rem;
      /* border handled by certs-section */
    }
    .about-logo-chip {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 0.5rem 1rem;
      font-size: 0.8rem; font-weight: 600; color: var(--gray-light);
    }
    .cert-chip {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 0.5rem 1rem 0.5rem 0.7rem;
      font-size: 0.8rem; font-weight: 600; color: var(--gray-light);
      transition: background 0.2s, border-color 0.2s;
    }
    .cert-chip:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.22);
      color: var(--white);
    }
    .cert-chip svg { flex-shrink: 0; }

    /* ────────────────────────────────────────────────
       KONTAKT
    ──────────────────────────────────────────────── */
    .contact {
      padding: 7rem 0;
      background: var(--dark-mid);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: start;
    }
    .contact-left .section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); }
    .contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-row {
      display: flex; gap: 0.9rem; align-items: flex-start;
    }
    .contact-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--purple-faint);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .contact-detail strong { display: block; font-size: 0.85rem; color: var(--white); font-weight: 600; }
    .contact-detail span { font-size: 0.83rem; color: var(--gray); }
    .contact-form {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2.5rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label {
      display: block; font-size: 0.82rem; font-weight: 600;
      color: var(--gray-light); margin-bottom: 0.45rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; background: rgba(255,255,255,0.05);
      border: 1.5px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 0.75rem 1rem;
      color: var(--white); font-family: inherit; font-size: 0.9rem;
      transition: border-color 0.2s;
      outline: none;
      appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(156,163,175,0.6); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--purple); }
    .form-group select option { background: #1a0d30; color: var(--white); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-gdpr {
      font-size: 0.78rem; color: var(--gray);
      margin-bottom: 1.4rem; line-height: 1.6;
    }
    .form-gdpr a { color: var(--purple-light); text-decoration: none; }
    .form-gdpr input[type="checkbox"] { margin-right: 0.4rem; accent-color: var(--purple); }

    /* ────────────────────────────────────────────────
       FOOTER
    ──────────────────────────────────────────────── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 2.5rem 0;
    }
    .footer-inner {
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo img { height: 36px; }
    .footer-links {
      display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap;
    }
    .footer-links a {
      font-size: 0.82rem; color: var(--gray);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-social { display: flex; gap: 0.8rem; }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--gray); text-decoration: none; font-size: 0.85rem;
      transition: all 0.2s;
    }
    .social-btn:hover {
      background: var(--purple-faint);
      border-color: var(--border);
      color: var(--white);
    }

    /* ────────────────────────────────────────────────
       PHOTO PLACEHOLDER (falls Fotos noch fehlen)
    ──────────────────────────────────────────────── */
    .photo-placeholder {
      background: var(--purple-faint);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.75rem;
      color: var(--gray);
      font-size: 0.85rem; text-align: center;
      min-height: 560px;
    }
    .photo-placeholder .ph-icon { font-size: 3rem; opacity: 0.4; }

    /* ────────────────────────────────────────────────
       RESPONSIVE
    ──────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--dark, #0d0d14);
        padding: 1.2rem 1.5rem 1.5rem;
        gap: 0.2rem;
        border-top: 1px solid rgba(255,255,255,0.07);
        box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        z-index: 999;
      }
      .nav-links.open li { width: 100%; }
      .nav-links.open a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
      }
      .nav-links.open li:last-child a { border-bottom: none; }
      .hamburger { display: block; }
      /* Hamburger → X animation */
      .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
      .hamburger.open span:nth-child(2) { opacity: 0; }
      .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    }
    @media (max-width: 600px) {
      /* 2×2 compact tile grid instead of stacked list */
      .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
      }
      .hero-stat-card {
        flex: unset !important;
        width: auto !important;
        padding: 0.7rem 0.85rem;
      }
      .hero-stats .stat-num { font-size: 1.55rem; }
      /* Hide less impactful tiles on mobile */
      .hero-stat-mobile-hide { display: none !important; }
      .form-row { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: 1fr; }
      .trust-inner { flex-direction: column; gap: 1rem; }
    }

    /* ────────────────────────────────────────────────
       LOGOS SCROLL TRACK
    ──────────────────────────────────────────────── */
    .trust-bar {
      background: var(--dark-mid);
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding: 2.8rem 0;
      overflow: hidden;
    }
    .logos-track-wrap {
      overflow: hidden;
      position: relative;
      /* fade edges */
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .logos-track {
      display: flex;
      align-items: center;
      gap: 4rem;
      width: max-content;
      animation: scrollLogos 28s linear infinite;
    }
    .logos-track:hover { animation-play-state: paused; }
    @keyframes scrollLogos {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .logo-item {
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: rgba(240,238,249,0.35);
      transition: color 0.3s;
      height: 44px;
    }
    .logo-item:hover { color: rgba(240,238,249,0.75); }
    .logo-item svg { height: 100%; width: auto; max-width: 180px; }

    /* ────────────────────────────────────────────────
       PRICING
    ──────────────────────────────────────────────── */
    .pricing {
      padding: 7rem 0;
      background: var(--dark);
      position: relative;
    }
    .pricing::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(123,47,190,0.1), transparent 60%);
      pointer-events: none;
    }
    .pricing-header { text-align: center; margin-bottom: 1rem; }
    .pricing-subtitle {
      text-align: center; font-size: 0.88rem; color: var(--gray);
      margin-bottom: 3.5rem;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      align-items: start;
    }
    /* 4-Phasen-Layout */
    .pricing-phases-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      align-items: start;
    }
    .phase-card { padding: 1.8rem; }
    .phase-number {
      font-size: 2.5rem; font-weight: 900;
      background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1; margin-bottom: 0.5rem;
      letter-spacing: -0.04em;
    }
    .phase-desc {
      font-size: 0.83rem; color: var(--gray); line-height: 1.6;
      margin: 0.8rem 0 1.2rem;
    }
    .phase-badge {
      position: absolute; top: 1rem; right: 1rem;
      font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #1a0a00; border-radius: 999px; padding: 0.2rem 0.65rem;
    }
    .phase-icon {
      font-size: 1.8rem; line-height: 1;
      margin-bottom: 0.5rem; display: block;
    }
    .phase-card { display: flex; flex-direction: column; }
    .phase-card .price-features { flex: 1; }
    .price-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2.2rem;
      position: relative;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(0,0,0,0.35);
    }
    .price-card.featured {
      border-color: var(--purple);
      box-shadow: 0 0 0 1px var(--purple), 0 24px 60px rgba(123,47,190,0.2);
    }
    .price-card.featured::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--gold));
      border-radius: 24px 24px 0 0;
    }
    .price-tier {
      font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--purple-light);
      margin-bottom: 0.3rem;
    }
    .price-name {
      font-size: 1.4rem; font-weight: 800; color: var(--white);
      margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem;
    }
    .price-badge-pop {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
      background: linear-gradient(135deg, var(--gold), #E2B96A);
      color: #1a0a00;
      border-radius: 999px; padding: 0.2rem 0.65rem;
      text-transform: uppercase;
    }
    .price-amount {
      margin: 1.4rem 0;
      padding: 1.2rem 0;
      border-top: 1px solid rgba(255,255,255,0.07);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .price-main {
      font-size: 2.6rem; font-weight: 900; color: var(--white);
      letter-spacing: -0.03em; line-height: 1;
    }
    .price-main sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; }
    .price-sub {
      font-size: 0.8rem; color: var(--gray); margin-top: 0.35rem;
    }
    .price-features { list-style: none; margin: 1.5rem 0; }
    .price-features li {
      font-size: 0.88rem; color: var(--gray-light);
      padding: 0.45rem 0;
      display: flex; gap: 0.6rem; align-items: flex-start;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .price-features li:last-child { border-bottom: none; }
    .price-features li::before {
      content: '✓';
      color: var(--purple-light); font-weight: 700; flex-shrink: 0;
      margin-top: 0.05rem;
    }
    .price-note {
      text-align: center; font-size: 0.78rem; color: var(--gray);
      margin-top: 2.5rem; padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
      .pricing-phases-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    }

    /* ────────────────────────────────────────────────
       FOOTER (neu)
    ──────────────────────────────────────────────── */
    .footer-main {
      background: #060411;
      border-top: 1px solid rgba(123,47,190,0.2);
      padding: 3.5rem 0 0;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand p {
      font-size: 0.88rem; color: var(--gray); line-height: 1.7;
      margin: 1rem 0 1.5rem;
      max-width: 280px;
    }
    .footer-social-row {
      display: flex; gap: 0.7rem;
    }
    .social-icon-btn {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--gray); text-decoration: none;
      transition: all 0.2s; flex-shrink: 0;
    }
    .social-icon-btn:hover {
      background: var(--purple-faint);
      border-color: var(--purple);
      color: var(--white);
      transform: translateY(-2px);
    }
    .social-icon-btn svg { width: 16px; height: 16px; fill: currentColor; }
    .footer-col h4 {
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--white);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col ul a {
      font-size: 0.87rem; color: var(--gray); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--white); }
    .footer-bottom {
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
      padding: 1.4rem 0;
    }
    .footer-copy {
      font-size: 0.78rem; color: rgba(156,163,175,0.6);
    }
    .footer-legal {
      display: flex; gap: 1.5rem; flex-wrap: wrap;
    }
    .footer-legal a {
      font-size: 0.78rem; color: rgba(156,163,175,0.6);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-legal a:hover { color: var(--white); }
    @media (max-width: 760px) {
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    /* ────────────────────────────────────────────────
       MODALS (Legal)
    ──────────────────────────────────────────────── */
    .modal-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(6px);
      padding: 2rem 1rem;
      overflow-y: auto;
    }
    .modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
    .modal-box {
      background: #110D25;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem 3rem;
      max-width: 760px; width: 100%;
      margin: auto;
      position: relative;
    }
    .modal-close {
      position: absolute; top: 1.2rem; right: 1.4rem;
      background: rgba(255,255,255,0.08); border: none;
      width: 32px; height: 32px; border-radius: 8px;
      color: var(--gray); font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .modal-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }
    .modal-box h2 {
      font-size: 1.5rem; font-weight: 800; color: var(--white);
      margin-bottom: 0.4rem;
    }
    .modal-box h3 {
      font-size: 1rem; font-weight: 700; color: var(--white);
      margin: 1.6rem 0 0.4rem;
    }
    .modal-box p, .modal-box li {
      font-size: 0.88rem; color: var(--gray-light); line-height: 1.75;
      margin-bottom: 0.5rem;
    }
    .modal-box ul { padding-left: 1.2rem; margin-bottom: 0.5rem; }
    .modal-box a { color: var(--purple-light); }
    .modal-divider {
      height: 1px; background: rgba(255,255,255,0.08);
      margin: 1rem 0;
    }

    /* ────────────────────────────────────────────────
       COOKIE BANNER
    ──────────────────────────────────────────────── */
    #cookieBanner {
      position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
      z-index: 8888;
      background: #160F2E;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.4rem 2rem;
      display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
      box-shadow: 0 16px 48px rgba(0,0,0,0.5);
      max-width: 900px; margin: 0 auto;
    }
    #cookieBanner p {
      font-size: 0.85rem; color: var(--gray-light);
      flex: 1; min-width: 200px; line-height: 1.6;
    }
    #cookieBanner p a { color: var(--purple-light); }
    .cookie-btns { display: flex; gap: 0.7rem; flex-shrink: 0; flex-wrap: wrap; }
    .cookie-btn-accept {
      background: linear-gradient(135deg, var(--gold), #E2B96A);
      color: #1a0a00; border: none; border-radius: 8px;
      padding: 0.6rem 1.3rem; font-size: 0.85rem; font-weight: 700;
      cursor: pointer; transition: opacity 0.2s;
    }
    .cookie-btn-accept:hover { opacity: 0.9; }
    .cookie-btn-decline {
      background: transparent;
      color: var(--gray); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 0.6rem 1.1rem; font-size: 0.85rem; font-weight: 600;
      cursor: pointer; transition: color 0.2s, border-color 0.2s;
    }
    .cookie-btn-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }

    /* ── Language Switcher Dropdown ─────────────── */
    .lang-switcher {
      position: relative;
    }
    .lang-trigger {
      display: flex; align-items: center; gap: 0.4rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 0.32rem 0.7rem;
      color: var(--white);
      font-family: inherit; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.06em; cursor: pointer;
      transition: background 0.18s, border-color 0.18s;
      white-space: nowrap;
    }
    .lang-trigger:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.25);
    }
    .lang-trigger .lang-caret {
      font-size: 0.6rem; opacity: 0.6;
      transition: transform 0.2s;
      display: inline-block;
    }
    .lang-switcher.open .lang-caret { transform: rotate(180deg); }
    .lang-dropdown {
      display: none;
      position: absolute; top: calc(100% + 8px); right: 0;
      background: #160F2E;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 4px;
      min-width: 110px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.45);
      z-index: 200;
      overflow: hidden;
    }
    .lang-switcher.open .lang-dropdown { display: block; }
    .lang-option {
      display: flex; align-items: center; gap: 0.55rem;
      width: 100%; background: none; border: none;
      color: rgba(240,238,249,0.65);
      font-family: inherit; font-size: 0.82rem; font-weight: 600;
      padding: 0.52rem 0.8rem; border-radius: 7px;
      cursor: pointer; text-align: left;
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
    }
    .lang-option:hover { background: rgba(255,255,255,0.08); color: var(--white); }
    .lang-option.active { background: var(--purple); color: var(--white); }
    .lang-option .lang-flag { font-size: 1rem; }
  
    /* ── Space Grotesk for page headings */
    .page-hero h1, .page-hero .page-hero-title {
      font-family: 'Space Grotesk', 'Inter', sans-serif;
    }

    /* ── Sub-page hero ────────────────────── */
    .page-hero {
      padding: 7.5rem 0 3.5rem;
      background: var(--dark);
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .page-hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--purple), transparent);
    }
    .breadcrumb {
      font-size: 0.78rem; color: var(--gray);
      margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem;
    }
    .breadcrumb a { color: var(--purple-light); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb-sep { opacity: 0.4; }
    .page-hero h1 {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
      letter-spacing: -0.025em; color: var(--white);
      line-height: 1.1; margin-bottom: 0.75rem;
    }
    .page-hero-sub {
      font-size: 1.05rem; color: var(--gray); max-width: 540px; line-height: 1.7;
    }

    /* ── Professional about title ─────────── */
    .about-name-title {
      font-family: 'Space Grotesk', 'Inter', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
      font-weight: 700; letter-spacing: -0.02em;
      margin-bottom: 0.4rem !important;
    }
    .about-role-line {
      font-size: 0.95rem; font-weight: 500;
      color: var(--gray); margin-bottom: 1.8rem; line-height: 1.4;
    }

    /* ── Certifications block ─────────────── */
    .certs-section {
      margin-top: 2rem; padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .certs-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em;
      text-transform: uppercase; color: var(--gray);
      margin-bottom: 0.9rem;
    }
    .cert-chip {
      display: inline-flex; align-items: flex-start; gap: 0.6rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 0.55rem 1rem 0.55rem 0.7rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .cert-chip:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.22);
    }
    .cert-chip svg { flex-shrink: 0; margin-top: 2px; }
    .cert-info { display: flex; flex-direction: column; gap: 0.1rem; }
    .cert-name { font-size: 0.78rem; font-weight: 600; color: var(--gray-light); }
    .cert-org  { font-size: 0.65rem; color: var(--gold); font-weight: 500;
                 letter-spacing: 0.04em; }
    .certs-list {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 0.55rem;
    }
    .certs-list li {
      font-size: 0.82rem; color: var(--gray-light); line-height: 1.45;
      padding: 0.45rem 0.75rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
    }
    .certs-list li::before { display: none; }
    .cert-title { font-weight: 600; color: var(--white); }
    .cert-issuer { color: var(--gray); }
    .cert-year   { color: var(--gold); font-size: 0.75rem; }

    /* ── Contact icon matches LinkedIn ───── */
    .contact-icon svg { flex-shrink: 0; }

    /* ── Active nav link ─────────────────── */
    .nav-links a.active { color: var(--white); }
    .nav-links a.active::after {
      content: ''; display: block; height: 2px;
      background: var(--purple-light); border-radius: 1px; margin-top: 2px;
    }

    /* ── CTA strip on sub-pages ──────────── */
    .cta-strip {
      padding: 5rem 0; text-align: center;
      background: linear-gradient(135deg, rgba(123,47,190,0.12), rgba(200,150,62,0.06));
      border-top: 1px solid var(--border);
    }
    .cta-strip h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; margin-bottom: 0.75rem; color: var(--white); }
    .cta-strip p  { color: var(--gray); margin-bottom: 2rem; font-size: 1.05rem; }


/* ══════════════════════════════════════════════════════════
   SERVICES PAGE — sv-* components
   ══════════════════════════════════════════════════════════ */

/* ── Intro Stats Bar ─────────────────────────────────── */
.sv-intro {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.sv-intro-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2rem;
}
.sv-intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  text-align: center;
}
.sv-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sv-stat-lbl {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}
.sv-stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ── 4-Phase Grid ─────────────────────────────────────── */
.sv-phases {
  padding: 5rem 0;
}
.sv-phase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.sv-phase-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s, transform 0.25s;
}
.sv-phase-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-3px);
}
.sv-phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.sv-phase-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(123,47,190,0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  border: 1px solid rgba(123,47,190,0.25);
}
.sv-phase-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.sv-phase-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.sv-phase-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.sv-phase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}
.sv-phase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--gray-light);
  line-height: 1.5;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.sv-phase-list li::before {
  content: '✓';
  color: var(--purple-light);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.sv-phase-list li:last-child {
  border-bottom: none;
}
.sv-phase-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.25rem;
  transition: color 0.2s;
}
.sv-phase-cta:hover { color: var(--white); }

/* ── Industry Grid ──────────────────────────────────── */
.sv-industries {
  padding: 5rem 0;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sv-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.sv-industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.sv-industry-card:hover {
  border-color: rgba(123,47,190,0.45);
  transform: translateY(-2px);
}
.sv-industry-icon {
  font-size: 2rem;
  line-height: 1;
}
.sv-industry-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-light);
  line-height: 1.35;
}

/* ── 4-Step Process ────────────────────────────────── */
.sv-process {
  padding: 5rem 0;
}
.sv-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.sv-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 1rem;
}
.sv-step-connector {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold));
  align-self: 3rem;
  flex-shrink: 0;
  margin-top: 2rem;
  opacity: 0.5;
}
.sv-step-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123,47,190,0.2), rgba(200,150,62,0.1));
  border: 1.5px solid rgba(123,47,190,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--purple-light);
  flex-shrink: 0;
}
.sv-step-content { max-width: 180px; }
.sv-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.sv-step-desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .sv-phase-grid { grid-template-columns: 1fr; }
  .sv-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .sv-step-connector {
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, var(--purple-light), var(--gold));
    margin: 0;
    align-self: center;
  }
  .sv-stat { padding: 1rem 1.5rem; }
  .sv-stat-divider { display: none; }
}
@media (max-width: 520px) {
  .sv-industry-grid { grid-template-columns: 1fr 1fr; }
  .sv-phase-card { padding: 1.5rem 1.25rem; }
}


/* ── Expanded Industry Cards (with needs list) ─────── */
.sv-industry-grid--expanded {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.sv-industry-card--expanded {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.5rem 1.5rem 1.25rem;
  gap: 0;
}
.sv-industry-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sv-industry-card--expanded .sv-industry-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.sv-industry-card--expanded .sv-industry-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.sv-industry-needs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sv-industry-needs li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.45;
}
.sv-industry-needs li::before {
  content: '→';
  color: var(--purple-light);
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .sv-industry-grid--expanded { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .sv-industry-grid--expanded { grid-template-columns: 1fr; }
}


/* ── Industry Accordion ─────────────────────────────── */
.sv-industry-grid--accordion {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

/* The card */
.sv-ind-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.sv-ind-item:hover,
.sv-ind-item[open] {
  border-color: rgba(123,47,190,0.5);
}
.sv-ind-item[open] {
  background: rgba(123,47,190,0.06);
}

/* Summary row — always visible */
.sv-ind-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.sv-ind-summary::-webkit-details-marker { display: none; }

.sv-ind-summary .sv-industry-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.sv-ind-summary .sv-industry-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  line-height: 1.3;
}

/* Chevron arrow */
.sv-ind-chevron {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-right: 2px solid var(--purple-light);
  border-bottom: 2px solid var(--purple-light);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-right: 0.1rem;
  margin-bottom: 0.2rem;
}
.sv-ind-item[open] .sv-ind-chevron {
  transform: rotate(-135deg);
  margin-bottom: -0.2rem;
}

/* Needs list — revealed on open */
.sv-industry-needs {
  list-style: none;
  padding: 0 1.1rem 1.25rem;
  margin: 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.9rem;
}
.sv-industry-needs li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.81rem;
  color: var(--gray);
  line-height: 1.45;
}
.sv-industry-needs li::before {
  content: '→';
  color: var(--purple-light);
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 0.08rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sv-industry-grid--accordion { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .sv-industry-grid--accordion { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .sv-industry-grid--accordion { grid-template-columns: 1fr; }
}


/* ── Industry Accordion — Detail Content ───────────── */
.sv-ind-content {
  padding: 0 1.1rem 1.25rem;
  border-top: 1px solid var(--border);
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--purple-light) transparent;
}
.sv-ind-content::-webkit-scrollbar {
  width: 4px;
}
.sv-ind-content::-webkit-scrollbar-track {
  background: transparent;
}
.sv-ind-content::-webkit-scrollbar-thumb {
  background: var(--purple-light);
  border-radius: 2px;
}

.sv-ind-phase {
  padding-top: 1rem;
  margin-bottom: 0.25rem;
}
.sv-ind-phase:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
}

.sv-ind-phase-title {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.55rem;
}
.sv-ind-phase-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-light);
  margin: 0.65rem 0 0.3rem;
  padding-left: 0.1rem;
}

.sv-ind-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sv-ind-list li {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.45;
  padding: 0.12rem 0;
}
.sv-ind-list li::before {
  content: '·';
  color: var(--purple-light);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   PACKAGES PAGE — Akademie (ak-*) & Umsetzung (pk-*)
   ══════════════════════════════════════════════════════════ */

/* ── Akademie wrapper ──────────────────────────────── */
.ak-section-wrapper {
  padding: 4rem 0 2rem;
}

/* ── Work-in-Progress Overlay ── */
.ak-section-wrapper.ak-wip {
  position: relative;
}
.wip-overlay {
  position: sticky;
  top: 72px;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  pointer-events: none;
}
.wip-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a0a00, #2d1500);
  border: 2px solid #C59B24;
  border-radius: 16px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 32px rgba(197,155,36,0.35), 0 0 0 4px rgba(197,155,36,0.08);
  pointer-events: all;
}
.wip-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.wip-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.wip-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #C59B24;
  letter-spacing: 0.02em;
}
.wip-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.ak-wip-content {
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
  filter: grayscale(30%);
}
@media (max-width: 600px) {
  .wip-badge {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.2rem;
  }
}
.ak-main-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── Category block ─────────────────────────────────── */
.ak-category {
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.ak-category:last-child { border-bottom: none; }
.ak-category--premium {
  background: linear-gradient(135deg, rgba(123,47,190,0.07), rgba(200,150,62,0.04));
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2.5rem;
  border: 1px solid rgba(123,47,190,0.2);
  border-bottom: 1px solid rgba(123,47,190,0.2);
  margin-bottom: 0;
}
.ak-category-header {
  margin-bottom: 2rem;
}
.ak-category-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,150,62,0.1);
  border: 1px solid rgba(200,150,62,0.25);
  border-radius: 99px;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.6rem;
}
.ak-category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.ak-category-sub {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 600px;
}

/* ── Course grids ────────────────────────────────────── */
.ak-grid {
  display: grid;
  gap: 1.1rem;
}
.ak-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ak-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Course card ─────────────────────────────────────── */
.ak-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: border-color 0.2s, transform 0.2s;
}
.ak-card:hover {
  border-color: rgba(123,47,190,0.45);
  transform: translateY(-2px);
}
.ak-card--highlight {
  border-color: rgba(123,47,190,0.4);
  background: rgba(123,47,190,0.07);
}
.ak-card--premium {
  border-color: rgba(200,150,62,0.3);
  background: rgba(200,150,62,0.04);
}
.ak-card--premium:hover {
  border-color: rgba(200,150,62,0.6);
}

.ak-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ak-card-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.ak-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* Badges */
.ak-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}
.ak-badge--free {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}
.ak-badge--paid {
  background: rgba(123,47,190,0.15);
  color: var(--purple-light);
  border: 1px solid rgba(123,47,190,0.3);
}
.ak-badge--pro {
  background: linear-gradient(135deg, rgba(123,47,190,0.25), rgba(200,150,62,0.15));
  color: var(--gold-light);
  border: 1px solid rgba(200,150,62,0.3);
}
.ak-badge--premium {
  background: rgba(200,150,62,0.15);
  color: var(--gold);
  border: 1px solid rgba(200,150,62,0.3);
}

/* Topics list */
.ak-card-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.ak-card-topics li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0.15rem 0;
  line-height: 1.4;
}
.ak-card-topics li::before {
  content: '·';
  color: var(--purple-light);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Upsell hint */
.ak-card-upsell {
  font-size: 0.73rem;
  color: var(--gold);
  background: rgba(200,150,62,0.08);
  border: 1px solid rgba(200,150,62,0.2);
  border-radius: 0.4rem;
  padding: 0.35rem 0.6rem;
  line-height: 1.3;
}

/* CTAs */
.ak-card-cta {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
  padding: 0.55rem 0;
  border: 1px solid rgba(123,47,190,0.3);
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.ak-card-cta:hover {
  background: rgba(123,47,190,0.15);
  color: var(--white);
}
.ak-card-cta--premium {
  color: var(--gold);
  border-color: rgba(200,150,62,0.3);
}
.ak-card-cta--premium:hover {
  background: rgba(200,150,62,0.1);
  color: var(--white);
}

/* ── Umsetzungs-Pakete ───────────────────────────────── */
.pk-section {
  padding: 5rem 0 4rem;
  background: rgba(255,255,255,0.012);
  border-top: 1px solid var(--border);
}
.pk-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.pk-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}
.pk-card--featured {
  border-color: var(--purple-light);
  background: rgba(123,47,190,0.08);
  box-shadow: 0 0 0 1px rgba(123,47,190,0.2), 0 20px 40px rgba(0,0,0,0.25);
}
.pk-card-popular {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: white;
  padding: 0.2rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.pk-card-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
}
.pk-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.pk-card-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.pk-price-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
}
.pk-price-sub {
  font-size: 0.75rem;
  color: var(--gray);
}
.pk-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.pk-card-features li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--gray-light);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.4;
}
.pk-card-features li::before {
  content: '✓';
  color: var(--purple-light);
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.pk-card-cta {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(123,47,190,0.35);
  border-radius: 0.6rem;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5rem;
}
.pk-card-cta:hover { background: rgba(123,47,190,0.15); color: var(--white); }
.pk-card-cta--featured {
  background: linear-gradient(135deg, var(--purple), #9333ea);
  color: white;
  border-color: transparent;
}
.pk-card-cta--featured:hover { opacity: 0.88; }
.pk-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2rem;
  line-height: 1.8;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .ak-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ak-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pk-grid { grid-template-columns: 1fr; }
  .ak-grid--4, .ak-grid--3 { grid-template-columns: 1fr; }
  .ak-category--premium { padding: 1.5rem 1rem; }
}


/* ══════════════════════════════════════════════════════════
   DESIGN OVERRIDES — Apple · Luxus · Minimalismus
   Warm Anthrazit + Gold · Cormorant Garamond · Whitespace
   ══════════════════════════════════════════════════════════ */

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Base typography upgrade ─────────────────────────── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Display headings — luxury serif ─────────────────── */
h1, h2,
.section-title,
.hero-content h1,
.page-hero h1,
.ak-category-title,
.sv-phase-title,
.pk-card-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  letter-spacing: -0.01em;
}

/* ── Section title ──────────────────────────────────── */
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.1rem;
}

/* ── Section label — refined uppercase ──────────────── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── Hero headline ───────────────────────────────────── */
.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.hero-content h1 em,
.hero-em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Page hero headline ──────────────────────────────── */
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-hero {
  padding: 9rem 0 5rem;
  animation: fadeInUp 0.7s ease both;
}

/* ── Section spacing — more generous whitespace ──────── */
.services      { padding: 7rem 0; }
.results       { padding: 7rem 0; }
.about         { padding: 7rem 0; }
.pricing       { padding: 7rem 0; }
.contact       { padding: 7rem 0; }
.sv-phases     { padding: 7rem 0; }
.sv-industries { padding: 7rem 0; }
.sv-process    { padding: 7rem 0; }
.ak-section-wrapper { padding: 6rem 0 3rem; }
.pk-section    { padding: 7rem 0 5rem; }

/* ── Service cards ───────────────────────────────────── */
.service-card {
  border-radius: 0.75rem;
  padding: 2.25rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,150,62,0.4);
}
.service-icon { font-size: 1.6rem; margin-bottom: 1.2rem; }

/* ── Phase cards ─────────────────────────────────────── */
.sv-phase-card {
  border-radius: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.sv-phase-card:hover { border-color: rgba(200,150,62,0.4); }

/* ── Industry accordion ──────────────────────────────── */
.sv-ind-item { border-radius: 0.75rem; }
.sv-ind-item[open] { background: rgba(200,150,62,0.04); }
.sv-ind-item:hover,
.sv-ind-item[open] { border-color: rgba(200,150,62,0.35); }
.sv-ind-chevron {
  border-right-color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Pricing cards ───────────────────────────────────── */
.price-card {
  border-radius: 0.75rem;
  padding: 2.25rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.featured { border-color: rgba(200,150,62,0.5); }

/* ── Akademie cards ──────────────────────────────────── */
.ak-card { border-radius: 0.75rem; }
.ak-card:hover { border-color: rgba(200,150,62,0.4); }
.ak-card--highlight { border-color: rgba(200,150,62,0.35); }
.ak-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ── Umsetzungs-Pakete ───────────────────────────────── */
.pk-card { border-radius: 0.75rem; }
.pk-card--featured { border-color: rgba(200,150,62,0.5); background: rgba(200,150,62,0.04); box-shadow: 0 0 0 1px rgba(200,150,62,0.2), 0 24px 48px rgba(0,0,0,0.3); }
.pk-card-popular { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a0d00; }
.pk-card-tier { color: var(--gold); }
.pk-card-name { font-size: 1.5rem; font-weight: 500; }
.pk-price-main { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; font-weight: 400; }
.pk-card-cta--featured { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a0d00; border-color: transparent; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.9rem 2.2rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #140900;
  box-shadow: 0 4px 20px rgba(200,150,62,0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(200,150,62,0.45);
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: rgba(200,150,62,0.3);
  color: var(--gold-light);
}
.btn-ghost:hover {
  background: rgba(200,150,62,0.08);
  border-color: rgba(200,150,62,0.55);
  color: var(--white);
}

/* ── Nav ─────────────────────────────────────────────── */
nav.scrolled {
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(24px) saturate(160%);
}
.nav-links a { color: rgba(248,244,238,0.65); font-size: 0.85rem; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { background: var(--gold); }

/* ── CTA strip ───────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, rgba(200,150,62,0.08), rgba(200,150,62,0.03));
  border-top: 1px solid rgba(200,150,62,0.15);
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
}

/* ── Breadcrumb ──────────────────────────────────────── */
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: rgba(200,150,62,0.4); }

/* ── Testimonials ────────────────────────────────────── */
.testimonial-card { border-radius: 0.75rem; }

/* ── Results stats ────────────────────────────────────── */
.result-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ── Contact ─────────────────────────────────────────── */
.contact-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

/* ── Sv-intro stats ──────────────────────────────────── */
.sv-stat-num {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

/* ── Phase num badge ─────────────────────────────────── */
.sv-phase-num {
  color: var(--gold);
  background: rgba(200,150,62,0.1);
  border-color: rgba(200,150,62,0.25);
}
.sv-phase-cta { color: var(--gold); }
.sv-phase-cta:hover { color: var(--white); }
.sv-phase-list li::before { color: var(--gold); }

/* ── Process steps ───────────────────────────────────── */
.sv-step-num {
  border-color: rgba(200,150,62,0.4);
  background: linear-gradient(135deg, rgba(200,150,62,0.12), rgba(200,150,62,0.05));
  color: var(--gold);
}
.sv-step-connector {
  background: linear-gradient(90deg, var(--gold), rgba(200,150,62,0.3));
}

/* ── Industry needs bullets ──────────────────────────── */
.sv-industry-needs li::before { color: var(--gold); }
.sv-ind-phase-title { color: var(--gold); }
.sv-ind-list li::before { color: var(--gold); }

/* ── Ak badges ───────────────────────────────────────── */
.ak-badge--free  { background: rgba(34,197,94,0.12); color: #4ade80; border-color: rgba(34,197,94,0.25); }
.ak-badge--paid  { background: rgba(200,150,62,0.1); color: var(--gold-light); border-color: rgba(200,150,62,0.25); }
.ak-badge--pro   { background: rgba(200,150,62,0.15); color: var(--gold); border-color: rgba(200,150,62,0.3); }
.ak-badge--premium { background: rgba(200,150,62,0.12); color: var(--gold); border-color: rgba(200,150,62,0.28); }
.ak-card-upsell  { color: var(--gold-light); background: rgba(200,150,62,0.06); border-color: rgba(200,150,62,0.18); }
.ak-card-cta     { color: var(--gold); border-color: rgba(200,150,62,0.28); }
.ak-card-cta:hover { background: rgba(200,150,62,0.1); color: var(--white); }
.ak-category-label { color: var(--gold); background: rgba(200,150,62,0.08); border-color: rgba(200,150,62,0.22); }

/* ── Subtle page load animation ─────────────────────── */
.hero-content  { animation: fadeInUp 0.9s 0.1s ease both; }
.hero-visual   { animation: fadeInUp 0.9s 0.25s ease both; }
.page-hero .container { animation: fadeInUp 0.7s ease both; }


/* ══════════════════════════════════════════════════════════
   LIGHT MODE — vollständige Komponent-Overrides
   Warm Off-White · Anthrazit · Gold
   ══════════════════════════════════════════════════════════ */

/* ── Base ────────────────────────────────────────────── */
body {
  background: #FAF9F7;
  color: #1C1914;
}

/* ── Nav ─────────────────────────────────────────────── */
nav {
  background: #F2EFE8;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
nav.scrolled {
  background: #F2EFE8;
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-links a {
  color: rgba(28,25,20,0.55);
}
.nav-links a:hover,
.nav-links a.active { color: #1C1914; }
.nav-links a.active::after { background: #A87230; }
.hamburger span { background: #1C1914; }

/* ── Breadcrumb: ausgeblendet ────────────────────────── */
.breadcrumb { display: none; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 55% 60% at 70% 50%, rgba(168,114,48,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(168,114,48,0.04) 0%, transparent 60%),
    #FAF9F7;
}
.hero::before { opacity: 0.4; }
.hero-content h1 { color: #1C1914; }
.hero-sub,
.hero p { color: #6E6860; }
.hero-stats { border-top-color: rgba(0,0,0,0.08); }
.hero-stats .stat-label { color: #9A948C; }
.hero-stats .stat-num { color: #A87230; }
.hero-stats .stat-num span { color: #C8963E; }
.hero-stat-card {
  background: #FFFDF9;
  border-color: rgba(168,114,48,0.35);
  border-top-color: #A87230;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 0 0 1px rgba(168,114,48,0.08);
}
.trust-label { color: #9A948C; }
.logo-item { color: rgba(28,25,20,0.40); }
.logo-item:hover { color: rgba(28,25,20,0.75); }

/* ── Section backgrounds ─────────────────────────────── */
.services       { background: #FAF9F7; }
.results        { background: #F2EFE8; }
.about          { background: #FAF9F7; }
.pricing        { background: #F2EFE8; }
.contact        { background: #FAF9F7; }
.sv-intro       { background: #FAF9F7; border-bottom-color: rgba(0,0,0,0.07); }
.sv-industries  { background: #F2EFE8; border-color: rgba(0,0,0,0.07); }
.sv-process     { background: #FAF9F7; }
.sv-phases      { background: #F2EFE8; }
.ak-section-wrapper { background: #FAF9F7; }
.pk-section     { background: #F2EFE8; border-top-color: rgba(0,0,0,0.07); }
.page-hero      { background: #FAF9F7; }

/* ── Section text ────────────────────────────────────── */
.section-title  { color: #1C1914; }
.section-sub    { color: #6E6860; }
.section-label  { color: #A87230; }

/* ── Buttons ─────────────────────────────────────────── */
.btn-ghost {
  color: #1C1914;
  border-color: rgba(0,0,0,0.22);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.38);
}

/* ── Cards — service, price, testimonial ──────────────── */
.service-card,
.price-card,
.testimonial-card,
.ak-card,
.pk-card,
.sv-phase-card,
.sv-ind-item,
.sv-industry-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.service-card:hover,
.price-card:hover,
.sv-phase-card:hover,
.ak-card:hover { border-color: rgba(168,114,48,0.35); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.service-card h3,
.service-title { color: #1C1914; }
.service-desc  { color: #6E6860; }

/* ── Featured price card ─────────────────────────────── */
.price-card.featured,
.pk-card--featured {
  background: #FFFDF9;
  border-color: rgba(168,114,48,0.5);
  box-shadow: 0 0 0 1px rgba(168,114,48,0.2), 0 16px 40px rgba(0,0,0,0.08);
}

/* ── Price amounts ───────────────────────────────────── */
.phase-desc { color: #6E6860; }
.phase-badge { background: linear-gradient(135deg, #A87230, #C8963E); color: #fff; }
.price-main,
.price-amount .price-main { color: #1C1914; }
.price-sub,
.price-tier { color: #9A948C; }
.price-tier { color: #A87230; }
.price-features li { color: #6E6860; border-bottom-color: rgba(0,0,0,0.05); }
.price-features li::before { color: #A87230; }
.price-name { color: #1C1914; }
.pk-price-main { color: #1C1914; }
.pk-price-sub  { color: #9A948C; }
.pk-card-features li { color: #6E6860; border-bottom-color: rgba(0,0,0,0.05); }
.pk-note { color: #9A948C; }

/* ── Testimonials ────────────────────────────────────── */
.testimonial { background: #FFFFFF; border-color: rgba(0,0,0,0.07); }
.testimonial-text { color: #3A3530; }
.testimonial-name { color: #1C1914; }
.testimonial-role { color: #9A948C; }
.testimonial-stars { color: #A87230; }
.testimonial-avatar { background: rgba(168,114,48,0.1); color: #A87230; }

/* ── Results ─────────────────────────────────────────── */
.result-number { color: #1C1914; }
.result-label  { color: #6E6860; }
.results-header .section-title,
.results-header .section-sub { color: inherit; }

/* ── About ───────────────────────────────────────────── */
.about-title, .about-subtitle { color: #1C1914; }
.about-body   { color: #4A453F; }
.about-quote  { color: #1C1914; border-left-color: #A87230; }
.about-quote::before { color: #A87230; }
.about-photo-badge {
  background: rgba(255,253,249,0.96);
  border-color: rgba(168,114,48,0.30);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.about-photo-badge p      { color: #9A948C; }
.about-photo-badge strong { color: #1C1914; }
.cert-chip {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}
.cert-name { color: #3A3530; }
.cert-org  { color: #A87230; }
.certs-list li {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}
.cert-title  { color: #1C1914; }
.cert-issuer { color: #6E6860; }
.cert-year   { color: #A87230; }

/* ── Contact ─────────────────────────────────────────── */
.contact-title { color: #1C1914; }
.contact-sub   { color: #6E6860; }
.contact-icon  { background: rgba(168,114,48,0.08); }
.contact-value { color: #3A3530; }
.contact-label { color: #9A948C; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.12);
  color: #1C1914;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9A948C; }
.form-group label { color: #4A453F; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #A87230;
  box-shadow: 0 0 0 3px rgba(168,114,48,0.1);
}
.gdpr-label { color: #6E6860; }

/* ── Page hero ───────────────────────────────────────── */
.page-hero h1   { color: #1C1914; }
.page-hero-sub  { color: #6E6860; }
.breadcrumb a   { color: #A87230; }
.breadcrumb span:last-child { color: #9A948C; }
.breadcrumb-sep { color: rgba(0,0,0,0.2); }

/* ── CTA strip ───────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #F5F0E5, #FAF9F7);
  border-top-color: rgba(168,114,48,0.15);
}
.cta-strip h2 { color: #1C1914; }
.cta-strip p  { color: #6E6860; }

/* ── Services page ───────────────────────────────────── */
.sv-phase-title     { color: #1C1914; }
.sv-phase-desc      { color: #6E6860; }
.sv-phase-num       { background: rgba(168,114,48,0.1); border-color: rgba(168,114,48,0.25); color: #A87230; }
.sv-phase-list li   { color: #4A453F; border-bottom-color: rgba(0,0,0,0.06); }
.sv-phase-list li::before { color: #A87230; }
.sv-phase-cta       { color: #A87230; }
.sv-intro-label     { color: #A87230; }
.sv-stat-lbl        { color: #6E6860; }
.sv-stat-divider    { background: rgba(0,0,0,0.1); }
.sv-step-title      { color: #1C1914; }
.sv-step-desc       { color: #6E6860; }
.sv-step-num        { color: #A87230; border-color: rgba(168,114,48,0.35); background: rgba(168,114,48,0.07); }
.sv-step-connector  { background: linear-gradient(90deg, #A87230, rgba(168,114,48,0.2)); }
.sv-industry-name   { color: #1C1914; }
.sv-ind-summary .sv-industry-name { color: #1C1914; }
.sv-ind-item[open]  { background: rgba(168,114,48,0.03); border-color: rgba(168,114,48,0.3); }
.sv-ind-phase-title { color: #A87230; }
.sv-ind-list li     { color: #6E6860; }
.sv-ind-list li::before { color: #A87230; }
.sv-industry-needs li { color: #6E6860; }
.sv-industry-needs li::before { color: #A87230; }
.sv-ind-content     { border-top-color: rgba(0,0,0,0.07); }
.sv-ind-phase:not(:last-child) { border-bottom-color: rgba(0,0,0,0.06); }
.sv-ind-content::-webkit-scrollbar-thumb { background: #A87230; }

/* ── Akademie page ───────────────────────────────────── */
.ak-category        { border-bottom-color: rgba(0,0,0,0.07); }
.ak-category--premium { background: linear-gradient(135deg, rgba(168,114,48,0.05), rgba(168,114,48,0.02)); border-color: rgba(168,114,48,0.18); }
.ak-category-title  { color: #1C1914; }
.ak-category-sub    { color: #6E6860; }
.ak-card-title      { color: #1C1914; }
.ak-card-topics li  { color: #6E6860; }
.ak-card-topics li::before { color: #A87230; }
.ak-card-upsell     { color: #A87230; background: rgba(168,114,48,0.06); border-color: rgba(168,114,48,0.18); }
.ak-card-cta        { color: #A87230; border-color: rgba(168,114,48,0.28); }
.ak-card-cta:hover  { background: rgba(168,114,48,0.08); color: #1C1914; }
.ak-card--highlight { background: #FFFDF9; border-color: rgba(168,114,48,0.3); }
.ak-card--premium   { background: #FFFDF9; border-color: rgba(168,114,48,0.25); }
.ak-badge--paid     { background: rgba(168,114,48,0.1); color: #A87230; border-color: rgba(168,114,48,0.25); }
.ak-badge--pro      { background: rgba(168,114,48,0.12); color: #8A6020; border-color: rgba(168,114,48,0.28); }
.ak-badge--premium  { background: rgba(168,114,48,0.1); color: #8A6020; border-color: rgba(168,114,48,0.25); }

/* ── Footer + modals (if dark) ───────────────────────── */
.footer-main { background: #1C1914; color: #9A948C; }
.footer-main a { color: rgba(255,255,255,0.5); }
.footer-main a:hover { color: #C8963E; }
.modal-overlay { background: rgba(0,0,0,0.6); }
.modal-box     { background: #FFFFFF; color: #1C1914; border-color: rgba(0,0,0,0.08); }
.modal-box h2  { color: #1C1914; }
.modal-box p, .modal-box li { color: #4A453F; }

/* ── Cookie banner ───────────────────────────────────── */
#cookieBanner { background: #FFFFFF; border-top: 1px solid rgba(0,0,0,0.08); color: #4A453F; box-shadow: 0 -4px 24px rgba(0,0,0,0.06); }

/* ── Chatbot ─────────────────────────────────────────── */
.chatbot-toggle { background: linear-gradient(135deg, #A87230, #C8963E); }
.chatbot-window { background: #FFFFFF; border-color: rgba(0,0,0,0.1); }
.chatbot-header { background: #1C1914; }
.chatbot-input  { background: #FFFFFF; border-color: rgba(0,0,0,0.12); color: #1C1914; }

/* ── Trust logos area ────────────────────────────────── */
.trust-section  { background: #F2EFE8; border-color: rgba(0,0,0,0.07); }
.trust-logo     { filter: none; opacity: 0.5; }
.trust-logo:hover { opacity: 0.8; }

/* ── Price note & badge ──────────────────────────────── */
.price-note { color: #9A948C; }
.price-badge-pop {
  background: linear-gradient(135deg, #A87230, #C8963E);
  color: #FFF;
}

/* ── Result cards ────────────────────────────────────── */
.result-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.result-desc { color: #6E6860; }

/* ── Trust bar ───────────────────────────────────────── */
.trust-bar {
  border-top-color: rgba(0,0,0,0.07);
  border-bottom-color: rgba(0,0,0,0.07);
}

/* ── Mobile nav open ─────────────────────────────────── */
.nav-links.open {
  background: #F2EFE8;
  border-top-color: rgba(0,0,0,0.07);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.nav-links.open a {
  color: rgba(28,25,20,0.75);
  border-bottom-color: rgba(0,0,0,0.07);
}

/* ── Social icon buttons ─────────────────────────────── */
.social-icon-btn {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
}

/* ── Scrollbar (subtle) ──────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F2EFE8; }
::-webkit-scrollbar-thumb { background: rgba(168,114,48,0.35); border-radius: 3px; }

/* ══════════════════════════════════════════════════════════
   MOBILE READABILITY — Problem 2 fixes
   ══════════════════════════════════════════════════════════ */

/* Prevent horizontal overflow on all screen sizes */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  /* Body text minimum 15px */
  body { font-size: 15px; line-height: 1.65; }

  /* Generous section padding on mobile */
  .services, .results, .about, .pricing, .contact,
  .sv-phases, .sv-industries, .sv-process,
  .ak-section-wrapper, .pk-section { padding: 4rem 0; }

  .container { padding: 0 1.25rem; }

  /* Section text */
  .section-sub { font-size: 1rem; line-height: 1.7; }

  /* Hero */
  .hero { padding: 6rem 0 3.5rem; }
  .hero-sub { font-size: 1rem; line-height: 1.7; }

  /* Buttons — ensure 44px touch target */
  .btn {
    min-height: 44px;
    padding: 0.85rem 1.6rem;
    font-size: 0.92rem;
  }

  /* Body text blocks */
  .about-body { font-size: 0.97rem; line-height: 1.8; }
  .service-desc { font-size: 0.92rem; line-height: 1.7; }
  .phase-desc { font-size: 0.88rem; line-height: 1.65; }
  .testimonial-text { font-size: 0.93rem; line-height: 1.7; }

  /* Form inputs — 44px touch target */
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 44px;
    font-size: 1rem; /* prevents iOS zoom on focus */
    padding: 0.8rem 1rem;
  }
  .form-group select { min-height: 44px; }
  .form-group textarea { min-height: 110px; }

  /* Contact form full-width on mobile */
  .contact-form { padding: 1.5rem; }

  /* Pricing grid on mobile */
  .pricing-phases-grid { grid-template-columns: 1fr; }

  /* Nav CTA button touch target */
  .nav-cta .btn { min-height: 40px; }

  /* Cookie banner */
  #cookieBanner { padding: 1rem 1.2rem; bottom: 0; left: 0; right: 0; border-radius: 16px 16px 0 0; }
  .cookie-btns { width: 100%; justify-content: flex-end; }
  .cookie-btn-accept, .cookie-btn-decline { min-height: 40px; }
}

@media (max-width: 480px) {
  /* Tighter container on very small screens */
  .container { padding: 0 1rem; }

  /* Hero headline readable on small phones */
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Results grid single column */
  .results-grid { grid-template-columns: 1fr; }

  /* About grid single column */
  .about-grid { gap: 2rem; }

  /* Phase cards stack */
  .pricing-phases-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Testimonial width on small screens */
  .testimonial { width: 280px; }

  /* Keep 2-column grid on small phones, just tighter */
  .hero-stats { display: grid !important; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .hero-stat-card { flex: none; width: auto; padding: 0.6rem 0.7rem; }
  .hero-stats .stat-num { font-size: 1.4rem; }

  /* Form rows stack */
  .form-row { grid-template-columns: 1fr; }
}
::-webkit-scrollbar-thumb:hover { background: rgba(168,114,48,0.6); }

/* ── Hero scroll indicator ───────────────────────────── */
.hero-scroll-hint {
  display: none;
  text-align: center;
  color: rgba(255,255,255,0.38);
  padding-bottom: 1.5rem;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.38; }
  50%       { transform: translateY(7px); opacity: 0.75; }
}
@media (max-width: 900px) {
  .hero-scroll-hint { display: block; }
}
