:root {
  --brand-sky: #3b83be;
  --brand-navy: #002756;
  --brand-gold: #e19e20;
  --brand-mint: #e6f4f1;
  --ink: #10283e;
  --muted: #5f7181;
  --line: rgba(0, 39, 86, 0.15);
  --page: 1180px;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--ink);
  margin: 0;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

.page-width {
  margin: 0 auto;
  max-width: var(--page);
  width: calc(100% - 40px);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 39, 86, 0.12);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--page);
  min-height: 82px;
  width: calc(100% - 40px);
}

.brand-link img {
  height: auto;
  width: 265px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 720;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-sky);
}

.hero {
  background-image: url("./medien/homepage_torwarttraining.jpeg");
  background-position: center 48%;
  background-size: cover;
  color: #ffffff;
  min-height: 760px;
  position: relative;
}

.hero::after {
  background: rgba(0, 39, 86, 0.82);
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
}

.hero-overlay {
  background: rgba(0, 39, 86, 0.16);
  inset: 0;
  position: absolute;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 28px 64px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 560px);
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 760px;
  padding-bottom: 38px;
  padding-top: 132px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  grid-column: 2;
  margin: 0;
  max-width: 560px;
  padding-top: 32px;
  width: 100%;
}

.eyebrow {
  color: var(--brand-sky);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffffff;
}

.eyebrow-dark {
  color: var(--brand-navy);
}

h1 {
  font-size: 58px;
  line-height: 1.02;
  max-width: 650px;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.58;
  margin-top: 22px;
  max-width: 540px;
}

.hero-cta-block {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.button.hero-cta {
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  gap: 18px;
  min-height: 62px;
  padding: 15px 26px 15px 30px;
}

.hero-cta-arrow {
  font-size: 24px;
  line-height: 1;
  transition: transform 160ms ease;
}

.button.hero-cta:hover,
.button.hero-cta:focus-visible {
  background: #f0ad2d;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
  transform: translateY(-3px);
}

.hero-cta:hover .hero-cta-arrow,
.hero-cta:focus-visible .hero-cta-arrow {
  transform: translateX(4px);
}

.hero-cta-note {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  font-size: 13px;
  min-height: 40px;
  padding: 9px 16px;
}

.button-primary {
  background: var(--brand-navy);
  color: #ffffff;
}

.button-gold {
  background: var(--brand-gold);
  color: var(--brand-navy);
}

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

.button-outline:hover {
  background: #ffffff;
  color: var(--brand-navy);
}

.hero-audiences {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  display: flex;
  gap: 38px;
  grid-column: 2;
  grid-row: 2;
  justify-content: flex-end;
  margin-top: 0;
  padding-top: 22px;
}

.hero-audiences span {
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.section {
  padding: 92px 0;
}

.section-intro {
  background: #ffffff;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-bottom: 42px;
}

h2 {
  color: var(--brand-navy);
  font-size: 42px;
  line-height: 1.08;
}

.section-heading > p,
.app-copy > p,
.team-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.offer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px;
}

.offer-card:nth-child(2) {
  background: var(--brand-mint);
}

.offer-number {
  color: var(--brand-gold);
  font-size: 14px;
  font-weight: 850;
}

.offer-card h3 {
  color: var(--brand-navy);
  font-size: 28px;
  margin-top: 22px;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 14px;
}

.offer-card ul {
  color: var(--ink);
  display: grid;
  gap: 10px;
  line-height: 1.45;
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
}

.offer-card li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.offer-card strong {
  color: var(--brand-navy);
  margin-top: auto;
}

.concept-section {
  background: #ffffff;
  position: relative;
}

.concept-section::before {
  background: linear-gradient(
    90deg,
    var(--brand-navy) 0 34%,
    var(--brand-sky) 34% 68%,
    var(--brand-gold) 68% 100%
  );
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.concept-heading {
  margin-bottom: 34px;
}

.concept-track {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.82fr;
  overflow: hidden;
}

.concept-part {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 225px;
  padding: 30px;
}

.concept-part + .concept-part {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.concept-offensive {
  background: var(--brand-navy);
  color: #ffffff;
}

.concept-defensive {
  background: var(--brand-sky);
  color: #ffffff;
}

.concept-foundation {
  background: var(--brand-gold);
  color: var(--brand-navy);
}

.concept-label {
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  margin-bottom: auto;
  text-transform: uppercase;
}

.concept-offensive .concept-label,
.concept-defensive .concept-label {
  color: rgba(255, 255, 255, 0.72);
}

.concept-part h3 {
  color: inherit;
  font-size: 27px;
  line-height: 1.12;
}

.concept-part p {
  color: inherit;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 330px;
  opacity: 0.86;
}

.concept-method {
  align-items: center;
  background: var(--brand-mint);
  border-left: 4px solid var(--brand-gold);
  display: grid;
  gap: 10px 30px;
  grid-template-columns: 190px minmax(0, 1fr);
  margin-top: 18px;
  padding: 22px 26px;
}

.concept-method-heading {
  display: grid;
  gap: 4px;
  grid-row: 1 / span 2;
}

.concept-method-heading span {
  color: var(--brand-sky);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.concept-method-heading strong {
  color: var(--brand-navy);
  font-size: 17px;
}

.concept-steps {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.concept-steps li {
  align-items: center;
  color: var(--brand-navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 760;
}

.concept-steps li:not(:last-child)::after {
  color: var(--brand-gold);
  content: "→";
  font-size: 17px;
  margin-left: 12px;
}

.concept-method > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.app-section {
  background: var(--brand-mint);
}

.app-layout {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.app-copy h2,
.personal-copy h2,
.team-copy h2 {
  margin-bottom: 22px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.feature-list div {
  border-left: 3px solid var(--brand-gold);
  display: grid;
  gap: 4px;
  padding-left: 14px;
}

.feature-list span {
  color: var(--muted);
  font-size: 14px;
}

.app-preview {
  align-self: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 39, 86, 0.15);
  overflow: hidden;
  padding: 10px;
}

.app-preview img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.trainer-portal-section {
  background: var(--brand-navy);
  color: #ffffff;
  padding: 78px 0;
  position: relative;
}

.trainer-portal-section::before {
  background: var(--brand-gold);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 6px;
}

.trainer-portal-layout {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
}

.trainer-portal-copy .eyebrow {
  color: var(--brand-gold);
}

.trainer-portal-copy h2 {
  color: #ffffff;
  max-width: 700px;
}

.trainer-portal-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 20px;
  max-width: 760px;
}

.trainer-portal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
}

.trainer-portal-features span {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 720;
}

.trainer-portal-features span::before {
  background: var(--brand-gold);
  border-radius: 50%;
  content: "";
  height: 6px;
  margin-right: 9px;
  width: 6px;
}

.trainer-portal-actions {
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 6px 0 6px 54px;
}

.trainer-portal-actions img {
  height: 78px;
  margin-bottom: 4px;
  object-fit: contain;
  width: 78px;
}

.trainer-portal-actions .button {
  width: min(100%, 240px);
}

.trainer-portal-help {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trainer-portal-help:hover,
.trainer-portal-help:focus-visible {
  color: #ffffff;
}

.personal-section {
  background: #ffffff;
}

.personal-layout {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.portrait-frame {
  border-radius: 8px;
  max-height: 650px;
  overflow: hidden;
}

.portrait-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.large-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

blockquote {
  border-left: 4px solid var(--brand-gold);
  color: var(--brand-navy);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.4;
  margin-top: 34px;
  padding-left: 20px;
}

.team-section {
  background: #f5f9f8;
}

.team-layout {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.team-frame {
  border-radius: 8px;
  overflow: hidden;
}

.team-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.partner-section {
  background: var(--brand-mint);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 54px 0 58px;
}

.partner-section[hidden] {
  display: none;
}

.partner-heading {
  align-items: end;
  display: flex;
  gap: 36px;
  justify-content: space-between;
}

.partner-heading h2 {
  font-size: 32px;
}

.partner-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 430px;
}

.partner-marquee {
  margin: 28px auto 0;
  max-width: var(--page);
  overflow: hidden;
  width: calc(100% - 40px);
}

.partner-marquee-track {
  --partner-duration: 30s;
  animation: partner-marquee var(--partner-duration) linear infinite;
  display: flex;
  width: max-content;
}

.partner-marquee:hover .partner-marquee-track,
.partner-marquee:focus-within .partner-marquee-track {
  animation-play-state: paused;
}

.partner-marquee.is-static .partner-marquee-track,
.partner-marquee.is-static .partner-marquee-group {
  animation: none;
  justify-content: center;
  padding-right: 0;
  width: 100%;
}

.partner-marquee-group {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.partner-banner-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 39, 86, 0.12);
  border-radius: 8px;
  display: flex;
  flex: 0 0 180px;
  flex-direction: column;
  height: 108px;
  justify-content: center;
  padding: 14px;
  transition: border-color 150ms ease, transform 150ms ease;
}

a.partner-banner-item:hover,
a.partner-banner-item:focus-visible {
  border-color: var(--brand-sky);
  transform: translateY(-2px);
}

.partner-banner-logo {
  align-items: center;
  display: flex;
  height: 54px;
  justify-content: center;
  width: 100%;
}

.partner-banner-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.partner-banner-placeholder {
  color: var(--brand-navy);
  font-size: 24px;
  font-weight: 820;
}

.partner-banner-name {
  color: var(--brand-navy);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.2;
  margin-top: 8px;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.contact-section {
  background: var(--brand-navy);
  color: #ffffff;
  padding: 96px 0;
  position: relative;
}

.contact-section::before {
  background: linear-gradient(
    90deg,
    var(--brand-gold) 0 38%,
    var(--brand-sky) 38% 70%,
    var(--brand-mint) 70% 100%
  );
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy .eyebrow,
.contact-form .eyebrow {
  color: var(--brand-gold);
}

.contact-copy h2 {
  color: #ffffff;
  max-width: 560px;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.55;
  margin-top: 14px;
}

.contact-highlights {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 0;
  margin-top: 38px;
}

.contact-highlights > div {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 16px;
  grid-template-columns: 32px 1fr;
  padding: 18px 0;
}

.contact-highlights span {
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 800;
}

.contact-highlights p {
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  font-size: 14px;
  gap: 3px;
  line-height: 1.45;
}

.contact-highlights strong {
  color: #ffffff;
  font-size: 16px;
}

.contact-form {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  padding: 34px;
}

.form-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  padding-bottom: 22px;
}

.form-heading h3 {
  color: var(--brand-navy);
  font-size: 28px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #ffffff;
  border: 1px solid rgba(0, 39, 86, 0.22);
  border-radius: 7px;
  color: var(--ink);
  min-width: 0;
  padding: 12px 13px;
  width: 100%;
}

.form-field input,
.form-field select {
  min-height: 48px;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(59, 131, 190, 0.16);
  outline: none;
}

.privacy-check {
  align-items: start;
  color: var(--muted);
  display: grid;
  font-size: 12px;
  gap: 10px;
  grid-template-columns: auto 1fr;
  line-height: 1.45;
  margin-top: 20px;
}

.privacy-check input {
  accent-color: var(--brand-navy);
  height: 18px;
  margin: 0;
  width: 18px;
}

.privacy-check a {
  color: var(--brand-navy);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-submit {
  margin-top: 24px;
  min-width: 180px;
}

.form-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  margin-top: 10px;
}

.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 26px 0;
}

.footer-inner {
  align-items: center;
  display: grid;
  font-size: 13px;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.footer-inner img {
  height: 44px;
  width: 44px;
}

.footer-inner div {
  display: flex;
  gap: 18px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: #ffffff;
}

@media (max-width: 900px) {
  .header-inner {
    gap: 16px;
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .main-nav {
    display: none;
  }

  .hero::after {
    top: 34%;
    width: 100%;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 310px;
  }

  .hero-copy {
    align-self: flex-end;
    margin-left: auto;
    max-width: 590px;
    padding-top: 0;
    width: min(100%, 590px);
  }

  .hero-audiences {
    align-self: flex-end;
    max-width: 590px;
    width: min(100%, 590px);
  }

  .section-heading,
  .concept-method,
  .app-layout,
  .personal-layout,
  .team-layout,
  .trainer-portal-layout,
  .contact-layout {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .concept-track {
    grid-template-columns: 1fr;
  }

  .concept-part {
    min-height: 190px;
  }

  .concept-part + .concept-part {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .concept-method-heading {
    grid-row: auto;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
  }

  .portrait-frame {
    max-height: 620px;
    max-width: 520px;
  }

  .team-copy {
    max-width: 680px;
  }

  .trainer-portal-actions {
    align-items: flex-start;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px 0 0;
  }
}

@media (max-width: 600px) {
  .page-width,
  .header-inner {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-link img {
    width: 178px;
  }

  .header-inner > .button {
    font-size: 12px;
    min-height: 38px;
    padding: 8px 12px;
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }

  .hero {
    background-position: 32% center;
  }

  .hero::after {
    top: 42%;
  }

  .hero-inner {
    padding-bottom: 28px;
    padding-top: 350px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-cta-block {
    align-items: stretch;
    margin-top: 24px;
  }

  .button.hero-cta {
    width: 100%;
  }

  .hero-cta-note {
    text-align: center;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-audiences {
    gap: 16px;
    justify-content: space-between;
    margin-top: 40px;
  }

  .hero-audiences span {
    font-size: 11px;
  }

  .section {
    padding: 68px 0;
  }

  .partner-section {
    padding: 44px 0 48px;
  }

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

  .partner-heading h2 {
    font-size: 28px;
  }

  .partner-marquee {
    width: calc(100% - 28px);
  }

  .partner-banner-item {
    flex-basis: 154px;
  }

  .trainer-portal-section {
    padding: 64px 0;
  }

  .trainer-portal-features {
    display: grid;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .concept-part {
    min-height: 175px;
    padding: 24px;
  }

  .concept-method {
    padding: 20px;
  }

  .concept-steps {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept-steps li:not(:last-child)::after {
    content: "↓";
  }

  .offer-card {
    padding: 24px;
  }

  .app-preview {
    padding: 6px;
  }

  .personal-layout {
    gap: 32px;
  }

  blockquote {
    font-size: 20px;
  }

  .contact-section {
    padding: 72px 0;
  }

  .contact-form {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .contact-submit {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    grid-template-columns: auto 1fr;
  }

  .footer-inner div {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .partner-marquee {
    overflow-x: auto;
  }

  .partner-marquee-track {
    animation: none;
  }
}
