/* style-home.css */

:root {
    color-scheme: light;
    --red: #E7392C;
    --gray-dark: #3a3a3a;
    --gray-mid: #7B7B7A;
    --gray-light: #E1E1E1;
    --gray-bg: #F5F5F5;
    --green: #8CCB7C;
    --yellow: #FDDC66;
    --gold: #E6AA52;
    --blue: #4EABE7;
    --white: #ffffff;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: var(--gray-dark); background: var(--white); font-size: 15px; line-height: 1.6; }


/* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--white); border-bottom: 3px solid var(--red);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px; height: 56px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .nav-logo { display: flex; align-items: center; gap: 6px; text-decoration: none; }
  .nav-logo-icon { width: 28px; height: 22px; }
  .nav-logo-text { font-size: 18px; font-weight: 800; color: var(--gray-mid); letter-spacing: -0.5px; }
  .nav-links { display: flex; gap: 20px; align-items: center; list-style: none; }
  .nav-links a { font-size: 12px; font-weight: 700; color: var(--gray-mid); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.nav-active { color: var(--red); }
  .nav-back { font-size: 11px; font-weight: 600; color: var(--white) !important; background: var(--red); padding: 5px 14px; border-radius: 2px; text-decoration: none; display: flex; align-items: center; gap: 4px; }
  .nav-back:hover { background: #c22d22 !important; color: var(--white) !important; }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-dark); transition: all 0.3s; border-radius: 1px; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  section { padding: 60px 0; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }


/* ── HERO ── */
  .hero { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 60%, #3a1a18 100%); padding: 0; position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
  .hero::after { content: ''; position: absolute; right: -60px; top: -40px; width: 520px; height: 520px; background: var(--red); clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%); opacity: 0.12; }
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 72px 32px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
  /* V3: hero-eyebrow zwei Zeilen */
  .hero-eyebrow { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; line-height: 1.8; }
  .hero h1 { font-size: 44px; font-weight: 900; color: var(--white); line-height: 1.05; text-transform: uppercase; }
  .hero h1 span { color: var(--red); }
  .hero-sub { font-size: 16px; color: #b0b0b0; margin-top: 18px; line-height: 1.65; }
  .hero-cta-group { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
  .btn-primary { background: var(--red); color: var(--white); padding: 12px 26px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
  .btn-primary:hover { background: #c22d22; }
  .btn-outline { background: transparent; color: var(--white); padding: 11px 24px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; border: 2px solid rgba(255,255,255,0.4); cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s; }
  .btn-outline:hover { border-color: var(--white); }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 20px 18px; border-left: 3px solid var(--red); }
  .stat-number { font-size: 32px; font-weight: 900; color: var(--red); }
  .stat-label { font-size: 12px; color: #9a9a9a; margin-top: 4px; line-height: 1.4; }

  .section-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--red); margin-bottom: 8px; }
  .section-title { font-size: 32px; font-weight: 900; text-transform: uppercase; color: var(--gray-dark); line-height: 1.1; }
  .section-sub { font-size: 15px; color: var(--gray-mid); margin-top: 10px; max-width: 640px; }
  .section-header { margin-bottom: 40px; }
  .arrow-tag-lg { width: 56px; height: 56px; clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }


/* ── USP BAND ── */
  .usp-band { background: var(--gray-bg); border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); padding: 32px 0; }
  .usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .usp-item { display: flex; align-items: flex-start; gap: 14px; }
  .usp-icon { flex-shrink: 0; }
  .usp-text strong { font-size: 13px; font-weight: 700; color: var(--gray-dark); display: block; }
  .usp-text span { font-size: 12px; color: var(--gray-mid); }


/* ── ACCORDION ── */
  .know-how-bg { background: var(--white); }
  .accordion { border-top: 2px solid var(--gray-light); }
  .accordion-item { border-bottom: 1px solid var(--gray-light); }
  .accordion-header { display: flex; align-items: center; gap: 16px; padding: 18px 0; cursor: pointer; user-select: none; list-style: none; }
  .accordion-header::-webkit-details-marker { display: none; }
  .accordion-number { font-size: 11px; font-weight: 800; color: var(--red); width: 24px; flex-shrink: 0; }
  .accordion-q { font-size: 15px; font-weight: 700; color: var(--gray-dark); flex: 1; }
  .accordion-arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s; }
  details[open] .accordion-arrow { transform: rotate(90deg); }
  .accordion-body { padding: 0 0 20px 40px; font-size: 14px; color: var(--gray-mid); line-height: 1.7; }
  .accordion-body p + p { margin-top: 10px; }


/* ── PROCESS CYCLE (in Offerings) ── */
  .cycle-wrap { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 2px solid var(--gray-light); }
  .cycle-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .cycle-header-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-mid); }
  .cycle-header-title { font-size: 15px; font-weight: 700; color: var(--gray-dark); }
  .cycle-flow { display: flex; align-items: stretch; }
  .cycle-pill { flex: 1; padding: 18px 28px 14px 18px; color: white; clip-path: polygon(0% 0%, 87% 0%, 100% 50%, 87% 100%, 0% 100%); transition: filter 0.2s; display: flex; flex-direction: column; }
  .cycle-pill:hover { filter: brightness(1.07); }
  .cycle-pill + .cycle-pill { margin-left: -14px; }
  .cp-1 { background: var(--red); }
  .cp-2 { background: #5c9e4f; }
  .cp-3 { background: #c49030; }
  /* V3: cp-4 jetzt SAP-Blau */
  .cp-4 { background: var(--blue); }
  .cp-num { font-size: 9px; font-weight: 800; opacity: 0.6; letter-spacing: 1px; display: block; }
  .cp-name { font-size: 12px; font-weight: 900; letter-spacing: 0.5px; margin: 4px 0 4px; text-transform: uppercase; display: block; }
  .cp-desc { font-size: 10px; opacity: 0.85; line-height: 1.5; display: block; flex: 1; }
  /* V3: Logo-Badge in den Cycle Pills */
  .cp-badge { display: flex; align-items: center; gap: 4px; margin-top: 10px; opacity: 0.65; }
  .cp-badge-text { font-size: 8px; font-weight: 900; color: white; letter-spacing: 0.5px; }
  .cycle-return { margin-top: 12px; display: flex; align-items: center; gap: 10px; padding: 10px 16px; background: var(--gray-bg); border-left: 3px solid var(--red); }
  .cycle-return-arrow { color: var(--red); font-size: 14px; flex-shrink: 0; }
  .cycle-return p { font-size: 11px; color: var(--gray-mid); line-height: 1.5; }
  .cycle-return strong { color: var(--gray-dark); }


/* ── SERVICE OFFERINGS ── */
  .offerings-bg { background: var(--gray-bg); }
  .offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .offering-card { background: var(--white); padding: 28px 24px; border-top: 4px solid var(--red); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
  .offering-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .offering-card h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; color: var(--gray-dark); }
  .offering-list { list-style: none; }
  .offering-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--gray-mid); padding: 5px 0; border-bottom: 1px solid var(--gray-light); line-height: 1.45; }
  .offering-list li:last-child { border-bottom: none; }
  .offering-list li::before { content: ''; width: 14px; height: 14px; background: var(--red); clip-path: polygon(0% 0%, 70% 0%, 100% 50%, 70% 100%, 0% 100%); flex-shrink: 0; margin-top: 2px; }


/* ── PROJECT SERVICES ── */
  .project-svc-bg { background: var(--white); }
  .project-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
  .phase-card { border: 1px solid var(--gray-light); padding: 24px 20px; }
  .phase-badge { display: inline-block; background: var(--red); color: var(--white); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; margin-bottom: 14px; }
  .phase-card h4 { font-size: 14px; font-weight: 800; color: var(--gray-dark); margin-bottom: 10px; }
  .phase-card ul { list-style: none; }
  .phase-card ul li { font-size: 12px; color: var(--gray-mid); padding: 3px 0 3px 14px; position: relative; }
  .phase-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
  .methodology-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .method-card { background: var(--gray-bg); padding: 24px; }
  .method-card h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 14px; border-bottom: 2px solid var(--red); padding-bottom: 8px; }
  .steps-flow { display: flex; align-items: center; margin-bottom: 8px; }
  .step-pill { background: var(--red); color: var(--white); font-size: 10px; font-weight: 800; text-transform: uppercase; padding: 7px 14px; clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%); flex: 1; text-align: center; }
  .step-pill.step-2 { background: #c22d22; margin-left: -8px; }
  .step-pill.step-3 { background: #a02520; margin-left: -8px; }
  .step-pill.step-4 { background: #7a1c19; margin-left: -8px; }


/* ── PROJECT PACKAGES ── */
  .packages-bg { background: var(--gray-bg); }
  .packages-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: center; }
  /* V3: pkg-tags gleiche Größe via Grid */
  .package-tag-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
  .pkg-tag { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-light); padding: 10px 14px; }
  .pkg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .pkg-tag span { font-size: 12px; font-weight: 700; color: var(--gray-dark); line-height: 1.3; }
  /* V3: SAP Certified Logo-Bereich */
  .sap-logo-box { display: flex; align-items: center; justify-content: center; padding: 16px; background: var(--white); border: 1px solid var(--gray-light); }
  .sap-logo-box img { max-width: 100%; height: auto; display: block; }


/* ── CASE STUDIES ── */
  .cases-bg { background: var(--white); }
  .cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
  .case-card { border: 1px solid var(--gray-light); overflow: hidden; }
  .case-header { background: var(--red); color: var(--white); padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
  .case-logo-box { background: rgba(255,255,255,0.15); padding: 6px 12px; font-size: 13px; font-weight: 800; letter-spacing: 1px; flex-shrink: 0; height: 40px; display: flex; align-items: center; justify-content: center; min-width: 64px; }
  .case-logo-box img { max-height: 26px; max-width: 90px; object-fit: contain; filter: brightness(0) invert(1); }
  .case-header h4 { font-size: 13px; font-weight: 700; }
  .case-header p { font-size: 11px; opacity: 0.8; }
  .case-body { padding: 20px; }
  .case-kpi-row { display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
  .case-kpi { text-align: center; }
  .case-kpi .kpi-val { font-size: 18px; font-weight: 900; color: var(--red); }
  .case-kpi .kpi-label { font-size: 10px; color: var(--gray-mid); }
  .case-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
  .case-tag { background: var(--gray-bg); border: 1px solid var(--gray-light); font-size: 10px; font-weight: 600; color: var(--gray-mid); padding: 3px 8px; }
  .case-body p { font-size: 12px; color: var(--gray-mid); line-height: 1.6; }
  /* V3: Referenzlogo-Kacheln mit echten Logos */
  .ref-logos-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-mid); margin-bottom: 14px; }
  .ref-logos { display: flex; flex-wrap: wrap; gap: 8px; }
  .ref-logo-chip { background: var(--gray-bg); border: 1px solid var(--gray-light); padding: 8px 14px; height: 48px; display: flex; align-items: center; justify-content: center; min-width: 80px; }
  .ref-logo-chip img { max-height: 24px; max-width: 88px; object-fit: contain; filter: grayscale(30%); transition: filter 0.2s; }
  .ref-logo-chip img:hover { filter: grayscale(0%); }
  /* Fallback text wenn Logo nicht lädt */
  .ref-logo-chip img[alt] { font-size: 10px; font-weight: 800; color: var(--gray-mid); letter-spacing: 0.5px; }


/* ── TESTIMONIALS ── */
  .testimonials-bg { background: var(--gray-bg); }
  .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .testimonial-card { background: var(--white); border: 1px solid var(--gray-light); padding: 28px 24px 22px; position: relative; }
  .testimonial-card::before { content: '\201E'; position: absolute; top: 10px; right: 22px; font-size: 72px; color: var(--red); opacity: 0.1; font-family: Georgia, serif; line-height: 1; }
  .testimonial-quote { font-size: 14px; color: var(--gray-dark); line-height: 1.75; font-style: italic; margin-bottom: 22px; padding-left: 16px; border-left: 3px solid var(--red); }
  .testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--gray-light); }
  .t-avatar { width: 38px; height: 38px; background: var(--red); clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .t-avatar span { font-size: 12px; font-weight: 900; color: white; padding-right: 4px; }
  .t-name { font-size: 12px; font-weight: 700; color: var(--gray-dark); }
  .t-role { font-size: 11px; color: var(--gray-mid); }
  .t-company { margin-left: auto; background: var(--gray-bg); border: 1px solid var(--gray-light); font-size: 9px; font-weight: 800; color: var(--gray-mid); padding: 3px 8px; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }


/* ── BOUTIQUE ── */
  .boutique-bg { background: #1a1a1a; }
  .boutique-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
  .boutique-left h2 { font-size: 32px; font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 1.1; }
  .boutique-left h2 span { color: var(--red); }
  .boutique-claims { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .boutique-claim { display: flex; align-items: flex-start; gap: 12px; }
  .boutique-claim .claim-arrow { width: 30px; height: 30px; background: var(--red); clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%); flex-shrink: 0; margin-top: 2px; }
  .boutique-claim p { font-size: 13px; color: #c0c0c0; line-height: 1.5; }
  /* V3: strong-Text explizit weiß */
  .boutique-claim strong { color: #ffffff; }


/* ── MEDIATHEK ── */
  .media-bg { background: var(--gray-bg); }
  /* V3: gleiche Höhe für beide Spalten */
  .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
  .whitepaper-preview { background: var(--white); border: 1px solid var(--gray-light); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
  .wp-cover { background: linear-gradient(135deg, #E7392C 0%, #a02520 100%); padding: 32px 28px 24px; }
  .wp-cover .wp-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.7); }
  .wp-cover h3 { font-size: 20px; font-weight: 900; color: var(--white); margin-top: 10px; line-height: 1.25; }
  .wp-cover .wp-sub { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 8px; }
  .wp-meta { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--gray-light); }
  .wp-meta span { font-size: 11px; color: var(--gray-mid); }
  .wp-toc { padding: 16px 20px; flex: 1; }
  .wp-toc-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-mid); margin-bottom: 10px; }
  .wp-toc ul { list-style: none; }
  .wp-toc li { font-size: 12px; color: var(--gray-mid); padding: 4px 0 4px 12px; border-bottom: 1px solid var(--gray-light); position: relative; }
  .wp-toc li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--red); clip-path: polygon(0% 0%, 60% 0%, 100% 50%, 60% 100%, 0% 100%); }
  .media-secondary { display: flex; flex-direction: column; gap: 14px; }
  .media-item { background: var(--white); border: 1px solid var(--gray-light); padding: 16px 20px; display: flex; align-items: center; gap: 16px; text-decoration: none; transition: border-color 0.2s; }
  .media-item:hover { border-color: var(--red); }
  .media-icon { width: 40px; height: 40px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .media-info strong { font-size: 13px; font-weight: 700; color: var(--gray-dark); display: block; }
  .media-info span { font-size: 11px; color: var(--gray-mid); }
  .wp-download-btn { display: block; background: var(--red); color: var(--white); text-align: center; padding: 12px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; margin-top: auto; }
  .wp-download-btn:hover { background: #c22d22; }


/* ── CONTACT ── */
  .contact-bg { background: var(--white); }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
  .contact-card { background: var(--gray-bg); border: 1px solid var(--gray-light); padding: 28px; display: flex; align-items: center; gap: 20px; }
  .contact-avatar { width: 90px; height: 90px; overflow: hidden; flex-shrink: 0; }
  .contact-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%;}
  .contact-info h3 { font-size: 18px; font-weight: 900; color: var(--gray-dark); }
  .contact-info .contact-role { font-size: 12px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin: 4px 0 10px; }
  .contact-quote { font-size: 17px; font-weight: 700; font-style: italic; color: var(--gray-dark); line-height: 1.4; margin-bottom: 20px; border-left: 4px solid var(--red); padding-left: 16px; }
  .workshop-box { background: #1a1a1a; padding: 32px; }
  .workshop-box h3 { font-size: 20px; font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 1.2; margin-bottom: 12px; }
  .workshop-box h3 span { color: var(--red); }
  .workshop-box > p { font-size: 13px; color: #9a9a9a; margin-bottom: 20px; line-height: 1.6; }
  .workshop-items { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
  .workshop-item { display: flex; align-items: center; gap: 8px; }
  .w-dot { width: 8px; height: 8px; background: var(--red); clip-path: polygon(0% 0%, 60% 0%, 100% 50%, 60% 100%, 0% 100%); flex-shrink: 0; }
  .workshop-item span { font-size: 12px; color: #b0b0b0; }


/* ── E-MAIL BANNER ── */
  .email-banner-section { padding: 0; margin: 0; }
  .email-banner-section img { width: 100%; display: block; }

  footer { background: #111; padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; }
  footer p { font-size: 11px; color: #555; }
  footer a { color: #777; text-decoration: none; font-size: 11px; }
  footer a:hover { color: var(--red); }

  .red-line { height: 4px; background: var(--red); width: 48px; margin: 12px 0 24px; }
  hr.section-divider { border: none; border-top: 1px solid var(--gray-light); margin: 0; }




/* ── RESPONSIVE / MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 0 16px; }
    .nav-hamburger { display: flex; }
    .nav-links {
      display: none; position: absolute; top: 56px; left: 0; right: 0;
      background: var(--white); border-bottom: 3px solid var(--red);
      flex-direction: column; padding: 12px 20px 16px; gap: 4px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.1); z-index: 99;
    }
    .nav-links.nav-open { display: flex; }
    .nav-links li { border-bottom: 1px solid var(--gray-light); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { font-size: 13px; display: block; padding: 10px 0; }
    .nav-back { display: inline-block; margin-top: 6px; }
    .hero-inner, .offerings-grid, .project-phases, .methodology-row,
    .cases-grid, .contact-inner, .boutique-inner, .boutique-claims,
    .media-grid, .packages-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 32px; }
    .cycle-flow { flex-direction: column; gap: 4px; }
    .cycle-pill { clip-path: none; margin-left: 0 !important; padding: 14px 20px; border-radius: 2px; }
    .package-tag-row { grid-template-columns: 1fr; }
  }


  @media (max-width: 600px) {
    .usp-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero h1 { font-size: 26px; }
    section { padding: 40px 0; }
    .container { padding: 0 20px; }
    .section-title { font-size: 24px; }
    .workshop-items { grid-template-columns: 1fr; }
    .case-kpi-row { gap: 10px; }
    .package-tag-row { grid-template-columns: 1fr; }
  }


/* ── DETAIL LINKS ── */
  .detail-link {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--red); font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    cursor: pointer; background: none; border: none;
    padding: 6px 0 0; text-decoration: none;
  }
  .detail-link:hover { text-decoration: underline; }
  .detail-link svg { transition: transform 0.2s; }
  .detail-link:hover svg { transform: translateX(3px); }


/* ── PANEL OVERLAY ── */
  #panel-overlay {
    display: none; position: fixed; inset: 0;
    background: var(--white); z-index: 500; overflow-y: auto;
  }
  #panel-overlay.active { display: block; }
  /*.detail-panel { display: none; }*/
  .detail-panel.active { display: block; }
  .panel-nav {
    position: sticky; top: 0; background: var(--white);
    border-bottom: 3px solid var(--red); padding: 0 32px;
    height: 56px; display: flex; align-items: center; gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); z-index: 10;
  }
  .panel-back {
    display: flex; align-items: center; gap: 6px;
    color: var(--red); font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    cursor: pointer; background: none; border: none; padding: 0;
  }
  .panel-back:hover { text-decoration: underline; }
  .panel-nav-label {
    font-size: 12px; color: var(--gray-mid); font-weight: 600;
    margin-left: auto;
  }
  .panel-content { max-width: 820px; margin: 0 auto; padding: 48px 32px 80px; }
  .panel-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--red); margin-bottom: 8px; }
  .panel-title { font-size: 26px; font-weight: 900; color: var(--gray-dark); line-height: 1.2; text-transform: uppercase; margin-bottom: 12px; }
  .panel-red-line { height: 4px; background: var(--red); width: 48px; margin-bottom: 28px; }
  .panel-lead { font-size: 16px; color: var(--gray-dark); line-height: 1.65; margin-bottom: 24px; font-weight: 500; }
  .panel-body { font-size: 14px; color: var(--gray-mid); line-height: 1.75; }
  .panel-body p { margin-bottom: 14px; }
  .panel-body h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; color: var(--gray-dark); margin: 22px 0 10px; letter-spacing: 0.5px; }
  .panel-body ul { list-style: none; margin-bottom: 16px; }
  .panel-body ul li { padding: 6px 0 6px 18px; position: relative; border-bottom: 1px solid var(--gray-light); font-size: 13px; }
  .panel-body ul li:last-child { border-bottom: none; }
  .panel-body ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; background: var(--red); clip-path: polygon(0% 0%, 65% 0%, 100% 50%, 65% 100%, 0% 100%); }
  .panel-diagram { display: flex; gap: 0; margin: 24px 0; }
  .panel-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 24px 0; }
  .panel-kpi { background: var(--gray-bg); border: 1px solid var(--gray-light); border-left: 3px solid var(--red); padding: 16px; }
  .panel-kpi-val { font-size: 26px; font-weight: 900; color: var(--red); }
  .panel-kpi-label { font-size: 11px; color: var(--gray-mid); margin-top: 4px; line-height: 1.4; }
  .panel-cta-box { background: #1a1a1a; padding: 28px 32px; margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .panel-cta-box p { font-size: 15px; font-weight: 700; color: var(--white); }
  .panel-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
  .panel-tag { background: var(--gray-bg); border: 1px solid var(--gray-light); font-size: 11px; font-weight: 600; color: var(--gray-mid); padding: 4px 10px; }


  @media (max-width: 600px) {
    .panel-content { padding: 28px 20px 60px; }
    .panel-kpi-row { grid-template-columns: 1fr 1fr; }
    .panel-title { font-size: 20px; }
  }