/* ============================================================
   PEHcon GmbH – styles.css | pehcon.de
   ============================================================ */

/* ---------- Reset & Custom Properties ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0C1C35;
  --navy-mid:    #152946;
  --navy-light:  #1E3A60;
  --brand-blue:  #384E88;
  --orange:      #F0940F;
  --orange-light:#F5B040;
  --bg:          #FFFFFF;
  --bg-subtle:   #F4F6F9;
  --text:        #0C1C35;
  --text-muted:  #5A6878;
  --border:      #DDE3EC;
  --nav-h:       70px;
  --r:           6px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* floating nav: 12px offset + 70px height + 14px breathing room */
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

address { font-style: normal; }

/* ---------- Layout ---------- */
.wrap {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-label--light { color: var(--orange-light); }

.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.section-header--light .section-title,
.section-header--light .section-intro { color: #fff; }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--brand-blue);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
}
.btn--primary:hover { background: #C97500; }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.btn--sm { padding: .55rem 1.25rem; font-size: .875rem; }
.btn--outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn--outline:hover { background: var(--orange); color: #fff; }

/* ============================================================
   NAV  –  floating pill design
   ============================================================ */
.nav {
  position: fixed;
  top: 12px; left: 12px; right: 12px;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  transition: box-shadow .25s;
}
.nav--solid {
  box-shadow: 0 4px 28px rgba(0,0,0,.14);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: 1.25rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img { height: 44px; width: auto; display: block; mix-blend-mode: multiply; }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav__links a {
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: var(--r);
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--navy); background: var(--bg-subtle); }
.nav__cta {
  background: var(--orange) !important;
  color: #fff !important;
  margin-left: .5rem;
  padding: .5rem 1.1rem !important;
  border-radius: var(--r);
}
.nav__cta:hover { background: #C97500 !important; color: #fff !important; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 5px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--r);
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 24px); /* extra 24px for floating nav 12px gap */
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__arc {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 80px solid rgba(232,114,10,.07);
}
.hero__bg::before {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 60px solid rgba(232,114,10,.05);
}


/* Diagonal bottom cut – trapezoid, no spike */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
  max-width: 720px;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.03em;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.35);
  width: 28px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services {
  padding-block: 6rem;
  background: var(--bg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: calc(var(--r) * 2);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  border-top: 4px solid transparent;
}
.service-card:hover {
  box-shadow: 0 8px 40px rgba(13,27,46,.1);
  transform: translateY(-4px);
  border-top-color: var(--orange);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(232,114,10,.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-blue);
}
.service-card p {
  font-size: .925rem;
  color: var(--text-muted);
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: .5rem;
  transition: gap .15s;
}
.service-card__link svg { width: 16px; height: 16px; }
.service-card__link:hover { gap: .7rem; }

/* ============================================================
   DETAIL SECTION (Business Consulting)
   ============================================================ */
.detail-section {
  padding-block: 6rem;
}
.detail-section--dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.detail-section--dark .section-title { color: #fff; }
.detail-section--dark .section-intro { color: rgba(255,255,255,.65); }

/* Angled top – white trapezoid */
.detail-section--dark::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 80%);
}
/* Angled bottom – bg-subtle trapezoid */
.detail-section--dark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg-subtle);
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
}


.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--r) * 2);
  overflow: hidden;
}
.detail-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.detail-item:hover { background: rgba(255,255,255,.06); }
.detail-item__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(232,114,10,.35);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  letter-spacing: -.04em;
}
.detail-item__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}
.detail-item__body p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.detail-item__body ul {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.detail-item__body li {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  padding-left: 1rem;
  position: relative;
}
.detail-item__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

/* 5th item spans full width */
.detail-item:last-child {
  grid-column: 1 / -1;
}

/* ============================================================
   SPLIT SECTION (IT + Fach-Themen)
   ============================================================ */
.split-section {
  background: var(--bg-subtle);
  padding-block: 6rem;
}
.split-section__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.split-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.split-section__half h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.split-section__intro {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.split-section__note {
  font-size: .85rem;
  color: var(--text-muted);
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  margin-top: 2rem;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-item > svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: .2rem;
}
.feature-item strong {
  display: block;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: .25rem;
  font-size: .95rem;
}
.feature-item p { font-size: .875rem; color: var(--text-muted); }

/* Expertise tags */
.expertise-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.expertise-tag {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .85rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--brand-blue);
  transition: border-color .15s, box-shadow .15s;
}
.expertise-tag:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(232,114,10,.12);
}
.expertise-tag svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Divider between the two halves */
.split-section__half--primary {
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about {
  background: var(--bg);
  padding-block: 6rem;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.about__text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: .95rem;
  max-width: 560px;
}
.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about__stat strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .25rem;
}
.about__stat span {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* About badge / illustration */
.about__badge {
  width: 260px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-start;
  box-shadow: 0 8px 32px rgba(12,28,53,.15);
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact {
  background: var(--navy);
  padding-block: 6rem;
  position: relative;
  overflow: hidden;
}
/* Angled top – white trapezoid */
.contact::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 80%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact__text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact__text p { color: rgba(255,255,255,.65); font-size: .95rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(232,114,10,.15);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item > div strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .4rem;
}
.contact-item > div a,
.contact-item > div address {
  display: block;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
}
.contact-item > div a:hover { color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-mid);
  padding-block: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__brand p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin-top: .35rem;
}
.footer__logo-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  margin-bottom: .4rem;
}
.footer__swoosh { width: 28px; height: 28px; flex-shrink: 0; }
.footer__wordmark {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer__links a:hover { color: var(--orange); }
.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  max-width: 560px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--r) * 2);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.cookie-banner__inner p {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  flex: 1;
}
.cookie-banner__actions { flex-shrink: 0; }

/* ============================================================
   IMPRESSUM / DATENSCHUTZ (Unterseiten)
   ============================================================ */
.subpage-hero {
  background: var(--navy);
  padding-top: calc(12px + var(--nav-h) + 2.5rem);
  padding-bottom: 2.5rem;
}
.subpage-hero .wrap {
  max-width: 720px;
  margin-inline: auto;
}
.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
  transition: color .2s;
}
.subpage-back:hover { color: var(--orange); }
.subpage-back svg { width: 14px; height: 14px; }
.subpage-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
}
.subpage-content {
  padding-block: 3.5rem 5rem;
  background: var(--bg);
}
.subpage-content .prose {
  max-width: 720px;
  margin-inline: auto;
}
.prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}
.prose h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}
.prose p { color: var(--text-muted); margin-bottom: 1rem; font-size: .95rem; }
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.prose li { margin-bottom: .35rem; font-size: .95rem; }
.prose a { color: var(--orange); text-decoration: underline; }
.prose a:hover { color: #C95F00; }
.prose address { color: var(--text-muted); font-size: .95rem; line-height: 1.8; }

/* ============================================================
   ANIMATIONEN
   ============================================================ */

/* Hero Entrance – gestaffelt beim Laden */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero__eyebrow { animation: hero-in .6s ease .15s both; }
.hero__title   { animation: hero-in .65s ease .3s both; }
.hero__sub     { animation: hero-in .6s ease .48s both; }
.hero__actions { animation: hero-in .6s ease .62s both; }

/* Scroll Fade-In */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
.fade-in[data-delay="1"] { transition-delay: .1s; }
.fade-in[data-delay="2"] { transition-delay: .22s; }
.fade-in[data-delay="3"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__sub, .hero__actions,
  .hero__scroll { animation: none; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: calc(12px + var(--nav-h) + 8px);
    left: 12px; right: 12px;
    background: var(--bg);
    padding: .4rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { list-style: none; }
  .nav__links li + li { border-top: 1px solid var(--border); }
  .nav__links a {
    display: block;
    padding: .75rem 1rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--r);
    margin: 0;
  }
  .nav__links a:hover { color: var(--navy); background: var(--bg-subtle) !important; }

  /* CTA-Button im Drawer */
  .nav__links li:last-child { border-top: 1px solid var(--border); }
  .nav__links li:last-child .nav__cta {
    display: block !important;
    margin: .4rem !important;
    padding: .65rem 1rem !important;
    text-align: center !important;
    border-radius: var(--r) !important;
    font-size: .875rem !important;
    font-weight: 600 !important;
    background: var(--orange) !important;
    color: #fff !important;
  }

  .nav__burger { display: flex; }

  /* Diagonale Übergänge auf Mobile ausblenden */
  .hero::after,
  .detail-section--dark::before,
  .detail-section--dark::after,
  .contact::before { display: none; }

  .services__grid { grid-template-columns: 1fr; }

  .detail-grid { grid-template-columns: 1fr; }
  .detail-item:last-child { grid-column: auto; }

  .split-section__wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-section__half--primary {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 3rem;
  }

  .about__inner { grid-template-columns: 1fr; }
  .about__badge {
    width: 100%;
    height: auto;
    margin-top: 1.5rem;
    align-self: auto;
    border-radius: 12px;
  }
  .about__photo {
    object-fit: unset;
    height: auto;
  }
  .about__stats { flex-wrap: wrap; gap: 1.5rem; }

  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .expertise-tags { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
  .cookie-banner__inner { flex-direction: column; gap: 1rem; }
