/* ============================================
   CRE BY NAYOKI – KI-HEALTHCHECK LANDINGPAGE
   CI: Rot #E8001C · Dunkelgrau #1a1a1a · Weiß
   Helles Design – kein schwarzer Hintergrund
   Font: Montserrat
   ============================================ */

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

:root {
  --red:           #E8001C;
  --red-dark:      #C40018;
  --red-muted:     rgba(232, 0, 28, 0.07);
  --red-border:    rgba(232, 0, 28, 0.18);
  --charcoal:      #1a1a1a;
  --charcoal-2:    #2d2d2d;
  --mid:           #5a5a5a;
  --mid-light:     #888;
  --light:         #f4f4f4;
  --lighter:       #fafafa;
  --white:         #ffffff;
  --border:        #e0e0e0;
  --border-light:  #ebebeb;
  --success:       #16a34a;
  --gradient-red:  linear-gradient(135deg, #E8001C 0%, #C40018 100%);
  --gradient-hero: linear-gradient(160deg, #f9f9f9 0%, #ffffff 60%, #fef2f4 100%);
  --shadow-sm:     0 1px 8px rgba(0,0,0,.06);
  --shadow:        0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 6px 32px rgba(0,0,0,.10);
  --shadow-xl:     0 16px 60px rgba(0,0,0,.12);
  --shadow-red:    0 6px 28px rgba(232, 0, 28, 0.22);
  --radius:        10px;
  --radius-lg:     16px;
  --font:          'Montserrat', system-ui, sans-serif;
  --transition:    0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.gradient-text {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-muted);
  border: 1px solid var(--red-border);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 640px;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.75;
}

.red-line { width: 40px; height: 4px; background: var(--red); border-radius: 2px; margin: 0 0 22px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232,0,28,.32);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 800;
}
.btn--white:hover {
  background: #fef2f4;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.btn--nav {
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  font-size: 11px;
  border-radius: 7px;
  border-color: var(--red);
  letter-spacing: .06em;
}
.btn--nav:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.btn--lg { padding: 17px 36px; font-size: 14px; border-radius: var(--radius-lg); }
.btn--full { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  padding: 11px 0;
  box-shadow: var(--shadow);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav__logo img {
  height: 96px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}

/* Dezenter Hintergrund – helles Rot-Weiß-Muster */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(145deg, #fff5f6 0%, #ffeaea 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* Roter Akzent-Kreis rechts oben */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,0,28,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--mid);
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__badge img.bvdw-badge-img {
  height: 24px;
  width: auto;
  border-radius: 4px;
}
.badge-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.07;
  color: var(--charcoal);
  margin-bottom: 24px;
  max-width: 780px;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.hero__sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--mid);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.8;
  font-weight: 400;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mid);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.trust-item i { color: var(--red); font-size: 14px; }

/* ---- PROBLEM ---- */
.problem { padding: 96px 0; background: var(--lighter); }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.problem__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.problem__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-border);
}
.problem__icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  background: var(--red-muted);
  color: var(--red);
}
.problem__card h3 {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.problem__card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.problem__card li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--mid); }
.problem__card li i { color: var(--red); font-size: 11px; margin-top: 4px; flex-shrink: 0; }

/* ---- SOLUTION ---- */
.solution { padding: 96px 0; background: var(--white); }
.solution__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.solution__text p { color: var(--mid); margin-bottom: 30px; line-height: 1.8; font-size: 15px; }
.solution__bullets { display: flex; flex-direction: column; gap: 22px; margin-bottom: 38px; }
.bullet { display: flex; gap: 14px; align-items: flex-start; }
.bullet__icon {
  width: 42px; height: 42px;
  background: var(--red-muted);
  border: 1px solid var(--red-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 17px;
  flex-shrink: 0;
}
.bullet strong { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 3px; color: var(--charcoal); }
.bullet p { font-size: 13px; color: var(--mid); margin: 0; }

.solution__visual { display: flex; flex-direction: column; gap: 16px; }
.stat-card { border-radius: var(--radius-lg); padding: 26px 28px; }
.stat-card--main {
  background: var(--red);
  box-shadow: var(--shadow-red);
  color: var(--white);
}
.stat-card--secondary {
  background: var(--charcoal);
  color: var(--white);
}
.stat-card__number { font-size: 3.6rem; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.stat-card__label { font-size: 13px; opacity: .82; margin-top: 6px; font-weight: 500; }

/* BVDW Badge in Solution */
.bvdw-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.bvdw-badge img { height: 52px; width: auto; border-radius: 8px; flex-shrink: 0; }
.bvdw-badge__text { font-size: 12px; color: var(--mid); font-weight: 500; line-height: 1.5; }
.bvdw-badge__text strong { display: block; color: var(--charcoal); font-size: 13px; font-weight: 700; margin-bottom: 2px; }

/* ---- ABLAUF ---- */
.ablauf {
  padding: 96px 0;
  /* Helles Grau statt Schwarz */
  background: var(--lighter);
}
.ablauf .section-label { color: var(--red); background: var(--red-muted); border-color: var(--red-border); }
.ablauf .section-title { color: var(--charcoal); }
.ablauf .section-sub { color: var(--mid); }

.ablauf__steps { display: flex; align-items: flex-start; margin-top: 52px; }
.ablauf__connector { padding: 0 10px; margin-top: 42px; color: var(--red); font-size: 18px; flex-shrink: 0; }
.ablauf__step {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.ablauf__step:hover {
  border-color: var(--red-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.step__number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--red);
  opacity: .18;
  line-height: 1;
  margin-bottom: 14px;
}
.step__week {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.ablauf__step h3 { font-size: .9rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; color: var(--charcoal); }
.ablauf__step p { font-size: 13px; color: var(--mid); line-height: 1.75; margin-bottom: 18px; }
.step__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.step__list li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--mid); font-weight: 500; }
.step__list li i { color: var(--red); font-size: 11px; }

/* ---- LEISTUNGEN ---- */
.leistungen { padding: 96px 0; background: var(--white); }
.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.leistung__card {
  background: var(--lighter);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1.5px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.leistung__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-border);
  background: var(--white);
}
.leistung__card--highlight {
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.leistung__card--highlight:hover { background: var(--red-dark); border-color: var(--red-dark); }
.leistung__icon {
  width: 46px; height: 46px;
  background: var(--red-muted);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: var(--red);
  margin-bottom: 16px;
}
.leistung__card--highlight .leistung__icon { background: rgba(255,255,255,.18); color: var(--white); }
.leistung__card h3 { font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 9px; color: var(--charcoal); }
.leistung__card p { font-size: 13.5px; color: var(--mid); line-height: 1.75; }
.leistung__card--highlight h3 { color: var(--white); }
.leistung__card--highlight p { color: rgba(255,255,255,.84); }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 96px 0; background: var(--lighter); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.testimonial__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1.5px solid var(--border-light);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial__card:hover { box-shadow: var(--shadow-lg); border-color: var(--red-border); }
.testimonial__stars { color: var(--red); margin-bottom: 14px; font-size: 13px; display: flex; gap: 2px; }
.testimonial__card p { font-size: 14px; color: var(--charcoal-2); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; color: var(--charcoal); }
.testimonial__author span { font-size: 11.5px; color: var(--mid-light); }

/* ---- FORMULAR ---- */
.formular { padding: 96px 0; background: var(--white); }
.formular__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.formular__text p { color: var(--mid); margin-bottom: 30px; line-height: 1.8; font-size: 15px; }
.formular__includes { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.include__item { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; color: var(--charcoal); }
.include__item i { color: var(--red); font-size: 16px; flex-shrink: 0; }
.formular__cert {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lighter);
  border: 1.5px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius);
}
.formular__cert img { height: 44px; width: auto; border-radius: 6px; flex-shrink: 0; }
.formular__cert span { font-size: 12px; color: var(--mid); font-weight: 500; line-height: 1.5; }

/* FORM CARD */
.formular__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
}
.form-header {
  background: var(--red);
  padding: 26px 30px;
  color: var(--white);
}
.form-header h3 { font-size: 1rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 5px; }
.form-header p { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 400; }

form { padding: 28px 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--charcoal-2); }
.form-group input,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--lighter);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,0,28,.08);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,0,28,.07); }
.form-error { font-size: 11px; color: var(--red); min-height: 15px; font-weight: 600; }
.required { color: var(--red); }
.optional { color: var(--mid-light); font-weight: 400; text-transform: none; }

/* CHECKBOX */
.form-group--consent { margin-bottom: 22px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 11px;
  cursor: pointer; font-size: 13px; color: var(--mid); line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark {
  width: 17px; height: 17px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--lighter);
  flex-shrink: 0; margin-top: 1px;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark { background: var(--red); border-color: var(--red); }
.checkbox-label input[type="checkbox"]:checked + .checkmark::after { content: '✓'; color: var(--white); font-size: 10px; font-weight: 700; }
.link-inline { color: var(--red); text-decoration: none; font-weight: 600; }
.link-inline:hover { text-decoration: underline; }
.form-disclaimer { text-align: center; font-size: 12px; color: var(--mid-light); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-disclaimer i { color: var(--success); }

/* SUCCESS */
.form-success { padding: 40px 30px; text-align: center; }
.success-icon { font-size: 56px; color: var(--red); margin-bottom: 18px; }
.form-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--charcoal); margin-bottom: 10px; }
.form-success p { color: var(--mid); font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
.success-steps { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.success-step { display: flex; align-items: flex-start; gap: 12px; }
.success-step span { width: 26px; height: 26px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.success-step p { font-size: 13.5px; color: var(--charcoal-2); margin: 3px 0 0; }

/* ---- FAQ ---- */
.faq { padding: 96px 0; background: var(--lighter); }
.faq__grid { max-width: 800px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 9px; }
.faq__item { border: 1.5px solid var(--border-light); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: border-color var(--transition); }
.faq__item[data-open="true"] { border-color: var(--red); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: transparent; border: none; cursor: pointer; font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--charcoal); text-align: left; transition: background var(--transition); }
.faq__question:hover { background: var(--lighter); }
.faq__question i { flex-shrink: 0; color: var(--mid-light); transition: transform var(--transition), color var(--transition); }
.faq__item[data-open="true"] .faq__question i { transform: rotate(180deg); color: var(--red); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 22px; }
.faq__answer p { font-size: 13.5px; color: var(--mid); line-height: 1.8; }
.faq__item[data-open="true"] .faq__answer { max-height: 220px; padding: 0 22px 20px; }

/* ---- FINAL CTA ---- */
.final-cta { padding: 96px 0; background: var(--red); text-align: center; }
.final-cta__inner { max-width: 680px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--white); letter-spacing: -.02em; text-transform: uppercase; margin-bottom: 18px; }
.final-cta p { font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 38px; line-height: 1.75; }

/* ---- FOOTER ---- */
.footer { padding: 34px 0; background: var(--charcoal); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer__brand img { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: .85; display: block; }
.footer__links { display: flex; gap: 26px; }
.footer__links a { color: rgba(255,255,255,.4); font-size: 11px; font-weight: 600; text-decoration: none; letter-spacing: .06em; text-transform: uppercase; transition: color var(--transition); }
.footer__links a:hover { color: var(--red); }
.footer__copy { font-size: 11px; color: rgba(255,255,255,.28); font-weight: 500; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .solution__inner { grid-template-columns: 1fr; gap: 48px; }
  .formular__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .ablauf__steps { flex-direction: column; }
  .ablauf__connector { transform: rotate(90deg); margin: -4px auto; display: block; width: 24px; }
  .hero::before { display: none; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  section { padding: 64px 0; }
  .hero { padding: 110px 0 64px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav__inner { padding: 0 18px; }
  .formular__card form { padding: 22px 18px; }
  .form-header { padding: 22px 18px; }
}
