/* ===== PEPONI GRUPPE — GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

:root {
  --blue:    #1e9ed6;
  --teal:    #10b8c7;
  --dark:    #1a1f2e;
  --mid:     #2e3547;
  --light:   #f4f7fb;
  --white:   #ffffff;
  --grey:    #6b7280;
  --border:  #e5e9f0;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(30,158,214,.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .3px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--teal); }

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: #1787b8;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* ── NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img { height: 48px; width: auto; }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li { position: relative; }

nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .6px;
  transition: background .2s, color .2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--blue);
  background: rgba(30,158,214,.08);
}

/* Dropdown */
.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 180px;
  padding: 6px 0;
  z-index: 100;
}

.dropdown-menu li a {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
}
.mobile-nav a:hover { color: var(--blue); background: var(--light); }
.mobile-nav .mob-sub { padding-left: 24px; font-size: 14px; font-weight: 500; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,158,214,.25) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(36px, 6vw, 60px); margin-bottom: 12px; }
.page-hero p { font-size: 18px; opacity: .8; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: .65;
  margin-bottom: 16px;
}
.breadcrumb a { color: inherit; }
.breadcrumb span { opacity: .5; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-dark .section-label,
.section-blue .section-label { color: rgba(255,255,255,.7); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-sub,
.section-blue .section-sub { color: rgba(255,255,255,.75); }

/* ── GRID CARDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px; height: 52px;
  background: rgba(30,158,214,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { color: var(--blue); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 15px; line-height: 1.65; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--blue); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.footer-contact-item svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ── STAT BAR ── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-item {
  background: var(--white);
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--grey); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: 0; }
.step-num {
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h4 { font-size: 18px; margin-bottom: 6px; }
.step-content p { color: var(--grey); font-size: 15px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}
.cta-strip h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.cta-strip p { font-size: 17px; opacity: .85; margin-bottom: 28px; }

/* ── DIVIDER ── */
.accent-line {
  width: 48px; height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 24px;
}
.section-dark .accent-line { background: var(--teal); }

/* ── HOME HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, #243050 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,158,214,.2) 0%, transparent 65%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,184,199,.15) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(40px, 7vw, 72px); margin-bottom: 20px; }
.hero h1 span { color: var(--blue); }
.hero p { font-size: 18px; opacity: .8; margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: 0; }
}

@media (max-width: 768px) {
  nav.desktop-nav { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 56px 0; }
  .hero { min-height: auto; padding: 130px 0 80px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stat-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--border); }
}
