/* =========================================================
   Dein SolarTeam — Stylesheet
   Akzentfarbe: #EB9940 (Logo-Orange)
   ========================================================= */

:root {
  --primary: #EB9940;
  --primary-dark: #D88231;
  --primary-light: #F4B978;
  --primary-soft: #FCEEDC;
  --primary-tint: #FFF6EC;
  --ink: #14171c;
  --ink-2: #2a2f37;
  --grey-900: #1a1f26;
  --grey-700: #4a5260;
  --grey-500: #6b7280;
  --grey-300: #d6d8dc;
  --grey-200: #e8eaee;
  --grey-100: #f3f4f6;
  --grey-50: #f7f8fa;
  --white: #ffffff;
  --error: #c0392b;
  --error-soft: #fbe2de;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 6px 24px rgba(15,20,30,.06);
  --shadow-lg: 0 18px 48px rgba(15,20,30,.10);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --container: 1180px;
  --header-h: 76px;
  --topbar-h: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5 { margin: 0 0 .6em; line-height: 1.18; color: var(--ink); font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Eyebrows ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 18px;
  background: var(--primary-tint);
  padding: 6px 14px;
  border-radius: 999px;
}
/* When eyebrow stands alone with no background pill */
.eyebrow.plain { background: transparent; padding: 0; }

/* ---------- H2 ---------- */
h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; line-height: 1.15; }
.h2-highlight {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.015em;
}
h3 { font-size: 18px; font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-head .lead { color: var(--grey-700); font-size: 17px; }
section { padding: 80px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  line-height: 1;
}
.btn svg { transition: transform .2s; }
.btn:hover svg { transform: translateX(2px); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-on-orange { background: var(--white); color: var(--primary); }
.btn-on-orange:hover { background: var(--ink); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-ghost { background: var(--grey-100); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--grey-900);
  color: var(--white);
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner { display: flex; justify-content: flex-start; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 50px; width: auto; display: block; }
.footer-logo { width: 200px; height: auto; }
.nav {
  display: flex;
  gap: 28px;
  margin-left: 24px;
  flex: 1;
}
.nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { transform: scaleX(1); }
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.phone-cta:hover { background: var(--primary); color: var(--white); }
.burger { display: none; background: none; border: none; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: all .2s; }

/* ---------- Hero ---------- */
.hero {
  background: var(--grey-50);
  padding: 80px 0 0;
  text-align: center;
  overflow: hidden;
}
.hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 24px; }
.hero .lead { font-size: 18px; color: var(--grey-700); max-width: 720px; margin: 0 auto 32px; }
.hero-photo-wrap {
  position: relative;
  margin-top: 56px;
  padding: 0 0;
}
.hero-photo {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-photo::before,
.hero-photo::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 56px;
  background: var(--primary);
}
.hero-photo::before { left: 0; border-radius: var(--radius) 0 0 var(--radius); }
.hero-photo::after  { right: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.hero-photo img {
  height: auto;
  position: relative;
  z-index: 1;
  margin: 0 56px;
  width: calc(100% - 112px);
  border-radius: var(--radius);
  display: block;
}

/* ---------- Why PV ---------- */
.why-pv { background: var(--white); padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.why-portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.why-quote {
  margin: 24px 0 0;
  padding: 0;
  font-style: italic;
  color: var(--grey-700);
  font-size: 14px;
  line-height: 1.55;
}
.why-quote p { margin-bottom: 8px; }
.why-quote cite { font-style: normal; font-weight: 700; color: var(--ink); }
.why-content h2 { margin-top: 12px; }
.why-content p { color: var(--grey-700); font-size: 16px; }
.why-content .why-sub { margin-top: 22px; }
.why-content strong { color: var(--ink); }
.dash-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
}
.dash-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--grey-700);
}
.dash-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 2px;
  background: var(--primary);
}

/* ---------- Services ---------- */
.services { background: var(--grey-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey-100);
}
.service-img img,
.service-img svg.placeholder-illu {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card h3 {
  padding: 20px 22px 24px;
  margin: 0;
  font-size: 18px;
}

/* ---------- Reality ---------- */
.reality { background: var(--white); }
.reality-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.reality-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.problem-card, .solution-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.problem-card h4, .solution-card h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin: 8px 0 8px;
  color: var(--ink);
}
.problem-card p, .solution-card p {
  color: var(--grey-700);
  font-size: 14px;
  margin: 0;
}
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge-problem { background: var(--error-soft); color: var(--error); }
.badge-solution { background: var(--primary-tint); color: var(--primary-dark); }
.x-circle, .check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.x-circle { background: var(--error-soft); color: var(--error); }
.check-circle { background: var(--primary-tint); color: var(--primary-dark); }
.problem-card:hover, .solution-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

/* ---------- Banner ---------- */
.banner-section { padding: 32px 0; background: var(--white); }
.banner-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.banner {
  position: relative;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 24px);
  opacity: .5;
  pointer-events: none;
}
.banner-text {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}
.banner-text p {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

/* ---------- USPs ---------- */
.usps { background: var(--grey-50); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.usp-card:nth-child(4),
.usp-card:nth-child(5) {
  /* second row - 2 cards aligned */
}
.usp-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 18px;
}
.usp-icon svg { width: 28px; height: 28px; }
.usp-card h3 { font-size: 18px; margin-bottom: 10px; }
.usp-card p { color: var(--grey-700); font-size: 14.5px; margin: 0; }

/* ---------- Audiences (Carousel) ---------- */
.audiences { background: var(--white); }
.carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}
.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 4px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.aud-head {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--grey-100);
  padding: 18px 22px;
  transition: background .2s, color .2s;
}
.aud-head h3 { margin: 0; font-size: 17px; line-height: 1.25; }
.aud-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--white);
  color: var(--primary);
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.aud-icon svg { width: 24px; height: 24px; }
.audience-card p {
  padding: 18px 22px 22px;
  margin: 0;
  color: var(--grey-700);
  font-size: 14.5px;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.audience-card:hover .aud-head {
  background: var(--primary);
  color: var(--white);
}
.audience-card:hover .aud-head h3 { color: var(--white); }
.audience-card:hover .aud-icon {
  background: var(--white);
  color: var(--primary);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.carousel-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
.carousel-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 28px;
}
.carousel-pagination button {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: var(--grey-300);
  border: none;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.carousel-pagination button[aria-current="true"] {
  background: var(--primary);
  width: 44px;
}

/* ---------- Process / Steps ---------- */
.process { background: var(--grey-50); }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.process-head .lead { color: var(--grey-700); font-size: 17px; margin: 0; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: var(--grey-100);
  transition: background .2s, color .2s;
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--white);
  color: var(--primary);
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.step-icon svg { width: 26px; height: 26px; }
.step-head h3 { margin: 0; font-size: 17px; line-height: 1.25; }
.step-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  transition: color .2s;
}
.arrow-list {
  list-style: none;
  padding: 22px 26px 26px;
  margin: 0;
}
.arrow-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--grey-700);
  font-size: 14.5px;
  line-height: 1.55;
}
.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.step-card:hover .step-head {
  background: var(--primary);
  color: var(--white);
}
.step-card:hover .step-head h3 { color: var(--white); }
.step-card:hover .step-num { color: var(--white); }
.step-card:hover .step-icon {
  background: var(--white);
  color: var(--primary);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}
.final-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--white);
  margin: 14px 0 28px;
  line-height: 1.25;
}
.final-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,.18);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0;
}
.final-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.final-cta-illu { opacity: .9; }
.final-cta-illu svg { width: 100%; height: auto; }

/* ---------- Footer ---------- */
.footer {
  background: var(--grey-900);
  color: #c9ccd2;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
  gap: 50px;
}
.footer-logo { width: 220px; height: auto; margin-bottom: 18px; }
.footer-claim { color: var(--white); font-weight: 700; font-size: 18px; margin-bottom: 16px; }
.footer-col p { font-size: 14.5px; color: #b9bdc4; line-height: 1.6; }
.footer-col h4 { color: var(--white); margin-bottom: 18px; font-size: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #b9bdc4; font-size: 14.5px; }
.footer-col ul a:hover { color: var(--primary); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--primary);
}
.contact-list a { color: var(--white); display: block; }
.contact-list a:hover { color: var(--primary); }
.contact-list small { display: block; color: #8d929c; font-size: 12.5px; margin-top: 2px; line-height: 1.4; }
.footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.2);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small { color: #8d929c; }
.footer-bottom nav { display: flex; gap: 18px; }
.footer-bottom nav a { color: #b9bdc4; font-size: 13px; }
.footer-bottom nav a:hover { color: var(--primary); }

/* ---------- Forms (kontakt.html) ---------- */
.form-page { padding: 60px 0 100px; }
.form-page h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.form-page .lead { color: var(--grey-700); margin-bottom: 36px; max-width: 660px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}
@media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } }
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(235,153,64,.18);
}
.field textarea { min-height: 140px; resize: vertical; }
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
.error-msg {
  display: none;
  color: var(--error);
  font-size: 12.5px;
  margin-top: 6px;
}
.field.error .error-msg { display: block; }
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 22px;
}
.checkbox-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); }
.checkbox-field label { font-size: 13.5px; color: var(--grey-700); margin: 0; font-weight: 400; line-height: 1.5; }
.checkbox-field a { color: var(--primary); }
.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14.5px;
}
.form-status.success { display: block; background: var(--primary-tint); color: var(--primary-dark); border: 1px solid var(--primary-light); }
.form-status.fail { display: block; background: var(--error-soft); color: var(--error); border: 1px solid #e7a89f; }
.contact-info {
  background: var(--grey-900);
  color: #c9ccd2;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info h3 { color: var(--white); margin-top: 0; }
.contact-info .contact-list { padding: 0; }
.contact-info .contact-list li { color: #b9bdc4; }
.contact-info .contact-list a { color: var(--white); }
.contact-info .contact-list svg { color: var(--primary); }

/* ---------- Static pages (impressum / datenschutz / success) ---------- */
.static-page { padding: 60px 0 100px; max-width: 800px; }
.static-page h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 24px; }
.static-page h2 { font-size: 22px; margin-top: 32px; margin-bottom: 12px; }
.static-page p, .static-page li { color: var(--grey-700); }
.static-page ul { padding-left: 1.4em; }
.static-page strong { color: var(--ink); }
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-portrait { max-width: 380px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .process-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta-illu { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px;
    gap: 12px;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow);
  }
  .phone-cta .phone-num { display: none; }
  .phone-cta { padding: 10px; }
  .burger { display: block; margin-left: auto; }
  .reality-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .carousel-slide { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .banner { padding: 40px 28px; }
  .hero-photo::before, .hero-photo::after { width: 24px; }
  .hero-photo img { margin: 0 24px; width: calc(100% - 48px); }
  .carousel-prev { left: -10px; }
  .carousel-next { right: -10px; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 20px; }
}
