/* ================================================
   INOVASEC – Corporate Website
   Design: Refined Authority
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CSS Variables ────────────────────────────── */
:root {
  --blue:        #1E5A96;
  --blue-dark:   #163F6B;
  --blue-light:  #2A72BB;
  --gold:        #C8860A;
  --gold-light:  #E09A18;
  --dark:        #1A1C2A;
  --charcoal:    #2D2D2D;
  --mid:         #5A6072;
  --light-bg:    #F5F7FA;
  --border:      #DDE3EC;
  --white:       #FFFFFF;
  --red:         #C0392B;
  --yellow:      #D4A017;
  --green:       #27896A;

  --font-head:   'Syne', sans-serif;
  --font-body:   'IBM Plex Sans', sans-serif;

  --radius:      6px;
  --radius-lg:   14px;
  --shadow:      0 4px 24px rgba(30,90,150,0.10);
  --shadow-md:   0 8px 40px rgba(30,90,150,0.15);
  --transition:  0.25s ease;

  --max-w:       1160px;
  --nav-h:       76px;
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ───────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Navigation ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26,28,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,134,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}
.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Section Headers ─────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-intro {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 680px;
  line-height: 1.8;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,90,150,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,134,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}
/* Radar circle decorations */
.hero-radar {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.06;
}
.hero-radar::before,
.hero-radar::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--white);
}
.hero-radar::before { width: 100%; height: 100%; }
.hero-radar::after  { width: 65%; height: 65%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}
.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30,90,150,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Page Hero (inner pages) ─────────────────── */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 64px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,90,150,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.page-hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.8;
}

/* ── Sections ────────────────────────────────── */
section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-light { background: var(--light-bg); }
.bg-blue { background: var(--blue-dark); }
.bg-dark { background: var(--dark); }

.section-head {
  margin-bottom: 56px;
}
.section-head.center {
  text-align: center;
}
.section-head.center .section-intro {
  margin: 0 auto;
}

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(30,90,150,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; color: var(--dark); }
.card p { color: var(--mid); font-size: 0.95rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── Services Block (Homepage) ───────────────── */
.services-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card-top {
  background: var(--blue-dark);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.service-card-top::after {
  content: '';
  position: absolute;
  right: -40px; bottom: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.service-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  position: absolute;
  top: 16px; right: 28px;
  line-height: 1;
}
.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.service-card-top h3 { color: var(--white); font-size: 1.5rem; }
.service-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-card-body p { color: var(--mid); margin-bottom: 24px; flex: 1; }

/* ── Ampel / Traffic Light ───────────────────── */
.ampel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.ampel-item {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.ampel-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-head);
}
.ampel-1 .ampel-dot { background: var(--red); box-shadow: 0 0 20px rgba(192,57,43,0.35); }
.ampel-2 .ampel-dot { background: var(--red); box-shadow: 0 0 20px rgba(192,57,43,0.35); }
.ampel-3 .ampel-dot { background: var(--yellow); box-shadow: 0 0 20px rgba(212,160,23,0.35); }
.ampel-4 .ampel-dot { background: var(--green); box-shadow: 0 0 20px rgba(39,137,106,0.35); }
.ampel-item h4 { margin-bottom: 8px; font-size: 1rem; }
.ampel-item p { font-size: 0.88rem; color: var(--mid); }
.ampel-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ampel-1 .ampel-status, .ampel-2 .ampel-status { background: rgba(192,57,43,0.12); color: var(--red); }
.ampel-3 .ampel-status { background: rgba(212,160,23,0.15); color: #9a7000; }
.ampel-4 .ampel-status { background: rgba(39,137,106,0.12); color: var(--green); }

/* ── Process Steps ───────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 1;
}
.step-content {
  padding-bottom: 40px;
}
.step-content h4 { margin-bottom: 8px; }
.step-content p { color: var(--mid); font-size: 0.95rem; }

/* ── Phase Table ─────────────────────────────── */
.phase-grid {
  display: grid;
  gap: 16px;
}
.phase-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.phase-item:hover {
  border-color: var(--blue-light);
  box-shadow: 0 2px 12px rgba(30,90,150,0.1);
}
.phase-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(30,90,150,0.15);
  line-height: 1;
}
.phase-content h4 { color: var(--dark); margin-bottom: 4px; }
.phase-content p { color: var(--mid); font-size: 0.9rem; }
.phase-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(30,90,150,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Pricing Table ───────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.pricing-card.featured { border-color: var(--blue); }
.pricing-head {
  background: var(--light-bg);
  padding: 32px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-head {
  background: var(--blue-dark);
}
.pricing-card.featured .pricing-head h3,
.pricing-card.featured .pricing-head .price,
.pricing-card.featured .pricing-head .price-sub {
  color: var(--white);
}
.pricing-head h3 { margin-bottom: 8px; }
.pricing-head .price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.pricing-head .price-or { font-size: 0.85rem; color: var(--mid); margin: 6px 0; }
.pricing-card.featured .pricing-head .price-or { color: rgba(255,255,255,0.5); }
.price-sub { font-size: 0.85rem; color: var(--mid); }
.pricing-body { padding: 28px 32px; background: var(--white); }
.pricing-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.93rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-bg);
}
.pricing-body ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-body .btn { margin-top: 24px; width: 100%; }

/* ── For-Whom Block ──────────────────────────── */
.for-whom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.for-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}
.for-card.yes {
  background: rgba(39,137,106,0.05);
  border-color: rgba(39,137,106,0.3);
}
.for-card.no {
  background: rgba(192,57,43,0.04);
  border-color: rgba(192,57,43,0.2);
}
.for-card h4 {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.for-card li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.93rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.for-card.yes li::before { content: '✓'; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.for-card.no li::before  { content: '✗'; color: var(--red);   position: absolute; left: 0; font-weight: 700; }

/* ── CTA Banner ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── About Page ──────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 100px;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-photo .photo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-caption {
  padding: 20px 24px;
  border-top: 3px solid var(--blue);
}
.photo-caption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--dark);
}
.photo-caption span {
  font-size: 0.85rem;
  color: var(--mid);
}
.cert-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.cert-item::before { content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.exp-timeline { display: flex; flex-direction: column; gap: 0; }
.exp-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 32px;
}
.exp-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 129px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.exp-years {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-align: right;
  padding-top: 3px;
  padding-right: 28px;
}
.exp-content {
  padding-left: 24px;
  position: relative;
}
.exp-content::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.exp-content h4 { margin-bottom: 2px; color: var(--dark); }
.exp-content .exp-company { font-size: 0.88rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.exp-content p { font-size: 0.9rem; color: var(--mid); }

.stat-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.stat-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-box .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
}
.stat-box .label {
  font-size: 0.85rem;
  color: var(--mid);
}

/* ── Contact Page ────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info p { color: var(--mid); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(30,90,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); margin-bottom: 2px; }
.contact-detail a { color: var(--blue); font-weight: 500; }
.contact-detail a:hover { color: var(--blue-light); }

/* Calendly Embed */
.calendly-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.calendly-wrapper iframe {
  width: 100%;
  border: none;
  display: block;
}

/* ── Stats Bar ───────────────────────────────── */
.stats-bar {
  background: var(--blue-dark);
  padding: 48px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.stat-item .stat-unit {
  font-size: 1rem;
  color: var(--gold);
}

/* ── Testimonial / Quote ─────────────────────── */
.quote-box {
  background: var(--light-bg);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.quote-box p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.quote-box cite { font-size: 0.88rem; color: var(--mid); font-style: normal; }

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul li {
  padding: 4px 0;
}
.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 20px; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--white); }

/* ── Checklist ───────────────────────────────── */
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li span { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── Highlight Box ───────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(30,90,150,0.07), rgba(30,90,150,0.02));
  border: 1px solid rgba(30,90,150,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ── Cookie Banner ───────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
#cookie-banner-text { flex: 1; min-width: 0; }
#cookie-banner-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
#cookie-banner-text p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0;
}
#cookie-banner-text a { color: var(--gold); text-decoration: underline; }
#cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
#cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
#cookie-accept {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
#cookie-accept:hover { background: var(--gold-light); }
@media (max-width: 700px) {
  #cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  #cookie-banner-actions { width: 100%; }
  #cookie-decline, #cookie-accept { flex: 1; text-align: center; }
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4,
  .services-block, .for-whom,
  .pricing-grid, .about-layout,
  .contact-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .ampel-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-boxes { grid-template-columns: 1fr 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 16px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a {
    padding: 12px 28px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-toggle { display: flex; }
  .cta-banner { padding: 40px 28px; }
  .about-photo { position: static; }
  section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .phase-item { grid-template-columns: 60px 1fr; }
  .phase-time { display: none; }
}
@media (max-width: 560px) {
  .ampel-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-boxes { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
}
