/* ═══════════════════════════════════════════════════════════
   SCHNELLECKE DIGITAL SOLUTIONS — Corporate Stylesheet
   Palette extracted from schnellecke.com corporate identity
   Primary Green  : #00703C
   Deep Green     : #004D2A
   Amber Accent   : #F0A936
   Light Green    : #78E3BC
   Dark BG        : #0D1A12
   Text           : #1A1A2E
   Light BG       : #F5F7F5
════════════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: #1A1A2E;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CSS Custom Properties ── */
:root {
  --green:       #00703C;
  --green-deep:  #004D2A;
  --green-light: #78E3BC;
  --green-pale:  #C0E2CA;
  --amber:       #F0A936;
  --amber-dark:  #C87E10;
  --dark:        #0D1A12;
  --text:        #1A1A2E;
  --text-muted:  #5A6472;
  --light-bg:    #F5F7F5;
  --white:       #FFFFFF;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Utility ── */
.section-pad   { padding-block: clamp(4rem, 8vw, 7rem); }
.bg-light      { background: var(--light-bg); }
.text-center   { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: .3em .9em;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--green); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,112,60,.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--green-pale);
  border-color: var(--green-pale);
  transform: translateY(-2px);
}

/* ── Pills ── */
.pill-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.pill {
  padding: .4em 1.1em;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-deep);
  border: 1.5px solid var(--green-light);
}

/* ── Scroll Reveal ── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  width: 100%;
  z-index: 1000;
  padding-block: 1.1rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(0,17,8,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: .65rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img { height: 42px; width: auto; object-fit: contain; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green-light);
  border-bottom-color: var(--green-light);
}
.main-nav .nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  border-bottom: none !important;
}
.main-nav .nav-cta:hover { background: var(--green-deep); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,20,10,.82) 0%,
    rgba(0,60,25,.65) 55%,
    rgba(0,0,0,.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4em 1em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(120,227,188,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(120,227,188,0); }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.hero-title .highlight {
  color: var(--amber);
  display: inline;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px;
  position: relative;
}
.scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--green-light);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--green-deep);
  padding-block: 2.5rem;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1 1 180px;
  text-align: center;
  padding: 1rem 1.5rem;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--amber);
}
.stat-suffix {
  font-size: .9rem;
  color: var(--green-light);
  font-weight: 600;
}
.stat-item p {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ABOUT INTRO
══════════════════════════════════════════════ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.split-text strong { color: var(--text); }

/* Visual Card */
.visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--green);
  position: relative;
  overflow: hidden;
}
.visual-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--green-pale);
  border-radius: 50%;
  z-index: 0;
}
.vc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.vc-line {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.vc-line--green { background: var(--green); }
.vc-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.vc-body {
  font-size: .92rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,112,60,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.bc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.bc-icon--blue  { background: #EAF4FF; color: #1A6FAD; }
.bc-icon--amber { background: #FFF7E6; color: var(--amber-dark); }
.bc-icon--green { background: var(--green-pale); color: var(--green); }

.benefit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}
.benefit-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SECTORS
══════════════════════════════════════════════ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.sector-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.sector-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.sc-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.sector-card:hover .sc-img-wrap img { transform: scale(1.07); }
.sc-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,20,10,.7) 100%);
}

.sc-body {
  background: var(--white);
  padding: 1.4rem;
  border-top: 3px solid var(--green);
}
.sc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: .8rem;
}
.sc-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}
.sc-body p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sector-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--green-pale), rgba(255,255,255,0));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green);
}
.sector-cta blockquote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--green-deep);
  font-style: italic;
  font-weight: 600;
}
.sector-cta .fa-quote-left,
.sector-cta .fa-quote-right {
  font-size: 1rem;
  color: var(--amber);
  margin-inline: .4rem;
}

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.cta-text p { color: rgba(255,255,255,.78); font-size: .98rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 38px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-2px);
}
.footer-nav h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.2rem;
}
.footer-nav ul li + li { margin-top: .65rem; }
.footer-nav a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--green-light); }

.footer-bottom {
  padding-block: 1.2rem;
  text-align: center;
}
.footer-bottom small { color: rgba(255,255,255,.35); font-size: .8rem; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .main-nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: -100%;
    width: min(80vw, 320px);
    height: 100dvh;
    background: var(--dark);
    padding: 5rem 2rem 2rem;
    transition: inset-inline-end var(--transition);
    z-index: 999;
  }
  .main-nav.open { inset-inline-end: 0; }
  .main-nav ul { flex-direction: column; gap: 1.5rem; }
  .main-nav a { font-size: 1.05rem; }

  .burger { display: flex; z-index: 1001; }

  /* Layout stacks */
  .split-layout    { grid-template-columns: 1fr; }
  .benefits-grid   { grid-template-columns: 1fr 1fr; }
  .sectors-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner     { gap: 0; }
  .stat-divider    { display: none; }
  .cta-inner       { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .sectors-grid  { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
}
