:root {
  --green: #82c99a;
  --green-dark: #2f7a52;
  --mint: #e8f6ee;
  --sky: #8bd9e8;
  --coral: #df4a38;
  --charcoal: #2f3336;
  --muted: #65706a;
  --line: #d9e5dc;
  --paper: #ffffff;
  --wash: #f6fbf8;
  --shadow: 0 18px 48px rgba(36, 60, 44, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--wash);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 36px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 170px;
  height: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.topbar-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  white-space: nowrap;
}

.nav a {
  padding: 0 12px;
}

.nav a:hover {
  background: var(--mint);
  color: var(--green-dark);
}

.topbar-cta {
  padding: 0 16px;
  color: #ffffff;
  background: var(--charcoal);
  font-weight: 800;
}

.hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 120px 36px 44px;
  background:
    linear-gradient(90deg, rgba(47, 51, 54, 0.86) 0%, rgba(47, 51, 54, 0.7) 38%, rgba(47, 51, 54, 0.26) 78%),
    url("./assets/hugp-hero-workbench.jpg") center / cover no-repeat;
  color: #ffffff;
}

.hero-content,
.section,
.metric-strip,
.contact-section,
.footer {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.hero-content {
  max-width: 860px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.2rem;
  line-height: 0.95;
}

.hero-copy {
  max-width: 730px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link,
.social-icon {
  --platform: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.social-link {
  gap: 9px;
  min-height: 40px;
  padding: 0 13px 0 10px;
  color: var(--charcoal);
  background: #ffffff;
  border-color: var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(36, 60, 44, 0.08);
}

.social-link:hover {
  color: var(--green-dark);
  border-color: rgba(47, 122, 82, 0.4);
  transform: translateY(-1px);
}

.social-link svg,
.social-icon svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link svg {
  color: var(--platform);
}

.social-link.youtube svg,
.social-icon.youtube {
  --platform: #df4a38;
}

.social-link.pinterest svg,
.social-icon.pinterest {
  --platform: #bd1e2d;
}

.social-link.tiktok svg,
.social-icon.tiktok {
  --platform: #111318;
}

.social-link.instagram svg,
.social-icon.instagram {
  --platform: #c13584;
}

.social-link.facebook svg,
.social-icon.facebook {
  --platform: #1877f2;
}

.social-link.website svg,
.social-icon.website {
  --platform: var(--green-dark);
}

.social-link.youtube svg,
.social-link.pinterest svg,
.social-link.tiktok svg,
.social-link.facebook svg,
.social-icon.youtube svg,
.social-icon.pinterest svg,
.social-icon.tiktok svg,
.social-icon.facebook svg {
  fill: currentColor;
  stroke: none;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button.primary {
  color: #ffffff;
  background: var(--green-dark);
}

.button.primary:hover {
  background: #256343;
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin: 32px 0 0;
}

.hero-snapshot div {
  padding: 16px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.12);
}

.hero-snapshot dt {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-snapshot dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 850;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.metric,
.argument,
.audience-card,
.topic-grid article,
.package,
.proof-item,
.reporting-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric {
  min-height: 144px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.metric-label {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  font-size: 2.05rem;
  line-height: 1;
}

.metric span:last-child {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.section {
  padding: 86px 0 0;
}

.section-tight {
  padding-top: 72px;
}

.section-header {
  max-width: 840px;
  margin-bottom: 28px;
}

.section-header h2,
.contact-section h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.section-header p:not(.eyebrow),
.contact-section p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.argument-grid,
.audience-overview,
.audience-grid,
.topic-grid,
.package-grid,
.proof-grid,
.reporting-grid {
  display: grid;
  gap: 16px;
}

.argument-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.argument {
  min-height: 210px;
  padding: 22px;
}

.argument-kicker {
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 950;
}

.argument h3,
.audience-card h3,
.topic-grid h3,
.package h3,
.proof-item h3,
.reporting-grid h3 {
  margin: 12px 0 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.argument p,
.profile-points p,
.funnel-steps p,
.topic-grid p,
.package li,
.package .best-for,
.proof-item p,
.reporting-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.profile-social-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-social-panel h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.profile-social-panel .eyebrow {
  margin-bottom: 6px;
}

.profile-social {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  justify-content: stretch;
}

.profile-social .social-link {
  width: 100%;
  color: var(--charcoal);
  background: #ffffff;
  cursor: pointer;
}

.profile-social .social-link:hover {
  color: var(--green-dark);
  background: var(--mint);
}

.profile-social .social-link span::after {
  content: "↗";
  margin-left: 6px;
  color: var(--green-dark);
  font-size: 0.78em;
  font-weight: 950;
}

.profile-social .social-link svg {
  color: var(--green-dark);
  fill: none;
  stroke: currentColor;
}

.profile-social .social-link.youtube svg,
.profile-social .social-link.pinterest svg,
.profile-social .social-link.tiktok svg,
.profile-social .social-link.facebook svg {
  fill: none;
  stroke: currentColor;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.profile-points {
  display: grid;
  gap: 12px;
}

.profile-points article {
  min-height: 132px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-icon,
.report-icon,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 8px;
  font-weight: 950;
}

.profile-points h3,
.funnel-steps h3 {
  margin: 14px 0 0;
  font-size: 1.2rem;
}

.profile-points p,
.funnel-steps p {
  margin: 9px 0 0;
}

.reach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.reach-chart {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.funnel-map {
  display: grid;
  gap: 12px;
}

.funnel-map-item {
  min-height: 148px;
  padding: 20px;
  border-left: 6px solid var(--green-dark);
  background: var(--mint);
  border-radius: 8px;
}

.funnel-map-item.video {
  border-left-color: var(--coral);
}

.funnel-map-item.intent {
  border-left-color: #c9222a;
}

.funnel-map-item.owned {
  border-left-color: var(--green-dark);
}

.funnel-map-item span {
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.funnel-map-item h3 {
  margin: 8px 0 0;
  font-size: 1.15rem;
}

.funnel-map-item strong {
  display: block;
  margin-top: 8px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.funnel-map-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.chart-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.funnel-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.funnel-steps article {
  min-height: 190px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.band {
  width: 100%;
  max-width: none;
  padding: 86px max(24px, calc((100vw - 1180px) / 2)) 0;
}

.band::before {
  content: "";
  display: block;
  height: 1px;
  margin: -36px 0 72px;
  background: var(--line);
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-overview {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.audience-summary-card {
  min-height: 190px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.audience-summary-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--green);
}

.audience-summary-card:nth-child(2)::after {
  background: var(--sky);
}

.audience-summary-card:nth-child(3)::after {
  background: var(--coral);
}

.summary-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 8px;
  font-weight: 950;
}

.summary-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-summary-card h3 {
  margin: 16px 0 0;
  font-size: 1.22rem;
}

.audience-summary-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.audience-card {
  padding: 22px;
  min-height: 360px;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-head h3 {
  margin: 0;
}

.channel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.youtube {
  background: var(--coral);
}

.pinterest {
  background: #c9222a;
}

.tiktok {
  background: var(--sky);
}

.search {
  background: var(--green-dark);
}

.card-subline {
  min-height: 66px;
  margin: 14px 0 20px;
  color: var(--muted);
  line-height: 1.45;
}

.bar-list {
  display: grid;
  gap: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
}

.bar-row span {
  color: var(--muted);
}

.bar-row b {
  color: var(--charcoal);
}

.bar-row i {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  background: var(--mint);
  border-radius: 999px;
}

.bar-row i::after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.tab {
  min-height: 44px;
  padding: 0 18px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.tab.is-active {
  color: #ffffff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel[hidden] {
  display: none;
}

.panel h3 {
  margin: 0;
  font-size: 1.55rem;
}

.panel p {
  color: var(--muted);
  line-height: 1.6;
}

.clean-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 12px 0 12px 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  position: relative;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.panel-stat-grid {
  display: grid;
  gap: 12px;
}

.panel-stat-grid div {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 18px;
  background: var(--mint);
  border-radius: 8px;
}

.panel-stat-grid strong {
  font-size: 2rem;
}

.panel-stat-grid span {
  margin-top: 6px;
  color: var(--green-dark);
  font-weight: 850;
}

.topic-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.topic-grid article {
  min-height: 180px;
  padding: 20px;
  border-top: 5px solid var(--green);
}

.topic-grid article:nth-child(2n) {
  border-top-color: var(--sky);
}

.topic-grid article:nth-child(3n) {
  border-top-color: var(--coral);
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 24px;
  position: relative;
}

.package.highlighted {
  border-color: var(--green-dark);
  box-shadow: var(--shadow);
}

.package.highlighted::before {
  content: "Empfohlen";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 9px;
  color: #ffffff;
  background: var(--coral);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tier {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  margin: 18px 0;
  font-size: 2rem;
  font-weight: 950;
}

.package ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.package li + li {
  margin-top: 11px;
}

.package .best-for {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  display: block;
  min-height: 360px;
  padding: 0 0 22px;
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.proof-item:hover,
.proof-item:focus-visible {
  border-color: rgba(47, 122, 82, 0.45);
  box-shadow: 0 16px 34px rgba(36, 60, 44, 0.12);
  transform: translateY(-2px);
}

.proof-item:focus-visible {
  outline: 3px solid rgba(47, 122, 82, 0.25);
  outline-offset: 3px;
}

.proof-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--mint);
}

.proof-item:nth-child(4) img {
  object-position: center 22%;
}

.proof-item .source-tag,
.proof-item h3,
.proof-item p,
.proof-link {
  margin-left: 22px;
  margin-right: 22px;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.proof-link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.86em;
}

.source-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  min-height: 30px;
  padding: 0 10px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reporting {
  padding-bottom: 86px;
}

.reporting-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reporting-grid article {
  min-height: 170px;
  padding: 22px;
}

.report-icon {
  margin-bottom: 4px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
  padding: 34px;
  color: #ffffff;
  background: var(--charcoal);
  border-radius: 8px;
}

.contact-section .eyebrow {
  color: var(--green);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0 46px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer p {
  margin: 0;
}

.footer-main,
.footer-links,
.footer-social {
  display: flex;
  align-items: center;
}

.footer-main {
  gap: 18px;
  flex-wrap: wrap;
}

.footer-social {
  gap: 8px;
}

.social-icon {
  width: 34px;
  height: 34px;
  color: var(--platform);
  background: #ffffff;
  border-color: var(--line);
  border-radius: 8px;
}

.social-icon:hover {
  color: #ffffff;
  background: var(--platform);
  border-color: var(--platform);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 19px;
  height: 19px;
}

.social-icon.youtube svg path:first-child {
  color: #df4a38;
  fill: currentColor;
}

.social-icon.youtube svg path:last-child {
  color: #ffffff;
  fill: currentColor;
}

.footer-links {
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  text-align: right;
}

.footer-links a {
  color: var(--charcoal);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--green-dark);
}

@media (max-width: 1080px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 24px;
  }

  .topbar-cta {
    position: absolute;
    top: 14px;
    right: 24px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .metric-strip,
  .argument-grid,
  .audience-overview,
  .audience-grid,
  .package-grid,
  .proof-grid,
  .reach-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
  }

  .brand {
    min-width: 0;
    padding-right: 118px;
  }

  .brand-logo {
    width: 150px;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav a {
    padding: 0 9px;
  }

  .hero-content,
  .section,
  .metric-strip,
  .contact-section,
  .footer {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: 650px;
    padding: 56px 16px 42px;
    background:
      linear-gradient(180deg, rgba(47, 51, 54, 0.9) 0%, rgba(47, 51, 54, 0.72) 55%, rgba(47, 51, 54, 0.48) 100%),
      url("./assets/hugp-hero-workbench.jpg") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 2.42rem;
    line-height: 1.03;
  }

  .hero-copy,
  .section-header p:not(.eyebrow),
  .contact-section p {
    font-size: 1rem;
  }

  .hero-snapshot,
  .panel,
  .profile-social-panel,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .profile-social {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }

  .metric-strip {
    margin-top: 16px;
  }

  .metric-strip,
  .argument-grid,
  .audience-overview,
  .audience-grid,
  .about-layout,
  .reach-layout,
  .funnel-steps,
  .topic-grid,
  .package-grid,
  .proof-grid,
  .reporting-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .band {
    padding-top: 64px;
  }

  .section-header h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .package {
    min-height: 0;
  }

  .contact-section .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
