/* Page CSS: main */

    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Roboto', sans-serif; color: #333; background: #fff; line-height: 1.6; }

    /* ── Brand Variables (Originalfarben hoecker-unternehmensberatung.de) ── */
    :root {
      --green-dark:  #1c244b;   /* Navy Dark – Headlines, Nav */
      --green-light: #3a3eff;   /* Indigo Blue – Buttons, CTAs */
      --accent:      #0396e0;   /* Sky Blue – Links, Highlights */
      --gray-text:   #484848;   /* Body Text */
      --gray-light:  #f0f4f8;   /* Light BG sections */
      --deco-blue:   #1d3fa8;   /* Decorative elements */
      --white:       #ffffff;
    }

    /* ── Utilities ── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .btn-primary {
      display: inline-block;
      background: var(--green-light);
      color: var(--white);
      font-weight: 700;
      font-size: 15px;
      padding: 14px 32px;
      border-radius: 6px;
      text-decoration: none;
      transition: all .2s;
      letter-spacing: .3px;
    }
    .btn-primary:hover { background: #2b2ecc; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(58,62,255,.35); }
    .btn-outline {
      display: inline-block;
      border: 2px solid var(--accent);
      color: var(--accent);
      font-weight: 700;
      font-size: 15px;
      padding: 12px 30px;
      border-radius: 6px;
      text-decoration: none;
      transition: all .2s;
    }
    .btn-outline:hover { background: var(--accent); color: var(--white); }
    .tag {
      display: inline-block;
      background: rgba(3,150,224,.12);
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    section { padding: 80px 0; }

    /* ── Navigation ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--white);
      border-bottom: 3px solid var(--green-light);
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      line-height: 1.3;
    }
    .nav-logo span { color: var(--accent); display: block; font-size: 11px; font-weight: 400; }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a { color: var(--green-dark); text-decoration: none; font-size: 14px; transition: color .2s; font-weight: 500; }
    .nav-links a:hover { color: var(--accent); }
    .nav-cta { margin-left: 16px; }

    /* ── Hero ── */
    .hero {
      background: linear-gradient(135deg, var(--green-dark) 0%, #0d1635 100%);
      padding: 96px 0 80px;
      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='%233a3eff' fill-opacity='0.05'%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");
    }
    .hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; }
    .hero h1 { font-size: 44px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; }
    .hero h1 em { color: var(--accent); font-style: normal; }
    .hero p { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 520px; }
    .hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
    .hero-badge { background: rgba(255,255,255,.08); border: 1px solid rgba(3,150,224,.4); color: rgba(255,255,255,.85); font-size: 12px; padding: 6px 14px; border-radius: 20px; }

    /* Hero Card */
    .hero-card {
      background: #fff;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 20px 60px rgba(0,0,0,.25);
    }
    .hero-card h3 { font-size: 18px; color: var(--green-dark); font-weight: 700; margin-bottom: 6px; }
    .hero-card p { font-size: 13px; color: var(--gray-text); margin-bottom: 20px; }
    .hero-card .stat-row { display: flex; gap: 16px; margin-bottom: 20px; }
    .stat-box { flex: 1; background: var(--gray-light); border-radius: 10px; padding: 14px; text-align: center; }
    .stat-box .num { font-size: 28px; font-weight: 900; color: var(--green-dark); line-height: 1; }
    .stat-box .lbl { font-size: 11px; color: var(--gray-text); margin-top: 4px; }
    .hero-card .cta-full {
      display: block; text-align: center;
      background: var(--green-light); color: #fff;
      font-weight: 700; font-size: 14px;
      padding: 14px; border-radius: 8px;
      text-decoration: none;
      transition: background .2s;
    }
    .hero-card .cta-full:hover { background: #2b2ecc; }
    .hero-card .cta-note { text-align: center; font-size: 11px; color: #aaa; margin-top: 8px; }

    /* ── Logos / Trust ── */
    .trust-bar { background: var(--gray-light); padding: 24px 0; border-top: 1px solid #d8e4f0; border-bottom: 1px solid #d8e4f0; }
    .trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 8px; color: var(--gray-text); font-size: 13px; font-weight: 500; }
    .trust-icon { width: 20px; height: 20px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .trust-icon svg { width: 11px; height: 11px; fill: #fff; }

    /* ── Problem Section ── */
    .problem { background: #fff; }
    .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .problem h2 { font-size: 34px; font-weight: 900; color: var(--green-dark); line-height: 1.2; margin-bottom: 16px; }
    .problem p { color: var(--gray-text); font-size: 16px; margin-bottom: 16px; }
    .stat-highlight { background: var(--green-dark); color: #fff; border-radius: 16px; padding: 32px; text-align: center; }
    .stat-highlight .big-num { font-size: 72px; font-weight: 900; color: var(--accent); line-height: 1; }
    .stat-highlight .big-label { font-size: 16px; color: rgba(255,255,255,.85); margin-top: 8px; line-height: 1.4; }
    .stat-highlight .sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 12px; }

    /* ── Leistungen ── */
    .leistungen { background: var(--gray-light); }
    .section-header { text-align: center; margin-bottom: 48px; }
    .section-header h2 { font-size: 34px; font-weight: 900; color: var(--green-dark); margin-bottom: 12px; }
    .section-header p { font-size: 16px; color: var(--gray-text); max-width: 600px; margin: 0 auto; }
    .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .card {
      background: #fff; border-radius: 16px; padding: 28px;
      border: 1px solid #e8ede8;
      transition: transform .2s, box-shadow .2s;
    }
    .card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(28,36,75,.12); }
    .card-icon {
      width: 48px; height: 48px; background: rgba(3,150,224,.1);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; font-size: 22px;
    }
    .card h3 { font-size: 17px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
    .card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }
    .card .card-benefit { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--green-dark); }

    /* ── Prozess ── */
    .prozess { background: #fff; }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 48px; }
    .steps::before {
      content: ''; position: absolute;
      top: 28px; left: 12.5%; right: 12.5%;
      height: 2px; background: linear-gradient(90deg, var(--green-light), var(--green-dark));
    }
    .step { text-align: center; padding: 0 16px; position: relative; }
    .step-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--green-dark); color: #fff;
      font-size: 20px; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px; position: relative; z-index: 1;
      border: 3px solid var(--green-light);
    }
    .step h4 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
    .step p { font-size: 13px; color: var(--gray-text); }

    /* ── Branchen ── */
    .branchen { background: var(--green-dark); padding: 64px 0; }
    .branchen .section-header h2 { color: #fff; }
    .branchen .section-header p { color: rgba(255,255,255,.7); }
    .branchen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
    .branche-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(3,150,224,.2);
      border-radius: 12px; padding: 24px;
      text-align: center;
      transition: background .2s;
    }
    .branche-card:hover { background: rgba(3,150,224,.1); }
    .branche-card .icon { font-size: 32px; margin-bottom: 10px; }
    .branche-card h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
    .branche-card p { color: rgba(255,255,255,.6); font-size: 12px; }

    /* ── Zahlen / Stats ── */
    .zahlen { background: var(--gray-light); }
    .zahlen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
    .zahl-item { text-align: center; }
    .zahl-num { font-size: 52px; font-weight: 900; color: var(--green-dark); line-height: 1; }
    .zahl-num span { font-size: 28px; }
    .zahl-label { font-size: 14px; color: var(--gray-text); margin-top: 6px; }

    /* ── Bootcamp ── */
    .bootcamp {
      background: linear-gradient(135deg, #090d24 0%, var(--green-dark) 100%);
      padding: 80px 0;
    }
    .bootcamp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .bootcamp h2 { font-size: 34px; font-weight: 900; color: #fff; margin-bottom: 16px; }
    .bootcamp h2 em { color: var(--accent); font-style: normal; }
    .bootcamp p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 24px; }
    .bootcamp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .bootcamp-list li { color: rgba(255,255,255,.85); font-size: 15px; display: flex; align-items: flex-start; gap: 10px; }
    .bootcamp-list li::before { content: '✓'; color: var(--accent); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
    .bootcamp-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(3,150,224,.3);
      border-radius: 20px; padding: 32px;
    }
    .bootcamp-card h3 { color: var(--accent); font-size: 20px; font-weight: 900; margin-bottom: 6px; }
    .bootcamp-card .episode { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
    .bootcamp-fehler { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .bootcamp-fehler li { display: flex; gap: 12px; align-items: flex-start; }
    .bootcamp-fehler .nr { background: rgba(3,150,224,.15); color: var(--accent); font-size: 11px; font-weight: 700; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .bootcamp-fehler span { color: rgba(255,255,255,.8); font-size: 14px; }

    /* ── CTA Section ── */
    .cta-section { background: #fff; text-align: center; padding: 96px 0; }
    .cta-section h2 { font-size: 38px; font-weight: 900; color: var(--green-dark); margin-bottom: 16px; line-height: 1.2; }
    .cta-section p { font-size: 17px; color: var(--gray-text); max-width: 560px; margin: 0 auto 36px; }
    .cta-features { display: flex; gap: 32px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
    .cta-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-text); }
    .cta-feature::before { content: '✓'; color: var(--accent); font-weight: 900; font-size: 16px; }

    /* ── Footer ── */
    footer {
      background: #090d24;
      color: rgba(255,255,255,.7);
      padding: 56px 0 28px;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
    .footer-brand .sub { color: var(--accent); font-size: 12px; margin-bottom: 14px; }
    .footer-brand p { font-size: 13px; line-height: 1.7; }
    .footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; transition: color .2s; }
    .footer-col ul a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-legal { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.8; }
    .footer-legal strong { color: rgba(255,255,255,.5); }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .hero-inner, .problem-grid, .bootcamp-inner { grid-template-columns: 1fr; }
      .hero-card { display: none; }
      .cards-grid, .branchen-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
      .zahlen-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      nav .nav-links { display: none; }
    }
    @media (max-width: 600px) {
      .hero h1 { font-size: 30px; }
      .cards-grid, .branchen-grid, .zahlen-grid { grid-template-columns: 1fr; }
      section { padding: 56px 0; }
    }
  