@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-variable-latin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --bg: #f2f2f2;
  --surface: #ffffff;
  --surface-alt: #f2f2f2;
  --primary: #2b6777;
  --primary-dark: #245866;
  --primary-soft: #c8d8e4;
  --text: #18363e;
  --muted: #52666b;
  --line: rgba(17, 17, 17, 0.08);
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
}

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

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

button:disabled {
  cursor: wait;
  opacity: .7;
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin: 1rem 0 0;
  padding: .9rem 1rem;
  border-radius: .8rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-success {
  border: 1px solid #a7d6c1;
  background: #edf8f3;
  color: #165f47;
}

.form-status.is-error {
  border: 1px solid #e3b2b2;
  background: #fff1f1;
  color: #8d2929;
}

.photo-upload-feedback {
  display: block;
  margin-top: .65rem;
  color: #8d2929;
  font-weight: 700;
}

.photo-upload-feedback[hidden] { display: none; }

@media (min-width: 761px) and (max-width: 900px) {
  .contact-page .page-hero {
    display: block;
    padding-bottom: 2.5rem;
  }

  .contact-page .page-hero-inner {
    padding-right: 0;
  }

  .contact-page .page-hero::after {
    position: relative;
    display: block;
    inset: auto;
    width: min(78vw, 650px);
    height: 360px;
    margin: 1rem auto 0;
  }

  .contact-page .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-card:last-child {
    grid-column: 1 / -1;
  }
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(43, 103, 119, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 28px rgba(43, 103, 119, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1rem;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand.logo-activated .brand-logo {
  animation: logo-activate 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand.logo-activated .brand-name {
  animation: logo-name-activate 0.48s ease;
}

@keyframes logo-activate {
  0% { transform: scale(1) rotate(0); filter: drop-shadow(0 0 0 rgba(43, 103, 119, 0)); }
  45% { transform: scale(1.2) rotate(-7deg); filter: drop-shadow(0 7px 10px rgba(43, 103, 119, 0.35)); }
  100% { transform: scale(1) rotate(0); filter: drop-shadow(0 0 0 rgba(43, 103, 119, 0)); }
}

@keyframes logo-name-activate {
  0%, 100% { transform: translateX(0); }
  45% { transform: translateX(0.18rem); }
}

.brand-logo {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 5px rgba(13, 42, 49, 0.18));
}

.brand-name {
  position: relative;
  display: inline-block;
  color: var(--text);
  font-size: 1.62rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.055em;
}

.brand-go {
  position: relative;
  display: inline-block;
  margin-left: 0.08em;
  padding-right: 0.8em;
  color: var(--primary);
  font-size: 1em;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.055em;
}

.brand-go::before {
  content: none;
}

.brand-go::after {
  content: "\2713";
  position: absolute;
  right: -0.05em;
  top: -0.38em;
  color: currentColor;
  font-size: 0.92em;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-8deg);
}

.brand-o {
  position: relative;
  display: inline-block;
}

.brand-o::after {
  content: none;
}
.site-header .brand-name {
  color: white;
}

.site-header .brand-go {
  background: transparent;
  color: white;
}

.site-header .menu {
  color: rgba(255, 255, 255, 0.86);
}

.site-header .menu a:hover,
.site-header .menu a:focus-visible {
  color: white;
}

.site-header .menu a::after {
  background: white;
}

.site-header .header-cta {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(43, 103, 119, 0.2);
}

.site-header .nav-toggle span {
  background: white;
}

.site-footer .brand-name {
  color: white;
}

.site-footer .brand-go {
  color: #2b6777;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 600;
  color: var(--muted);
}

.menu a {
  position: relative;
  transition: color 0.2s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 1.3rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--primary), #52ab98);
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(43, 103, 119, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.hero::before,
.hero::after {
  content: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: none;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 1rem;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 5.2vw, 4.75rem);
  line-height: 0.97;
  letter-spacing: -0.07em;
}

.hero h1 em {
  display: block;
  min-width: 0;
  min-height: 1em;
  color: var(--primary);
  font-style: normal;
}

h2 {
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero .lead {
  max-width: 590px;
  margin: 0;
  font-size: 1.05rem;
}

.hero-bike-stage {
  position: relative;
  min-width: 0;
  height: clamp(390px, 40vw, 520px);
  margin-top: 0;
  padding: clamp(1rem, 3vw, 2.25rem);
  overflow: visible;
  background: none;
}

.hero-bike-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 16%;
  right: 12%;
  bottom: 10%;
  height: 14px;
  border-radius: 50%;
  background: rgba(43, 103, 119, 0.12);
  filter: blur(10px);
}

.hero-bike-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 7%;
  right: 7%;
  bottom: 2%;
  height: 78%;
  border-radius: 50% 50% 1.75rem 1.75rem / 58% 58% 1.75rem 1.75rem;
  background: linear-gradient(145deg, #e5f3f1 0%, #f3f8f8 70%);
}

.hero-bike-stage .hero-bike-slide {
  position: absolute;
  inset: auto 0 4%;
  z-index: 1;
  width: 96%;
  height: 92%;
  display: block;
  object-fit: contain;
  max-width: 680px;
  margin: 0 auto;
  object-position: center;
  opacity: 0;
  transform: translateX(-28%) scale(0.92);
  transform-origin: center bottom;
  filter: drop-shadow(0 24px 18px rgba(31, 77, 88, 0.16));
  transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.22, 0.75, 0.2, 1);
}

.hero-bike-stage .hero-bike-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-bike-stage .hero-bike-slide.is-exiting {
  opacity: 0;
  transform: translateX(42%) scale(0.94);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone::before {
  content: none;
}

.site-header .header-whatsapp {
  display: grid;
  width: 34px;
  min-height: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: transparent;
  color: white;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header .header-whatsapp:hover,
.site-header .header-whatsapp:focus-visible,
.site-header .header-whatsapp:active {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
  transform: translateY(-1px);
}

.header-whatsapp::before {
  content: none;
}

.header-whatsapp svg {
  width: 23px;
  height: 23px;
  display: block;
}

.rotating-bike {
  display: inline-block;
  min-width: 7.2rem;
  min-height: 1em;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rotating-bike.is-changing {
  opacity: 0;
  transform: translateY(0.15em);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.7rem 0 1.1rem;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.2rem;
  color: #2b6777;
  font-weight: 800;
}

.hero-text-link span {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.hero-text-link:hover span {
  transform: translateX(0.25rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #52ab98);
  color: white;
  box-shadow: 0 16px 32px rgba(43, 103, 119, 0.24);
}

.btn-secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

#bike-form {
  scroll-margin-top: 110px;
}

.hero-form-wrap {
  position: relative;
}

.form-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: linear-gradient(180deg, #f4f9fa 0%, #ffffff 100%);
  border-top: 1px solid rgba(43, 103, 119, 0.1);
  scroll-margin-top: 88px;
}

.form-shell {
  max-width: 980px;
}

.form-section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.form-section-intro h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.form-section-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.form-section .hero-form-wrap {
  width: 100%;
  margin: 0 auto;
}

.form-section .lead-card {
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2.5rem);
  border-radius: 1.4rem;
  box-shadow: 0 24px 70px rgba(31, 77, 88, 0.12);
}

.form-section .lead-card > .card-topline,
.form-section .lead-card > h2,
.form-section .lead-card > .form-hint {
  text-align: center;
}

.form-section .form-progress {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.form-section .form-step {
  width: min(840px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.homepage-photo-note {
  max-width: 760px;
  margin: 1.25rem auto 0;
  padding: 0 0.25rem;
}

.homepage-photo-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.homepage-photo-note strong {
  color: var(--ink);
  font-weight: 650;
}

.lead-card {
  position: relative;
  background: #fff;
  border: 1px solid #c8d8e4;
  border-radius: 0.9rem;
  padding: 1.65rem;
  box-shadow: 0 18px 48px rgba(43, 103, 119, 0.09);
}

.card-topline {
  margin: 0 0 0.55rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.form-hint {
  margin: -0.4rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.form-progress {
  display: flex;
  align-items: center;
  margin: 1.1rem 0 1.3rem;
}

.form-progress span {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border-radius: 50%;
  background: #eee;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-progress span.active {
  background: var(--primary);
  color: white;
}

.form-progress i {
  height: 2px;
  flex: 1;
  background: #e4e4e4;
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: grid;
  gap: 1rem;
}

.form-step legend {
  margin-bottom: 1rem;
  padding: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.step-help,
.form-safe {
  margin: -0.5rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-actions {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0.75rem;
}

.form-actions .btn {
  width: 100%;
}

.form-safe {
  text-align: center;
}

.privacy-check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.privacy-check input {
  width: 1.05rem !important;
  min-height: 1.05rem !important;
  margin-top: 0.12rem;
  accent-color: var(--primary);
}

.privacy-check a {
  color: var(--primary);
  text-decoration: underline;
}

.frame-height-field[hidden] {
  display: none !important;
}

.brand-other-field[hidden] {
  display: none !important;
}

.field-note {
  color: var(--muted);
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  line-height: 1.4;
}

.form-bike-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.form-bike-type-card,
.choice-card,
.condition-card {
  position: relative;
  cursor: pointer;
}

.form-bike-type-card {
  min-height: 158px;
  place-items: center;
  align-content: center;
  gap: 0.25rem !important;
  padding: 0.65rem 0.35rem;
  border: 1.5px solid var(--line);
  border-radius: 0.85rem;
  background: #fff;
  color: var(--text) !important;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.form-bike-type-card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 103, 119, 0.48);
  box-shadow: 0 9px 20px rgba(43, 103, 119, 0.09);
}

.form-bike-type-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 0 0 3px rgba(43, 103, 119, 0.1);
}

.form-bike-type-card input,
.choice-card input,
.condition-card input {
  position: absolute;
  width: 1px !important;
  height: 1px;
  min-height: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.bike-type-icon {
  display: block;
  width: min(156px, 96%);
  height: 94px;
  object-fit: contain;
  object-position: center;
}

.form-bike-type-card strong {
  font-size: 0.82rem;
  line-height: 1.2;
}

.form-bike-type-other {
  min-height: 158px;
  padding: 1rem;
}

.form-bike-type-other strong {
  max-width: 9rem;
  font-size: 1rem;
}

.conditional-title {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.ebike-fields {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(43, 103, 119, 0.2);
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(43, 103, 119, 0.06), rgba(82, 171, 152, 0.08));
}

.ebike-fields[hidden],
.damage-details[hidden] {
  display: none !important;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.choice-card {
  display: block !important;
  padding: 0.7rem 0.8rem;
  border: 1.5px solid var(--line);
  border-radius: 0.7rem;
  background: #fff;
  color: var(--text) !important;
  text-align: center;
}

.choice-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.condition-grid {
  display: grid;
  gap: 0.6rem;
}

.condition-card {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem !important;
  padding: 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 0.8rem;
  background: #fff;
  color: var(--text) !important;
}

.condition-card:hover,
.condition-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.condition-card:has(input:checked) {
  box-shadow: 0 0 0 3px rgba(43, 103, 119, 0.09);
}

.condition-card span:last-child {
  display: grid;
  gap: 0.12rem;
}

.condition-card small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
}

.condition-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(35, 72, 84, 0.06);
}

.condition-dot.excellent { background: #2f9c75; }
.condition-dot.good { background: #83ad48; }
.condition-dot.repair { background: #d69b37; }
.condition-dot.damaged { background: #c95f59; }

.damage-details {
  padding: 0.85rem;
  border-radius: 0.8rem;
  background: #fff7eb;
}

.damage-details > small {
  color: var(--muted);
}

@media (max-width: 560px) {
  .form-section-intro {
    text-align: center;
  }

  .form-bike-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-bike-type-card {
    min-height: 144px;
  }

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

  .form-actions .form-back {
    order: 2;
  }
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.lead-form label small,
.field-title {
  font-size: 0.76rem;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 0.7rem;
  padding: 0.8rem 0.9rem;
  color: var(--text);
}

.lead-form select {
  appearance: auto;
  -webkit-appearance: menulist;
  padding-right: 0.55rem;
  cursor: pointer;
}

.lead-form textarea {
  resize: vertical;
}

.photo-field {
  display: grid;
  gap: 0.55rem;
}

.photo-upload-area {
  display: grid;
  gap: 0.75rem;
  padding: 0.65rem;
  border: 1.5px dashed rgba(43, 103, 119, 0.35);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 160ms ease, background 160ms ease;
}

.photo-upload-area:hover,
.photo-upload-area:focus-within {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.field-title {
  color: var(--muted);
}

.photo-upload {
  display: flex !important;
  flex-direction: column;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 0.25rem !important;
  padding: 0.75rem;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: var(--text) !important;
  text-align: center;
  cursor: pointer;
}

.photo-upload:hover {
  background: rgba(255, 255, 255, 0.56);
}

.photo-upload-area:has(.photo-preview:not([hidden])) .photo-upload {
  min-height: 64px;
}

.photo-upload-icon {
  color: var(--primary);
  font-size: 1.7rem;
  line-height: 1;
}

.photo-upload small,
.photo-tip {
  color: var(--muted);
}

.photo-input {
  position: absolute;
  width: 1px !important;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, 96px);
  justify-content: center;
  gap: 0.65rem;
  padding: 0 0.2rem 0.25rem;
}

.photo-preview[hidden] {
  display: none;
}

.photo-preview-item {
  position: relative;
  width: 96px;
  height: 96px;
  min-width: 0;
}

.photo-preview-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: 100%;
  object-fit: cover;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
}

@media (max-width: 480px) {
  .photo-preview {
    grid-template-columns: repeat(auto-fill, 82px);
  }

  .photo-preview-item {
    width: 82px;
    height: 82px;
  }
}

.photo-remove {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(25, 48, 55, 0.88);
  color: #fff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
  font: 700 1.15rem/1 Arial, sans-serif;
  cursor: pointer;
}

.photo-remove:hover,
.photo-remove:focus-visible {
  background: #b84848;
}

.photo-tip {
  margin: 0;
  font-size: 0.76rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.full {
  width: 100%;
  margin-top: 0.35rem;
}

.benefits,
.steps,
.faq {
  padding: 4rem 0;
}

.bike-showcase {
  padding: 2rem 0 4.5rem;
}

.bike-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  overflow: hidden;
  border-radius: 1.7rem;
  background: #2b6777;
  color: white;
  box-shadow: 0 24px 60px rgba(43, 103, 119, 0.2);
}

.bike-showcase-image {
  min-height: 390px;
  overflow: hidden;
}

.bike-showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
  object-position: center 58%;
}

.bike-showcase-copy {
  padding: 2.5rem;
}

.bike-showcase-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.bike-showcase-copy .text-link {
  color: white;
}

.sustainability {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #fff;
}

.sustainability::before {
  content: none;
}

.sustainability-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 0;
  min-height: 430px;
  overflow: hidden;
  border-radius: 1.4rem;
  background: #183e48;
  box-shadow: 0 22px 55px rgba(24, 62, 72, 0.16);
}

.sustainability-photo {
  min-height: 430px;
  margin: 0;
}

.sustainability-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sustainability-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  padding: clamp(2rem, 4vw, 3.75rem);
  background: transparent;
  color: #fff;
}

.sustainability-copy::after {
  content: none;
}

.sustainability .eyebrow {
  color: #85d8c8;
}

.sustainability-copy h2 {
  max-width: 480px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
}

.sustainability-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.sustainability-copy .text-link {
  margin-top: 1.35rem;
  color: #fff;
}

.reuse-list {
  display: grid;
  align-content: center;
  padding: 0;
}

.reuse-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.9rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(43, 103, 119, 0.11);
}

.reuse-item:last-child {
  border-bottom: 0;
}

.reuse-item i {
  width: 9px;
  height: 9px;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: #52ab98;
}

.reuse-item i::before {
  content: none;
}

.reuse-item h3 {
  margin-bottom: 0.35rem;
  color: #2b6777;
  font-size: 1.18rem;
  letter-spacing: -0.035em;
}

.reuse-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header.centered {
  text-align: center;
}

.section-header .section-intro {
  max-width: 650px;
  margin: 0.7rem auto 0;
  color: var(--muted);
}

.benefit-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.benefit-card,
.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1.4rem;
  box-shadow: 0 8px 22px rgba(24, 54, 62, 0.035);
}

.benefit-card {
  padding: 1.35rem 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.step-illustration {
  display: grid;
  place-items: center;
  flex: 0 0 13rem;
  min-width: 0;
  min-height: 0;
  height: 13rem;
  margin: -0.65rem -0.65rem 1rem;
  overflow: hidden;
}

.step-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .step-illustration img {
    transition: none;
  }
}

.icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--primary-soft);
  margin-bottom: 1rem;
}

.icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3,
.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.benefit-card p,
.step-card p,
.value-copy p,
.faq-list p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}

.step-label {
  margin: 0 0 0.45rem;
  color: var(--primary) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.step-list li::before {
  content: "\2713";
  margin-right: 0.5rem;
  color: var(--primary);
}

.value {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.value-visual {
  overflow: visible;
  background: transparent;
}

.value-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  filter: drop-shadow(0 1.4rem 2rem rgba(18, 53, 61, 0.12));
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(43, 103, 119, 0.14);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 8px 28px rgba(24, 54, 62, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-list details[open] {
  border-color: rgba(43, 103, 119, 0.38);
  box-shadow: 0 14px 38px rgba(43, 103, 119, 0.1);
  transform: translateY(-1px);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 4rem 1.15rem 1.3rem;
  font-weight: 750;
  color: var(--text);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--primary);
  color: white;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 4rem 1.25rem 1.3rem;
  color: var(--muted);
}
.site-footer {
  background: #2b6777;
  color: white;
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(130px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.25rem;
}

.footer-brand {
  max-width: 270px;
}

.site-footer .brand {
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer h3 {
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer .footer-links-wide ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
}

.legal-hero {
  padding: 5.5rem 0 3.5rem;
  background: linear-gradient(135deg, #e8f0f2, #f8fbfb);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-hero p:last-child {
  max-width: 700px;
  color: var(--muted);
}

.legal-content {
  padding: 4.5rem 0 6rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 0.65rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.legal-nav strong {
  margin-bottom: 0.35rem;
}

.legal-nav a,
.legal-copy a {
  color: var(--primary);
}

.legal-copy h2 {
  margin: 2.25rem 0 0.65rem;
  font-size: 1.4rem;
  line-height: 1.25;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--muted);
}

.legal-alert {
  margin: 1.5rem 0 2.25rem;
  padding: 1.2rem 1.35rem;
  border-left: 4px solid #d39b2a;
  border-radius: 0.75rem;
  background: #fff8e8;
}

.legal-alert p {
  margin: 0.35rem 0 0;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-footer .footer-links-wide ul {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 7vw, 4.2rem);
  }

  .hero-bike-stage {
    height: 360px;
    margin-right: -2rem;
    padding: 0;
  }

  .hero-bike-stage img {
    transform: scale(1.08);
  }
}

@media (max-width: 760px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 980px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .step-illustration {
    flex-basis: clamp(12rem, 29vw, 16rem);
    height: clamp(12rem, 29vw, 16rem);
  }

  .hero-inner,
  .value-grid,
  .sustainability-panel {
    grid-template-columns: 1fr;
  }

  .sustainability-copy {
    min-height: 0;
  }

  .sustainability-photo,
  .sustainability-photo img {
    min-height: 320px;
    height: 320px;
  }

  .hero {
    padding-top: 3.5rem;
    background: #ffffff;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-bike-stage {
    height: 300px;
    margin-right: 0;
    overflow: hidden;
  }

  .hero-form-wrap {
    width: min(660px, 100%);
    margin: 0 auto;
  }

  .bike-showcase-copy {
    padding: 2rem;
  }

}

@media (max-width: 760px) {
  .menu {
    position: absolute;
    top: 80px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(43, 103, 119, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-contact {
    margin-left: auto;
  }

  .header-contact .header-phone {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
  }

  .header-contact .header-phone::before {
    content: "\260E";
    font-size: 0.9rem;
  }

  .header-contact .header-whatsapp {
    display: grid;
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .field-row,
  .benefit-grid,
  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
    display: grid;
  }

  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .hero {
    padding: 2.75rem 0 2.25rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .hero-cta-row {
    align-items: stretch;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .step-card {
    padding: 1.1rem;
    border-radius: 1.05rem;
  }

  .step-illustration {
    flex-basis: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    margin: -0.2rem 0 1rem;
    padding: 0.4rem 0.55rem;
    border-radius: 0.7rem;
    background: linear-gradient(180deg, #f7fbfb, #fff);
  }

  .step-card h3 {
    font-size: 1.35rem;
  }

  .bike-showcase-grid,
  .sustainability-panel {
    border-radius: 1.1rem;
  }

  .bike-showcase-copy,
  .sustainability-copy {
    padding: 1.6rem 1.25rem 1.8rem;
  }

  .faq-list summary {
    padding: 1rem 3.25rem 1rem 1rem;
  }

  .faq-list p {
    padding: 0 1rem 1rem;
  }

  .site-footer {
    text-align: left;
  }

  .sustainability {
    padding: 3.5rem 0;
  }

  .sustainability-copy {
    padding: 1.8rem 1.35rem 2rem;
  }

  .sustainability-photo,
  .sustainability-photo img {
    min-height: 240px;
    height: 240px;
  }

  .reuse-item {
    grid-template-columns: 24px 1fr;
    gap: 0.8rem;
  }

  .reuse-item i {
    width: 9px;
  }

  .hero-bike-stage {
    height: clamp(205px, 57vw, 270px);
    margin: 0.25rem -1rem -0.35rem;
    padding: 0;
  }

  .hero {
    padding: 2.1rem 0 0;
    background: linear-gradient(180deg, #fff 0%, #fff 68%, #edf7f6 100%);
  }

  .hero h1 {
    max-width: 540px;
    margin-bottom: 0.85rem;
    font-size: clamp(2.65rem, 12.5vw, 3.65rem);
    line-height: 0.96;
  }

  .hero h1 .rotating-bike {
    font-size: 0.84em;
  }

  .hero .lead {
    max-width: 36rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-bike-stage::before {
    left: 8%;
    right: 8%;
    height: 18px;
  }

  .hero-bike-stage img {
    width: 96%;
    max-width: none;
    filter: drop-shadow(0 18px 15px rgba(31, 77, 88, 0.2));
  }

  .hero-bike-stage:hover img {
    transform: none;
  }

  .hero-bike-stage::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -18%;
    bottom: -42%;
    left: -18%;
    height: 85%;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(180deg, rgba(82, 171, 152, 0.14), rgba(82, 171, 152, 0));
  }

  .hero-cta-row {
    margin: 1.25rem 0 0.25rem;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .hero-text-link {
    display: none;
  }

  .hero .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .lead-card {
    padding: 1.25rem 1rem 1.35rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .rotating-bike {
    transition: none;
  }

  .brand.logo-activated .brand-logo,
  .brand.logo-activated .brand-name {
    animation: none;
  }
}

/* Inhalts-, Standort- und Ratgeberseiten */
.page-main {
  min-height: 65vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(145deg, #fff 0%, #f2f2f2 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: max(1rem, calc((100vw - 1180px) / 2));
  bottom: 2rem;
  width: min(38vw, 520px);
  border-radius: 1.5rem;
  background: url("assets/bikego-gravel-hero-clean.webp") center / cover no-repeat;
  box-shadow: 0 20px 50px rgba(43, 103, 119, 0.16);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding-right: min(38vw, 470px);
}

.page-hero-inner h1,
.page-hero-inner > p:not(.eyebrow):not(.article-meta) {
  max-width: 680px;
}

.contact-page .page-hero {
  min-height: 540px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #f4f8f8 0%, #fff 64%);
}

.contact-page .page-hero::after {
  top: 1.25rem;
  bottom: 1.25rem;
  width: min(47vw, 670px);
  border: 0;
  border-radius: 0;
  background: url("assets/bikego-contact-bike-clean.webp") center / 90% auto no-repeat;
  filter: drop-shadow(0 28px 34px rgba(28, 65, 74, 0.16));
  box-shadow: none;
}

.contact-page .page-hero-inner {
  padding-right: min(47vw, 580px);
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.contact-card {
  position: relative;
  min-height: 270px;
  padding: 2rem;
  overflow: hidden;
}

.contact-card h2 {
  max-width: 12ch;
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.contact-card-number {
  position: absolute;
  top: 1.6rem;
  right: 1.7rem;
  color: rgba(43, 103, 119, 0.22);
  font-size: 2.35rem;
  font-weight: 900;
}

.contact-card-primary {
  border-color: transparent;
  background: var(--primary);
  color: #fff;
}

.contact-card-primary .eyebrow,
.contact-card-primary p,
.contact-card-primary .text-link {
  color: #fff;
}

.contact-card-primary .contact-card-number {
  color: rgba(255, 255, 255, 0.2);
}

.contact-prep {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-prep > div {
  max-width: 760px;
}

.contact-prep h2 {
  margin: 0.35rem 0 0.75rem;
}

.contact-prep p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .contact-page .page-hero {
    display: block;
    padding-bottom: 2rem;
  }

  .contact-page .page-hero-inner {
    padding-right: 0;
  }

  .contact-page .page-hero::after {
    position: relative;
    display: block;
    inset: auto;
    width: min(calc(100% - 2rem), 700px);
    height: 270px;
    margin: 1.25rem auto 0;
    background-position: center;
    filter: drop-shadow(0 18px 24px rgba(28, 65, 74, 0.14));
  }

  .contact-hero-actions,
  .contact-prep {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-hero-actions {
    gap: 1rem;
  }

  .contact-hero-actions .btn,
  .contact-prep .btn {
    width: 100%;
    text-align: center;
  }
}

.about-page .page-hero {
  min-height: 570px;
  display: flex;
  align-items: center;
  background: #c8d8e4 url("assets/bikego-oesterreich.webp") center 68% / cover no-repeat;
}

.about-page .page-hero::after {
  display: none;
}

.about-page .page-hero .eyebrow {
  display: none;
}

.about-page .page-hero-inner {
  padding-right: 0;
  padding-left: 50%;
}

.about-page .page-hero-inner > * {
  position: relative;
}

.about-page .page-hero-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2.2rem;
  right: -2rem;
  bottom: -2.2rem;
  left: 47%;
  border: 1px solid rgba(43, 103, 119, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 252, 249, 0.94);
  box-shadow: 0 20px 60px rgba(43, 103, 119, 0.1);
  backdrop-filter: blur(8px);
}

.about-page .page-hero p:not(.eyebrow) {
  color: #23464f;
}

.about-bike-feature {
  padding: 1rem 0 5.5rem;
  background: #fff;
}

.about-bike-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(43, 103, 119, 0.1);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #edf4f5, #fff);
  box-shadow: 0 24px 60px rgba(43, 103, 119, 0.1);
}

.about-bike-image {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #fff;
}

.about-bike-image img {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.about-bike-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.about-bike-copy h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-bike-copy p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 800px) {
  .about-bike-card {
    grid-template-columns: 1fr;
  }

  .about-bike-image img {
    max-height: 280px;
  }
}

.impact-section {
  position: relative;
  isolation: isolate;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2b6777 0%, #2b6777 100%);
  color: white;
}

.impact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80px;
  right: -70px;
  width: 560px;
  height: 440px;
  background: repeating-linear-gradient(135deg, transparent 0 38px, rgba(255, 255, 255, 0.09) 38px 48px, transparent 48px 68px);
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
}

.impact-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -120px;
  left: -100px;
  width: 480px;
  height: 320px;
  background: repeating-linear-gradient(135deg, transparent 0 30px, rgba(255, 255, 255, 0.055) 30px 38px, transparent 38px 58px);
  clip-path: polygon(0 0, 100% 24%, 76% 100%, 0 76%);
}

.impact-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.impact-intro .eyebrow {
  color: #52ab98;
}

.impact-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.environment-callout {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.15rem;
  align-items: center;
  max-width: 680px;
  margin-top: 1.75rem;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(102, 209, 189, 0.3);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.09);
}

.environment-callout strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.environment-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.leaf-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 80% 12% 80% 12%;
  background: linear-gradient(145deg, #66d1bd, #52ab98);
  transform: rotate(-12deg);
}

.leaf-mark::after {
  content: "";
  position: absolute;
  left: 11px;
  bottom: 10px;
  width: 29px;
  height: 2px;
  border-radius: 999px;
  background: rgba(24, 54, 62, 0.65);
  transform: rotate(-42deg);
  transform-origin: left center;
}

@media (max-width: 540px) {
  .environment-callout {
    grid-template-columns: 1fr;
  }
}

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

.environment-photo {
  position: relative;
  overflow: hidden;
  margin: 0 0 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.4rem;
  box-shadow: 0 24px 55px rgba(13, 42, 49, 0.28);
}

.environment-photo img {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 470px);
  object-fit: cover;
}

.environment-photo figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 410px;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.85rem;
  background: rgba(24, 54, 62, 0.82);
  color: white;
  font-size: 0.92rem;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.about-page .environment-photo figcaption {
  display: none;
}

@media (max-width: 600px) {
  .environment-photo figcaption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }
}

.impact-card {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.3rem;
  background: rgba(43, 103, 119, 0.34);
}

.impact-card.featured {
  transform: translateY(-1rem);
  background: rgba(255, 255, 255, 0.12);
}

.impact-number {
  display: block;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.75);
}

.impact-card a,
.research-note a {
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.research-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  background: white;
  color: var(--text);
}

.research-note p {
  margin: 0;
  color: var(--muted);
}

.research-note a {
  color: var(--primary-dark);
}

.about-page main > .content-section:not(.tint) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-page main > .content-section:not(.tint)::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -100px;
  width: 430px;
  height: 300px;
  background: repeating-linear-gradient(135deg, transparent 0 34px, rgba(43, 103, 119, 0.06) 34px 43px, transparent 43px 63px);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.about-page .values-grid .city-card {
  position: relative;
  overflow: hidden;
}

.about-page .values-grid .city-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -24px;
  width: 130px;
  height: 90px;
  background: repeating-linear-gradient(135deg, transparent 0 11px, rgba(43, 103, 119, 0.08) 11px 15px, transparent 15px 23px);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  pointer-events: none;
}

.about-page .page-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-page .page-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -70px auto auto 5%;
  width: 420px;
  height: 280px;
  background: repeating-linear-gradient(135deg, transparent 0 27px, rgba(255, 255, 255, 0.1) 27px 35px, transparent 35px 52px);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.about-page .page-cta::before {
  display: none;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.content-section {
  padding: 4.5rem 0;
}

.content-section.tint {
  background: #f2f2f2;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 2.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose li + li {
  margin-top: 0.45rem;
}

.info-card,
.city-card,
.article-card,
.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: white;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.05);
}

.info-card {
  position: sticky;
  top: 105px;
}

.info-card ul {
  padding-left: 1.15rem;
  color: var(--muted);
}

.city-grid,
.article-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.city-card h3,
.article-card h3 {
  font-size: 1.45rem;
}

.city-card p,
.article-card p,
.contact-card p {
  color: var(--muted);
}

.article-card {
  overflow: hidden;
}

.article-card-image {
  display: block;
  width: calc(100% + 3rem);
  height: 220px;
  margin: -1.5rem -1.5rem 1.35rem;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card:hover .article-card-image {
  transform: scale(1.035);
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.article-meta {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-cta {
  padding: 4.5rem 0;
  background: #f2f2f2;
  color: white;
  text-align: center;
}

.page-cta .container {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 980px;
  padding: 3.6rem 2rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, #2b6777 0%, #2b6777 100%);
  box-shadow: 0 24px 60px rgba(43, 103, 119, 0.2);
}

.page-cta .container::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80px;
  left: -40px;
  width: 330px;
  height: 270px;
  opacity: 0.6;
  background: repeating-linear-gradient(135deg, transparent 0 31px, rgba(255, 255, 255, 0.1) 31px 39px, transparent 39px 57px);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.page-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.page-cta .btn {
  background: white;
  color: var(--primary-dark);
}

.guide-page .page-hero {
  min-height: 590px;
  display: flex;
  align-items: center;
  background: #f2f2f2 url("assets/bikego-ratgeber-3d-petrol.webp") center / cover no-repeat;
}

.guide-page .page-hero::after {
  display: none;
}

.guide-page .page-hero-inner {
  padding-right: 52%;
}

.guide-page .page-hero-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2rem 49% -2rem -2rem;
  border: 1px solid rgba(43, 103, 119, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 22px 60px rgba(43, 103, 119, 0.12);
  backdrop-filter: blur(8px);
}

.guide-page .page-hero p:not(.eyebrow):not(.article-meta) {
  color: #23464f;
}

.blog-page .page-hero {
  min-height: 540px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.blog-photo-page .page-hero { background-image: url("assets/blog-bike-fotografieren.webp"); }
.blog-value-page .page-hero { background-image: url("assets/blog-fahrradwert.webp"); }
.blog-sale-page .page-hero { background-image: url("assets/blog-privat-direkt.webp"); }

.blog-page .page-hero::after {
  display: none;
}

.blog-page .page-hero-inner {
  padding-right: 50%;
}

.blog-page .page-hero-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2rem 47% -2rem -2rem;
  border-radius: 1.35rem;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 22px 60px rgba(43, 103, 119, 0.14);
  backdrop-filter: blur(8px);
}

.blog-page .page-hero p:not(.eyebrow):not(.article-meta) {
  color: #23464f;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .content-grid,
  .city-grid,
  .article-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    position: static;
  }

  .page-hero::after {
    display: none;
  }

  .page-hero-inner {
    padding-right: 0;
  }

  .bike-showcase-grid {
    grid-template-columns: 1fr;
  }

  .bike-showcase-image,
  .bike-showcase-image img {
    min-height: 260px;
  }

  .about-page .page-hero {
    min-height: auto;
    background-position: 30% 68%;
  }

  .about-page .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 248, 244, 0.82);
  }

  .about-page .page-hero-inner {
    padding-right: 0;
    padding-left: 0;
  }

  .about-page .page-hero-inner::before {
    right: -0.75rem;
    left: -0.75rem;
  }

  .impact-grid,
  .research-note {
    grid-template-columns: 1fr;
  }

  .impact-card.featured {
    transform: none;
  }

  .guide-page .page-hero {
    min-height: auto;
    background-position: 64% center;
  }

  .guide-page .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 250, 246, 0.84);
  }

  .guide-page .page-hero-inner {
    padding-right: 0;
  }

  .guide-page .page-hero-inner::before {
    inset: -1.2rem -0.75rem;
  }

  .blog-page .page-hero {
    min-height: auto;
  }

  .blog-page .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 250, 246, 0.82);
  }

  .blog-page .page-hero-inner {
    padding-right: 0;
  }

  .blog-page .page-hero-inner::before {
    inset: -1.2rem -0.75rem;
  }
}

@media (max-width: 760px) {
  .header-contact .header-phone span {
    display: none;
  }
}

/* BikeGo petrol colour theme. */
.bike-types { padding: 5.5rem 0; background: #f4f8f8; }
.bike-brands { padding: 5.5rem 0; background: #fff; }
.bike-brands .section-header > p:last-child { max-width: 760px; margin: .8rem auto 0; color: #45636b; }
.bike-types .section-header > p:last-child { max-width: 720px; margin: .8rem auto 0; color: #45636b; }
.bike-type-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; margin-top: 2.4rem; }
.bike-type-card { overflow: hidden; border: 1px solid rgba(43,103,119,.12); border-radius: 1.25rem; background: #fff; color: var(--primary-dark); text-decoration: none; box-shadow: 0 14px 35px rgba(30,69,79,.08); transition: transform .2s ease, box-shadow .2s ease; }
.bike-type-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(30,69,79,.14); }
.bike-type-card img { display: block; width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.bike-type-card span { display: block; padding: 1rem 1.1rem 1.2rem; }
.bike-type-card strong { display: block; font-size: 1.08rem; }
.bike-type-card small { display: block; margin-top: .35rem; color: #5b747b; font-size: .86rem; }
.type-page { background: #fbfdfd; }
.type-hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; background: #eaf1f2; }
.type-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.type-hero-image.type-hero-icon { object-fit: contain; object-position: 82% center; padding: 3rem 4% 3rem 52%; background: linear-gradient(135deg,#f8fbfb,#e8f3f4); }
@media (max-width: 760px) { .type-hero-image.type-hero-icon { object-position: center; padding: 2rem 7%; opacity: .2; } }

.type-page .type-hero,
.location-page .page-hero {
  background: linear-gradient(180deg,#fff,#f7fbfb);
}

.type-page .type-hero-copy,
.location-page .page-hero-inner {
  text-wrap: pretty;
}

.landing-faq {
  padding: clamp(4rem,7vw,6.5rem) 0;
  background: #f7fbfb;
  border-top: 1px solid rgba(43,103,119,.09);
}

.landing-faq .container {
  display: grid;
  grid-template-columns: minmax(240px,.72fr) minmax(0,1.28fr);
  gap: clamp(2rem,6vw,5.5rem);
  align-items: start;
}

.landing-faq-intro {
  position: sticky;
  top: 110px;
}

.landing-faq-intro h2 {
  margin-bottom: .8rem;
  font-size: clamp(2rem,3.4vw,3.25rem);
}

.landing-faq-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.landing-faq-list {
  display: grid;
  gap: .75rem;
}

.landing-faq-list details {
  overflow: hidden;
  border: 1px solid rgba(43,103,119,.16);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 26px rgba(31,77,88,.055);
}

.landing-faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  color: var(--text);
  font-weight: 780;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.landing-faq-list summary::-webkit-details-marker { display: none; }
.landing-faq-list summary span { position: relative; width: 22px; height: 22px; border-radius: 50%; background: var(--primary-soft); }
.landing-faq-list summary span::before,
.landing-faq-list summary span::after { content:""; position:absolute; top:50%; left:50%; width:10px; height:2px; border-radius:2px; background:var(--primary); transform:translate(-50%,-50%); }
.landing-faq-list summary span::after { transform:translate(-50%,-50%) rotate(90deg); transition:transform .18s ease; }
.landing-faq-list details[open] summary span::after { transform:translate(-50%,-50%) rotate(0); }
.faq-answer { padding: 0 1.2rem 1.2rem; }
.faq-answer p { margin: 0; color: var(--muted); line-height: 1.72; }

@media (max-width: 760px) {
  .landing-faq .container { grid-template-columns: 1fr; }
  .landing-faq-intro { position: static; }
  .landing-faq-list summary { padding: 1rem; }
  .faq-answer { padding: 0 1rem 1rem; }
}
.type-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(250,253,253,.98) 0%, rgba(250,253,253,.94) 38%, rgba(250,253,253,.25) 62%, transparent 78%); }
.type-hero .container { position: relative; z-index: 1; width: 100%; }
.type-hero-copy { max-width: 600px; padding: 5rem 0; }
.type-hero h1 { margin: .5rem 0 1rem; font-size: clamp(2.5rem,5vw,4.7rem); line-height: .98; color: #163f4b; }
.type-hero .lead { max-width: 590px; color: #3f5f67; }
.type-hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.7rem; }
.type-quickfacts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.type-quickfacts div { padding: .9rem 1rem; border-left: 3px solid #54b8a6; background: rgba(255,255,255,.72); }
.type-quickfacts strong,.type-quickfacts span { display:block; }
.type-quickfacts span { margin-top:.2rem; color:#587078; font-size:.82rem; }
.type-section { padding: 5rem 0; }
.type-section.alt { background: #edf5f5; }
.type-layout { display:grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items:start; }
.type-copy h2 { color:#194653; font-size:clamp(2rem,3vw,3rem); margin:.4rem 0 1rem; }
.type-copy p { color:#4c676e; }
.type-checklist { display:grid; gap:.8rem; margin:1.4rem 0 0; padding:0; list-style:none; }
.type-checklist li { position:relative; padding:1rem 1rem 1rem 3rem; border-radius:.9rem; background:#fff; box-shadow:0 8px 24px rgba(32,80,90,.07); color:#294e57; }
.type-checklist li::before { content:"✓"; position:absolute; left:1rem; top:.85rem; color:#2d8e7d; font-weight:900; font-size:1.2rem; }
.type-detail-card { padding:1.7rem; border-radius:1.25rem; background:#214e5a; color:#fff; }
.type-detail-card h3 { margin-top:0; font-size:1.45rem; }
.type-detail-card p { color:rgba(255,255,255,.78); }
.type-detail-card dl { margin:1.2rem 0 0; }.type-detail-card dt { margin-top:.9rem; color:#79d5c2; font-weight:800; }.type-detail-card dd { margin:.2rem 0 0; color:rgba(255,255,255,.9); }
.type-related { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:1.8rem; }
.type-related a { padding:1.1rem; border:1px solid rgba(43,103,119,.15); border-radius:1rem; background:#fff; color:#245766; font-weight:800; text-decoration:none; }
.type-related a:hover { border-color:#48aa98; }
@media(max-width:900px){.bike-type-grid{grid-template-columns:repeat(2,1fr)}.type-hero{min-height:auto}.type-hero::after{background:rgba(250,253,253,.86)}.type-hero-image{object-position:65% center}.type-layout{grid-template-columns:1fr}.type-quickfacts{grid-template-columns:1fr}.type-related{grid-template-columns:1fr}}
@media(max-width:580px){.bike-type-grid{grid-template-columns:1fr}.type-hero-copy{padding:4rem 0}.type-hero h1{font-size:2.6rem}}

.site-header .brand-go,
.site-footer .brand-go {
  background: transparent;
  color: #66d1bd;
}

/* Static landing-page heroes use extra safety space and never animate. */
.landing-home-hero .hero-bike-stage .landing-static-bike,
.landing-home-hero .hero-bike-stage .landing-static-bike.is-active,
.landing-home-hero .hero-bike-stage:hover .landing-static-bike {
  width: 88%;
  height: 88%;
  max-width: 620px;
  bottom: 6%;
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .landing-home-hero .hero-bike-stage .landing-static-bike,
  .landing-home-hero .hero-bike-stage .landing-static-bike.is-active {
    width: 86%;
    height: 86%;
    bottom: 7%;
  }
}

@media (max-width: 760px) {
  .landing-home-hero .hero-bike-stage .landing-static-bike,
  .landing-home-hero .hero-bike-stage .landing-static-bike.is-active {
    width: 90%;
    height: 90%;
    bottom: 5%;
  }
}

/* Kontaktseite – klarer Zweispalten-Aufbau nach dem AutoGo-Prinzip. */
.contact-main {
  background: #f3f7f7;
}

.contact-intro {
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.contact-intro h1 {
  margin: 0.3rem 0 1rem;
  font-size: clamp(3rem, 7vw, 6.4rem);
  letter-spacing: -0.065em;
}

.contact-intro > .container > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.contact-hub-section {
  padding: 0 0 clamp(4.5rem, 8vw, 7rem);
}

.contact-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  max-width: 1120px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(43, 103, 119, 0.12);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 28px 80px rgba(26, 66, 76, 0.13);
}

.contact-hub-details {
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(150deg, #173f49 0%, #2b6777 100%);
  color: #fff;
}

.contact-hub-details .eyebrow,
.contact-hub-details p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-hub-details h2 {
  margin: 0.6rem 0 1.2rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.045em;
}

.contact-hub-lead {
  max-width: 430px;
  line-height: 1.7;
}

.contact-direct-list {
  margin: 2.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-direct-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}

.contact-direct-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct-item strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
}

.contact-direct-item small {
  color: #83ddd1;
  font-weight: 700;
}

.contact-evaluation-btn {
  width: 100%;
  border-color: #fff;
  background: #fff;
  color: var(--primary);
  text-align: center;
}

.contact-message-panel {
  padding: clamp(2rem, 5vw, 4rem);
}

.contact-message-panel h2 {
  margin: 0.45rem 0 0.6rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.contact-message-panel > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--muted);
}

.contact-message-form,
.contact-message-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-message-form {
  gap: 1.15rem;
}

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

.contact-message-form label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-message-form label > span {
  color: var(--muted);
  font-weight: 500;
}

.contact-message-form input,
.contact-message-form textarea {
  width: 100%;
  border: 1px solid #cbdadd;
  border-radius: 0.8rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-message-form input {
  min-height: 3.25rem;
  padding: 0 0.95rem;
}

.contact-message-form textarea {
  min-height: 135px;
  padding: 0.9rem 0.95rem;
  resize: vertical;
}

.contact-message-form input:focus,
.contact-message-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(43, 103, 119, 0.11);
}

.contact-message-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-message-form > small {
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

.contact-message-form > small a {
  color: var(--primary);
}

@media (max-width: 900px) {
  .contact-hub {
    grid-template-columns: 1fr;
    max-width: min(700px, calc(100% - 2rem));
  }
}

@media (max-width: 560px) {
  .contact-intro {
    padding-top: 3.5rem;
    text-align: left;
  }

  .contact-intro h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .contact-intro > .container > p:last-child {
    margin-left: 0;
  }

  .contact-hub {
    max-width: calc(100% - 1.25rem);
    border-radius: 1.35rem;
  }

  .contact-hub-details,
  .contact-message-panel {
    padding: 1.6rem 1.25rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}
.bikego-explained {
  padding: clamp(2.25rem, 5vw, 4.5rem) 0;
  background: #fff;
}

.bikego-explained-inner {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.45fr);
  column-gap: clamp(1.5rem, 5vw, 5rem);
  row-gap: 0.9rem;
  align-items: start;
  padding-top: clamp(1.4rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(25, 58, 66, .16);
}

.bikego-explained h2 {
  margin: 0;
  color: var(--ink, #17363d);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.bikego-explained p {
  max-width: 790px;
  margin: 0;
  color: var(--muted, #4b6268);
  font-size: clamp(1rem, 1.45vw, 1.17rem);
  line-height: 1.75;
}

.bikego-explained-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.5rem;
  margin-top: 0;
}

.bikego-explained-links a {
  color: var(--petrol, #236d7d);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
}

@media (max-width: 720px) {
  .bikego-explained-inner { grid-template-columns: 1fr; gap: 1rem; }
  .bikego-explained-links { grid-column: 1; margin-top: 0; }
}
