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

  :root {
    --bg:        #0d1a12;
    --bg2:       #111f16;
    --bg3:       #16281d;
    --green:     #2d6a4f;
    --green-mid: #40916c;
    --green-light:#74c69d;
    --green-pale: #b7e4c7;
    --cream:     #f0ebe1;
    --cream2:    #e8e1d4;
    --text:      #f0ebe1;
    --muted:     #8aab96;
    --border:    rgba(116,198,157,0.15);
    --card:      rgba(17,31,22,0.9);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    line-height: 1.1;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 4rem;
    background: rgba(13,26,18,0.93);
    backdrop-filter: blur(18px);
    border-bottom: 0.5px solid var(--border);
  }

  .logo {
    font-family: 'Fraunces', serif;
    font-weight: 900; font-size: 1.4rem; letter-spacing: -0.02em;
    color: var(--cream); text-decoration: none;
  }
  .logo span { color: var(--green-light); }

  .nav-links { display: flex; gap: 2.2rem; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.88rem; font-weight: 400;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--cream); }

  .nav-cta {
    background: var(--green-mid); color: var(--cream);
    border: none; padding: 0.6rem 1.4rem; border-radius: 4px;
    font-size: 0.88rem; font-weight: 500; cursor: pointer;
    text-decoration: none; font-family: 'DM Sans', sans-serif;
    transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--green-light); color: var(--bg); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
    padding: 9rem 4rem 5rem;
    position: relative; overflow: hidden;
  }

  .hero-bg-circle {
    position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(64,145,108,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-line {
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, transparent, var(--green-mid), transparent);
  }

  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(64,145,108,0.12);
    border: 0.5px solid rgba(116,198,157,0.3);
    color: var(--green-pale);
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 4px; margin-bottom: 2rem;
    animation: fadeUp .7s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-light);
    animation: pulse 2s infinite;
  }

  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 900; letter-spacing: -0.04em;
    max-width: 780px; line-height: 1.05;
    color: var(--cream);
    animation: fadeUp .8s .08s ease both;
  }
  .hero h1 em { font-style: italic; color: var(--green-light); }

  .hero-sub {
    max-width: 520px; color: var(--muted); font-size: 1.05rem;
    margin: 1.6rem 0 2.4rem;
    animation: fadeUp .8s .18s ease both;
  }

  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp .8s .28s ease both;
  }

  .btn-primary {
    background: var(--green-mid); color: var(--cream);
    border: none; padding: .9rem 2.1rem; border-radius: 4px;
    font-size: .95rem; font-weight: 500; cursor: pointer;
    text-decoration: none; font-family: 'DM Sans', sans-serif;
    transition: background .2s, transform .15s;
  }
  .btn-primary:hover { background: var(--green-light); color: var(--bg); transform: translateY(-2px); }

  .btn-ghost {
    background: transparent; color: var(--muted);
    border: 0.5px solid rgba(116,198,157,0.25);
    padding: .9rem 2.1rem; border-radius: 4px;
    font-size: .95rem; font-weight: 400; cursor: pointer;
    text-decoration: none; font-family: 'DM Sans', sans-serif;
    transition: color .2s, border-color .2s;
  }
  .btn-ghost:hover { color: var(--cream); border-color: rgba(116,198,157,0.5); }

  .stats-row {
    display: flex; gap: 3.5rem; flex-wrap: wrap;
    margin-top: 5rem; padding-top: 3rem;
    border-top: 0.5px solid var(--border);
    animation: fadeUp .8s .38s ease both;
    width: 100%; max-width: 700px;
  }
  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--cream); line-height: 1;
  }
  .stat-num span { color: var(--green-light); }
  .stat-label {
    font-size: .78rem; color: var(--muted); margin-top: 4px;
    text-transform: uppercase; letter-spacing: .06em;
  }

  /* ── SECTIONS ── */
  section { padding: 6rem 4rem; max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: .75rem; font-weight: 500; letter-spacing: .14em;
    text-transform: uppercase; color: var(--green-light); margin-bottom: .8rem;
  }
  .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; letter-spacing: -.03em; color: var(--cream); max-width: 580px;
  }
  .section-title em { font-style: italic; color: var(--green-light); }
  .section-sub { color: var(--muted); margin-top: .8rem; max-width: 500px; font-size: .95rem; }

  /* ── FEATURED: KI AUTOMATION ── */
  .featured-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--border);
    border-radius: 8px; overflow: hidden; margin-top: 3.5rem;
  }
  .featured-left {
    background: var(--green); padding: 3rem;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .featured-left h3 {
    font-size: 1.8rem; font-weight: 700; color: var(--cream);
    margin-bottom: 1rem; line-height: 1.2;
  }
  .featured-left p { color: rgba(240,235,225,0.75); font-size: .92rem; line-height: 1.7; }

  .featured-right {
    background: var(--card); padding: 2.5rem;
    display: flex; flex-direction: column; gap: 1.4rem;
  }
  .feature-item { display: flex; gap: 12px; align-items: flex-start; }
  .feature-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(116,198,157,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
    font-size: .75rem; color: var(--green-light);
  }
  .feature-item h4 { font-size: .92rem; font-weight: 500; color: var(--cream); margin-bottom: 2px; }
  .feature-item p { font-size: .82rem; color: var(--muted); }

  /* ── SERVICES GRID ── */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border-radius: 8px; overflow: hidden; margin-top: 3.5rem;
  }
  .service-card {
    background: var(--card); padding: 2rem 1.8rem;
    transition: background .2s; position: relative;
  }
  .service-card:hover { background: rgba(64,145,108,0.08); }
  .service-icon {
    font-size: 1.5rem; margin-bottom: 1rem;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(64,145,108,0.12); border-radius: 6px;
  }
  .service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--cream); margin-bottom: .5rem; }
  .service-card p { color: var(--muted); font-size: .87rem; line-height: 1.65; }

  .tag-list { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 1rem; }
  .tag {
    font-size: .7rem; font-weight: 500; padding: 3px 9px; border-radius: 3px;
    background: rgba(64,145,108,0.12); color: var(--green-pale);
    border: 0.5px solid rgba(116,198,157,0.2);
  }

  /* ── PROCESS ── */
  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 3.5rem; position: relative;
  }
  .process-grid::before {
    content: ''; position: absolute; top: 24px; left: 12%; right: 12%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  }
  .process-step { padding: 0 1.5rem 0 0; position: relative; }
  .step-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--bg3); border: 0.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif; font-size: .85rem; font-weight: 700;
    color: var(--green-light); margin-bottom: 1.2rem; position: relative; z-index: 1;
  }
  .process-step h4 { font-size: .95rem; font-weight: 700; color: var(--cream); margin-bottom: .4rem; }
  .process-step p { color: var(--muted); font-size: .83rem; line-height: 1.6; }

  /* ── BRANCHEN ── */
  .branchen-grid { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.5rem; }
  .branche-chip {
    display: flex; align-items: center; gap: 8px;
    background: var(--card); border: 0.5px solid var(--border);
    border-radius: 4px; padding: .55rem 1.1rem;
    font-size: .87rem; color: var(--text); font-weight: 400;
    transition: border-color .2s, background .2s;
  }
  .branche-chip:hover { border-color: rgba(116,198,157,0.45); background: rgba(64,145,108,0.08); }
  .branche-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }

  /* ── CTA ── */
  .cta-outer { max-width: 1100px; margin: 0 auto; padding: 1rem 4rem 6rem; }
  .cta-inner {
    background: var(--green); border-radius: 8px; padding: 5rem 4rem;
    display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
    position: relative; overflow: hidden;
  }
  .cta-inner::after {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(0,0,0,0.12); pointer-events: none;
  }
  .cta-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; color: var(--cream); max-width: 480px;
  }
  .cta-inner p { color: rgba(240,235,225,0.75); margin-top: .8rem; font-size: .95rem; }

  .btn-cta {
    background: var(--cream); color: var(--bg);
    border: none; padding: 1rem 2.2rem; border-radius: 4px;
    font-size: .95rem; font-weight: 500; cursor: pointer;
    text-decoration: none; font-family: 'DM Sans', sans-serif;
    white-space: nowrap; flex-shrink: 0;
    transition: opacity .2s, transform .15s;
  }
  .btn-cta:hover { opacity: .88; transform: translateY(-2px); }

  /* ── DIVIDER ── */
  .divider { width: 100%; height: 0.5px; background: var(--border); }

  /* ── FOOTER ── */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    color: var(--muted); font-size: .8rem;
  }
  footer a { color: var(--muted); text-decoration: none; transition: color .2s; }
  footer a:hover { color: var(--cream); }
  .footer-links { display: flex; gap: 1.5rem; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 8rem 1.5rem 4rem; }
    section { padding: 4rem 1.5rem; }
    .featured-wrap { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-grid::before { display: none; }
    .cta-outer { padding: 1rem 1.5rem 4rem; }
    .cta-inner { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
    footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .stats-row { gap: 2rem; }
    .process-grid { grid-template-columns: 1fr; }
  }
