/* ============================================================
   SASCHA BOAMPONG – One-Pager
   Design: jonaskeil.com (1:1 Replikation)
   Struktur: klaushaasis.de
   ============================================================ */

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

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

/* ---- Design Tokens (jonaskeil.com) ---- */
:root {
  /* Colors – Light Mode */
  --bg:          #f6f8fc;
  --bg-alt:      #eef2f8;
  --surface:     #ffffff;
  --border:      rgba(15, 23, 42, 0.08);
  --border-card: rgba(15, 23, 42, 0.10);

  --text-primary:   #0a1628;
  --text-secondary: #475569;
  --text-muted:     #64748b;

  --accent:         #157fe1;        /* rgb(21, 127, 225) */
  --accent-dark:    #0d5fa9;
  --accent-2:       #06b6d4;        /* rgb(6, 182, 212) */
  --gradient:       linear-gradient(120deg, #157fe1 0%, #06b6d4 100%);

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Manrope', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py:  96px;
  --container:   1100px;
  --gap:         32px;

  /* Radius */
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  /* Shadows */
  --shadow-card:    0 4px 24px -6px rgba(21, 127, 225, 0.12), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 24px 60px -12px rgba(21, 127, 225, 0.28), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-btn:     0 12px 24px -10px rgba(0, 40, 100, 0.45);

  /* Nav */
  --nav-h: 64px;
}

/* ---- Global ---- */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(246, 248, 252, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.nav__logo:hover {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(21, 127, 225, 0.06);
}

.nav__link--cta {
  margin-left: 8px;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav__burger:hover {
  background: var(--bg-alt);
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-link {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav__mobile-link:hover {
  color: var(--text-primary);
  background: var(--bg-alt);
}

.nav__mobile-link--cta {
  margin-top: 8px;
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 12px;
}

.nav__mobile-link--cta:hover {
  background: var(--accent-dark) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.25s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: var(--surface);
  color: var(--text-primary);
  border: 1.5px solid var(--border-card);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(21, 127, 225, 0.25);
}

.btn--large {
  font-size: 16px;
  padding: 16px 32px;
}

.btn--full {
  width: 100%;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

/* ============================================================
   TEXT GRADIENT
   ============================================================ */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--section-py) + 16px);
  padding-bottom: var(--section-py);
  background: var(--bg);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero__text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 16px;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__photo-wrap {
  display: flex;
  justify-content: center;
}

.hero__photo {
  position: relative;
  width: 380px;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   THREE COLUMNS (Mein Weg)
   ============================================================ */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card__number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.7;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS (Referenzen)
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial__quote {
  font-style: normal;
}

.testimonial__highlight {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.testimonial__body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT (Was mich bewegt)
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Spacing: Button-Abstand nach dem Text */
.about__text .reveal:last-child {
  margin-top: 12px;
}

.body-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.body-text--large {
  font-size: 17px;
  line-height: 1.8;
}

.about__photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   TRACK RECORD (Kein Coach)
   ============================================================ */
.track-record {
  max-width: 820px;
  margin-bottom: 56px;
}

.milestones-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  margin-top: 64px;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.milestone {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.milestone:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.milestone__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.milestone__label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.milestone__desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.milestone--img {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.milestone__img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  flex-shrink: 0;
}

.milestone__img-wrap--portrait {
  height: 220px;
}

.milestone__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.milestone--img:hover .milestone__img {
  transform: scale(1.04);
}

.milestone--img .milestone__label,
.milestone--img .milestone__desc {
  padding: 0 20px;
}

.milestone--img .milestone__label {
  padding-top: 18px;
}

.milestone--img .milestone__desc {
  padding-bottom: 20px;
}

/* ============================================================
   BILDERGALERIE
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
}

/* Alle Fotos gleich groß – kein tall-Item mehr */
.gallery__item--tall {
  grid-row: span 1;
  aspect-ratio: 4/3;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
  user-select: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
}

.faq__icon::before {
  width: 10px;
  height: 1.5px;
}

.faq__icon::after {
  width: 1.5px;
  height: 10px;
}

details[open] .faq__icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}

details[open] .faq__icon::before,
details[open] .faq__icon::after {
  background: #fff;
}

.faq__answer {
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__answer p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg);
  text-align: center;
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-section__headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-primary);
  max-width: 700px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  width: 100%;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.contact-form__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(21, 127, 225, 0.13);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  transition: color 0.2s;
}

.footer__logo:hover {
  color: var(--accent-2);
}

.footer__nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.footer__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, background 0.2s, transform 0.15s;
}

.footer__social-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 16px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: rgba(255,255,255,0.8);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS (jonaskeil.com style)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(1.5px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-2 { transition-delay: 0.10s; }
.reveal-3 { transition-delay: 0.20s; }
.reveal-4 { transition-delay: 0.30s; }

/* Cards and testimonials inside reveal containers get staggered */
.reveal.in-view .card:nth-child(1),
.reveal.in-view .testimonial:nth-child(1),
.reveal.in-view .milestone:nth-child(1) { transition-delay: 0s; }
.reveal.in-view .card:nth-child(2),
.reveal.in-view .testimonial:nth-child(2),
.reveal.in-view .milestone:nth-child(2) { transition-delay: 0.1s; }
.reveal.in-view .card:nth-child(3),
.reveal.in-view .testimonial:nth-child(3),
.reveal.in-view .milestone:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   PORTRAIT PLACEHOLDER SVG (inline fallback)
   ============================================================ */

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-py: 72px;
  }

  .hero__inner {
    grid-template-columns: 1fr 340px;
    gap: 48px;
  }

  .hero__photo {
    width: 320px;
    height: 390px;
  }

  .about__grid {
    grid-template-columns: 1fr 300px;
    gap: 48px;
  }
}

/* Mobile */
@media (max-width: 860px) {
  :root {
    --section-py: 60px;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav {
    height: auto;
    min-height: var(--nav-h);
  }

  .nav__inner {
    height: var(--nav-h);
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__photo-wrap {
    order: -1;
  }

  .hero__photo {
    width: 260px;
    height: 320px;
    margin: 0 auto;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  /* Three col → single col */
  .three-col {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials {
    grid-template-columns: 1fr;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo-wrap {
    position: static;
    order: -1;
  }

  .about__photo {
    max-width: 280px;
    margin: 0 auto;
  }

  /* Milestones */
  .milestones {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-section__headline {
    font-size: clamp(28px, 7vw, 44px);
  }

  /* Contact form */
  .contact-form {
    padding: 28px 20px;
  }

  /* Footer */
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 38px;
    letter-spacing: -0.8px;
  }

  .section-title {
    font-size: 28px;
  }

  .card,
  .testimonial {
    padding: 28px 22px;
  }
}
