/* Lokal eingebundene Schriften (DSGVO-konform, kein externer Google-Aufruf) */
    @font-face{font-family:'Inter';font-style:normal;font-weight:300;font-display:swap;src:url('fonts/Inter-300-normal.woff2') format('woff2');}
    @font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/Inter-400-normal.woff2') format('woff2');}
    @font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/Inter-500-normal.woff2') format('woff2');}
    @font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/Inter-600-normal.woff2') format('woff2');}
    @font-face{font-family:'Playfair Display';font-style:italic;font-weight:400;font-display:swap;src:url('fonts/PlayfairDisplay-400-italic.woff2') format('woff2');}
    @font-face{font-family:'Playfair Display';font-style:italic;font-weight:500;font-display:swap;src:url('fonts/PlayfairDisplay-500-italic.woff2') format('woff2');}
    @font-face{font-family:'Playfair Display';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/PlayfairDisplay-400-normal.woff2') format('woff2');}
    @font-face{font-family:'Playfair Display';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/PlayfairDisplay-500-normal.woff2') format('woff2');}
    @font-face{font-family:'Playfair Display';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/PlayfairDisplay-600-normal.woff2') format('woff2');}

/* ============================================================
       RESET & CUSTOM PROPERTIES
    ============================================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:         #F8F5F0;
      --bg2:        #EDE9E3;
      --text:       #1A1917;
      --muted:      #6B6560;
      --accent:     #7A9E8E;
      --accent-d:   #5C7D6E;
      --white:      #FFFFFF;
      --border:     #D9D3CB;
      --serif:      'Playfair Display', Georgia, serif;
      --sans:       'Inter', system-ui, sans-serif;
      --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --t:          0.3s var(--ease);
      --t-slow:     0.65s var(--ease);
    }

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

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2 {
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.02em;
    }
    h3, h4, h5, h6 {
      font-family: var(--sans);
      font-weight: 500;
      line-height: 1.35;
    }
    p { color: var(--muted); line-height: 1.78; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font-family: var(--sans); }

    /* ============================================================
       LAYOUT UTILITIES
    ============================================================ */
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    
    

    /* ============================================================
       SCROLL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
    }
    .reveal.in { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay: 0.1s; }
    .reveal.d2 { transition-delay: 0.2s; }
    .reveal.d3 { transition-delay: 0.3s; }
    .reveal.d4 { transition-delay: 0.42s; }

    /* ============================================================
       HEADER
    ============================================================ */
    #header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 900;
      background: rgba(248,245,240,0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color var(--t), box-shadow var(--t);
    }
    #header.scrolled {
      border-bottom-color: var(--border);
      box-shadow: 0 2px 24px rgba(26,25,23,0.07);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      cursor: pointer;
      flex-shrink: 0;
    }
    .logo-mark { height: 34px; width: 34px; display: block; flex-shrink: 0; }
    .logo-mono {
      font-family: var(--serif);
      font-weight: 600;
      font-size: 50px;
      fill: var(--bg);
    }
    .logo-shadow { fill: #8d8675; }
    .f-logo .logo-mono { fill: var(--text); }
    .f-logo .logo-shadow { fill: #a8a193; }
    .logo-text {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: inherit;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-link {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.025em;
      cursor: pointer;
      position: relative;
      transition: color var(--t);
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--accent);
      transition: width var(--t);
    }
    .nav-link:hover, .nav-link.active { color: var(--text); }
    .nav-link:hover::after, .nav-link.active::after { width: 100%; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 2px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: background var(--t), color var(--t), transform var(--t), border-color var(--t);
      white-space: nowrap;
    }
    .btn-dark {
      background: var(--text);
      color: var(--white);
    }
    .btn-dark:hover {
      background: var(--accent-d);
      transform: translateY(-2px);
    }
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--text);
    }
    .btn-ghost:hover {
      background: var(--text);
      color: var(--white);
    }
    .btn-accent {
      background: var(--accent);
      color: var(--white);
    }
    .btn-accent:hover {
      background: var(--accent-d);
      transform: translateY(-2px);
    }
    .btn-lg { padding: 17px 34px; font-size: 0.8375rem; }

    /* Hamburger */
    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }
    .ham span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: all var(--t);
    }
    .ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile nav */
    #mob-nav {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding: 28px 32px 36px;
      z-index: 899;
      flex-direction: column;
      gap: 4px;
    }
    #mob-nav.open { display: flex; }
    .mob-link {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      transition: color var(--t);
    }
    .mob-link:hover { color: var(--accent); }
    .mob-cta { margin-top: 16px; text-align: center; }

    /* ============================================================
       SECTION HEADER BLOCK
    ============================================================ */
    .sh {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }
    .label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .sh h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.6rem);
      margin-bottom: 18px;
    }
    .sh p { font-size: 1rem; max-width: 520px; margin: 0 auto; }

    /* ============================================================
       PAGE HERO (inner pages)
    ============================================================ */
    .page-hero {
      padding: 168px 48px 72px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .page-hero .label { display: block; margin-bottom: 18px; text-align: left; }
    .page-hero h1 {
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      max-width: 760px;
      margin-bottom: 22px;
    }
    .page-hero .sub {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.75;
    }

    /* ============================================================
       HOME — HERO
    ============================================================ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 72px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 80px 48px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    .hero-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 26px;
    }
    .hero h1 {
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--accent);
    }
    .hero-sub {
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 42px;
      line-height: 1.75;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .hero-visual { position: relative; }
    .hero-visual img {
      width: 100%;
      height: 580px;
      object-fit: cover;
      border-radius: 3px;
    }
    .hero-badge {
      position: absolute;
      bottom: -28px;
      left: -28px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 22px 28px;
      box-shadow: 0 12px 48px rgba(26,25,23,0.09);
    }
    .hero-badge strong {
      display: block;
      font-family: var(--serif);
      font-size: 2.2rem;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1;
    }
    .hero-badge span {
      font-size: 0.78rem;
      color: var(--muted);
      letter-spacing: 0.04em;
    }

    /* ============================================================
       HOME — STATS
    ============================================================ */
    .stats {
      background: var(--text);
      padding: 48px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 0;
    }
    .stat {
      text-align: center;
      padding: 8px 24px;
      border-right: 1px solid rgba(255,255,255,0.09);
    }
    .stat:last-child { border-right: none; }
    .stat-n {
      font-family: var(--serif);
      font-size: 2.8rem;
      color: var(--white);
      display: block;
      margin-bottom: 6px;
      line-height: 1;
    }
    .stat-l {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.5;
      display: block;
      max-width: 230px;
      min-height: 2.34em;
      margin: 0 auto;
    }
    .stats-src {
      text-align: center;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.28);
      letter-spacing: 0.02em;
      margin-top: 36px;
      line-height: 1.6;
    }

    /* ============================================================
       HOME — WHY / PROBLEM-SOLUTION
    ============================================================ */
    .why { padding: 120px 0; background: var(--bg2); }
    .why-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .why-img {
      overflow: hidden;
      border-radius: 4px;
    }
    .why-img img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      object-position: center;
      border-radius: 4px;
    }
    .why-txt .label { text-align: left; display: block; }
    .why-txt h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.5rem);
      margin-bottom: 22px;
      text-align: left;
    }
    .why-txt > p { text-align: left; margin-bottom: 48px; max-width: 460px; }
    .why-points { display: flex; flex-direction: column; gap: 30px; }
    .why-point { display: flex; gap: 18px; align-items: flex-start; }
    .why-dot {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--white);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 0.85rem;
      font-weight: 600;
    }
    .why-point h4 {
      font-size: 0.9375rem;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--text);
    }
    .why-point p { font-size: 0.9rem; margin: 0; }

    /* ============================================================
       HOME — BENEFITS
    ============================================================ */
    .benefits { padding: 120px 0; }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 32px;
    }
    .benefit {
      padding: 48px 40px;
      border: 1px solid var(--border);
      border-radius: 3px;
      transition: border-color var(--t), box-shadow var(--t), transform var(--t);
    }
    .benefit:hover {
      border-color: var(--accent);
      box-shadow: 0 10px 48px rgba(122,158,142,0.13);
      transform: translateY(-5px);
    }
    .benefit-num {
      font-family: var(--serif);
      font-size: 3.2rem;
      color: var(--border);
      display: block;
      margin-bottom: 22px;
      line-height: 1;
    }
    .benefit h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--text);
    }
    .benefit p { font-size: 0.9375rem; line-height: 1.72; }

    /* ============================================================
       HOME — SHOWCASE
    ============================================================ */
    .showcase { padding: 120px 0; background: var(--bg2); }
    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      margin-bottom: 20px;
    }
    .showcase-row2 {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 20px;
    }
    .sc-item {
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      cursor: pointer;
    }
    .sc-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: transform 0.55s var(--ease);
      display: block;
    }
    .sc-item:hover img { transform: scale(1.04); }
    .sc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,25,23,0.65) 0%, transparent 55%);
      opacity: 0;
      transition: opacity var(--t);
      display: flex;
      align-items: flex-end;
      padding: 22px;
    }
    .sc-item:hover .sc-overlay { opacity: 1; }
    .sc-overlay span {
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }
    .showcase-cta { text-align: center; margin-top: 48px; }

    /* ============================================================
       HOME — ABOUT TEASER
    ============================================================ */
    .about-teaser { padding: 120px 0; }
    .at-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .at-img { position: relative; }
    .at-img img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      border-radius: 3px;
      position: relative;
      z-index: 1;
    }
    .at-accent {
      position: absolute;
      top: -22px; right: -22px;
      width: 140px; height: 140px;
      background: var(--bg2);
      border-radius: 3px;
      z-index: 0;
    }
    .at-txt blockquote {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-style: italic;
      color: var(--text);
      line-height: 1.65;
      padding-left: 24px;
      border-left: 2px solid var(--accent);
      margin-bottom: 24px;
    }
    .at-txt p { margin-bottom: 16px; font-size: 1rem; }
    .at-txt .label { text-align: left; display: block; margin-bottom: 16px; }

    /* ============================================================
       HOME — FAQ PREVIEW
    ============================================================ */
    .faq-section { padding: 120px 0; background: var(--bg2); }
    .faq-list {
      max-width: 720px;
      margin: 56px auto 0;
    }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 24px 0;
      cursor: pointer;
    }
    .faq-q h3 {
      font-size: 0.9875rem;
      font-weight: 500;
      color: var(--text);
    }
    .faq-icon {
      width: 30px; height: 30px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--muted);
      font-size: 1.15rem;
      line-height: 1;
      transition: all var(--t);
      user-select: none;
    }
    .faq-item.open .faq-icon {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--white);
      transform: rotate(45deg);
    }
    .faq-a { display: none; padding: 0 0 22px; }
    .faq-a p { font-size: 0.9375rem; line-height: 1.76; }
    .faq-item.open .faq-a { display: block; }
    .faq-cta { text-align: center; margin-top: 48px; }

    /* ============================================================
       CTA BAND
    ============================================================ */
    .cta-band {
      padding: 120px 48px;
      background: var(--text);
      text-align: center;
    }
    .cta-band h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      margin-bottom: 18px;
    }
    .cta-band p {
      color: rgba(255,255,255,0.55);
      font-size: 1.0625rem;
      margin-bottom: 40px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ============================================================
       ABOUT PAGE
    ============================================================ */
    .about-body {
      padding: 0 0 80px;
    }
    .about-cols {
      display: grid;
      grid-template-columns: 1fr 1.7fr;
      gap: 64px;
      align-items: start;
    }
    .about-aside { position: sticky; top: 110px; }
    .about-aside h2 {
      font-size: clamp(1.5rem, 2.6vw, 2rem);
      margin-bottom: 14px;
      line-height: 1.18;
    }
    .about-aside-lead {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.7;
    }
    .about-text h2 {
      font-size: clamp(1.7rem, 3vw, 2.2rem);
      margin-bottom: 22px;
    }
    .about-text p {
      font-size: 1.05rem;
      margin-bottom: 22px;
      line-height: 1.8;
    }
    .about-text h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      margin-top: 52px;
      margin-bottom: 22px;
      color: var(--text);
    }
    .values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 12px 0 40px;
    }
    .val {
      background: var(--bg2);
      border-radius: 3px;
      padding: 28px;
    }
    .val h4 {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }
    .val p { font-size: 0.875rem; margin: 0; }

    /* ============================================================
       LEISTUNGEN PAGE
    ============================================================ */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 80px;
    }
    .svc {
      padding: 52px 46px;
      border: 1px solid var(--border);
      border-radius: 3px;
      transition: border-color var(--t), box-shadow var(--t);
    }
    .svc:hover {
      border-color: var(--accent);
      box-shadow: 0 8px 40px rgba(122,158,142,0.1);
    }
    .svc-num {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .svc h2 { font-size: 1.65rem; margin-bottom: 14px; }
    .svc > p { font-size: 0.9375rem; margin-bottom: 24px; }
    .svc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .svc-list li {
      display: flex; gap: 10px; align-items: center;
      font-size: 0.875rem; color: var(--muted);
    }
    .svc-list li::before { content: '—'; color: var(--accent); font-weight: 600; flex-shrink: 0; }

    .paper-sec { padding: 80px 0; background: var(--bg2); }
    .paper-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .paper {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 36px 32px;
    }
    .paper-ico {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--bg2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 20px;
    }
    .paper h3 { font-size: 0.9875rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
    .paper p { font-size: 0.875rem; }

    .process-sec { padding: 80px 0; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 32px;
      margin-top: 56px;
    }
    .pstep { position: relative; }
    .pstep-n {
      font-family: var(--serif);
      font-size: 3.5rem;
      color: var(--border);
      display: block;
      line-height: 1;
      margin-bottom: 20px;
    }
    .pstep h3 { font-size: 0.9875rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
    .pstep p { font-size: 0.875rem; }
    .pstep::after {
      content: '→';
      position: absolute;
      top: 22px; right: -16px;
      color: var(--border);
      font-size: 1.25rem;
    }
    .pstep:last-child::after { display: none; }

    /* ============================================================
       BRANCHEN PAGE
    ============================================================ */
    .filter-row {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 56px;
      padding: 0 48px;
    }
    .fbtn {
      padding: 10px 22px;
      border: 1.5px solid var(--border);
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      background: none;
      transition: all var(--t);
      letter-spacing: 0.02em;
    }
    .fbtn:hover, .fbtn.active {
      background: var(--text);
      border-color: var(--text);
      color: var(--white);
    }
    .ex-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 28px;
      margin-bottom: 120px;
    }
    .ex-item {
      display: block;
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
      cursor: pointer;
      transition: transform 0.38s var(--ease);
    }
    .ex-item:hover { transform: translateY(-7px); }
    .ex-media {
      position: relative;
      overflow: hidden;
      border-radius: 3px;
    }
    .ex-media img {
      width: 100%;
      height: 268px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s var(--ease);
    }
    .ex-item:hover .ex-media img { transform: scale(1.05); }
    .ex-ov {
      position: absolute;
      inset: 0;
      background: rgba(122,158,142,0.90);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      opacity: 0;
      transition: opacity var(--t);
    }
    .ex-item:hover .ex-ov { opacity: 1; }
    .ex-ov span {
      color: #fff;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .ex-info { padding: 18px 0 4px; }
    .ex-cat {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 5px;
    }
    .ex-title { font-size: 0.9375rem; font-weight: 500; color: var(--text); }

    /* ============================================================
       KONTAKT PAGE
    ============================================================ */
    .contact-band {
      background: var(--bg2);
      padding: 44px 0 80px;
      margin-top: 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 56px;
      align-items: center;
    }
    .ci h2 { font-size: 1.75rem; margin-bottom: 18px; }
    .ci > p { font-size: 1rem; margin-bottom: 40px; }
    .contact-left { padding-top: 0; }
    .contact-left h2 { font-size: 1.6rem; margin-bottom: 16px; }
    .contact-left > p { font-size: 1rem; margin-bottom: 32px; max-width: 360px; }
    .cd-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
    .cd {
      display: flex; gap: 16px; align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 18px 22px;
      transition: border-color var(--t), transform var(--t);
    }
    .cd:hover { transform: translateY(-2px); border-color: var(--accent); }
    .cd-ico {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--bg2);
      color: var(--accent-d);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .cd-ico svg { width: 19px; height: 19px; display: block; }
    .cd-txt span {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 3px;
    }
    .cd-txt strong, .cd-txt p {
      font-size: 0.9375rem;
      color: var(--text);
      font-weight: 600;
      margin: 0;
      display: block;
    }
    .cd:hover .cd-ico { background: var(--accent); color: var(--white); transition: background var(--t), color var(--t); }
    .next-steps {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 30px 28px;
    }
    .next-steps h4 {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 18px;
    }
    .ns { display: flex; flex-direction: column; gap: 14px; }
    .ns-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.875rem; color: var(--muted); }
    .ns-num {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .form-box {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 40px 40px;
    }
    .form-box h2 { font-size: 1.4rem; margin-bottom: 6px; }
    .form-box > p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 24px; }
    .fg { margin-bottom: 15px; }
    .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    input, textarea, select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 2px;
      font-family: var(--sans);
      font-size: 0.9375rem;
      color: var(--text);
      background-color: var(--bg2);
      outline: none;
      transition: border-color var(--t), background-color var(--t);
    }
    input::placeholder, textarea::placeholder { color: #a8a299; }
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      cursor: pointer;
      padding-right: 40px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
    }
    input:focus, textarea:focus, select:focus {
      border-color: var(--accent);
      background-color: var(--bg);
    }
    input.err, textarea.err, select.err { border-color: #c0392b !important; }
    .check-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 18px;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.55;
      cursor: pointer;
      text-transform: none;
      letter-spacing: normal;
      font-weight: 400;
    }
    .check-label input {
      -webkit-appearance: auto;
      appearance: auto;
      width: 16px;
      height: 16px;
      min-width: 16px;
      padding: 0;
      margin: 2px 0 0;
      border-radius: 0;
      background: none;
      accent-color: var(--accent);
      cursor: pointer;
    }
    .check-label a { color: var(--accent-d); text-decoration: underline; }
    .check-label.err span { color: #c0392b; }
    .check-label.err input { outline: 2px solid #c0392b; outline-offset: 2px; }
    textarea { resize: vertical; min-height: 96px; }
    .form-note {
      font-size: 0.78rem;
      color: var(--muted);
      text-align: center;
      margin-top: 14px;
      line-height: 1.6;
    }
    .success-box {
      display: none;
      text-align: center;
      padding: 48px 32px;
      background: var(--bg2);
      border-radius: 3px;
      border: 1px solid var(--accent);
    }
    .success-box.show { display: block; }
    .success-box h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--text); }
    .success-box p { font-size: 0.9375rem; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--text);
      padding: 72px 0 32px;
    }
    .footer-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    .footer-top {
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255,255,255,0.09);
      margin-bottom: 28px;
    }
    .f-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      margin-bottom: 14px;
      cursor: pointer;
    }
    .f-brand p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.72;
      max-width: 250px;
    }
    .f-col h4 {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }
    .f-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .f-col ul li a, .f-col ul li span {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
      cursor: pointer;
      transition: color var(--t);
    }
    .f-col ul li a:hover, .f-col ul li span:hover { color: var(--white); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
    .f-legal { display: flex; gap: 22px; }
    .f-legal a {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.32);
      cursor: pointer;
      transition: color var(--t);
    }
    .f-legal a:hover { color: rgba(255,255,255,0.65); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .wrap, .header-inner, .hero-grid, .page-hero { padding-left: 32px; padding-right: 32px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-wrap { padding: 0 32px; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .pstep::after { display: none; }
    }

    @media (max-width: 768px) {
      nav { display: none; }
      .ham { display: flex; }
      .header-inner { padding: 0 24px; }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 64px 24px 80px;
      }
      .hero-visual img { height: 360px; }
      .hero-badge { left: -12px; bottom: -12px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { justify-content: center; width: 100%; }
      .btn { white-space: normal; }
      .at-accent { display: none; }

      .stats-grid { grid-template-columns: 1fr; }
      .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.09); padding: 20px; }
      .stat:last-child { border-bottom: none; }

      .why-grid, .at-grid, .about-cols, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .contact-left { padding-top: 0; }
      .at-img img { height: 280px; }
      .why-img img { height: auto; }

      .benefits-grid, .services-grid, .paper-grid { grid-template-columns: 1fr; }
      .svc { padding: 32px 26px; }
      .svc h2 { font-size: 1.45rem; }
      .svc > p { margin-bottom: 20px; }
      .benefit { padding: 34px 28px; }
      .process-steps { grid-template-columns: 1fr; }
      .showcase-grid, .showcase-row2 { grid-template-columns: 1fr; }
      .ex-grid { grid-template-columns: 1fr 1fr; }
      .values { grid-template-columns: 1fr; gap: 12px; }
      .frow { grid-template-columns: 1fr; gap: 0; }
      .about-aside { position: static; margin-bottom: 4px; }
      .form-box { padding: 36px 28px; }
      .cta-band { padding: 80px 24px; }
      .faq-list { padding: 0 24px; }
      .filter-row { padding: 0 24px; }

      .wrap, .page-hero { padding-left: 24px; padding-right: 24px; }
      .why-grid, .why-img, .at-grid, .benefits-grid, .showcase-grid, .showcase-row2,
      .about-cols, .contact-grid, .services-grid, .paper-grid, .process-steps, .ex-grid {
        padding-left: 24px;
        padding-right: 24px;
      }

      .footer-top { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
      .footer-wrap { padding: 0; }
      .footer-bottom { padding: 0 24px; flex-direction: column; align-items: flex-start; }

      .why, .benefits, .showcase, .about-teaser, .faq-section { padding: 80px 0; }
      .page-hero { padding: 140px 24px 60px; }
    }

    @media (max-width: 500px) {
      .ex-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 2.1rem; }
    }