/* =====================
   HEADER OVERRIDE
   ===================== */
.header {
  background: white !important;
  border-bottom: 1px solid #e5e7eb !important;
}

nav a {
  color: #2d3748 !important;
}

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

.phone-number {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2c5282;
  font-weight: 600;
}

.phone-number i {
  font-size: 1.3rem;
  color: #5b6fee;
}

.phone {
  font-size: 1.1rem;
  color: #1a365d;
}

.hours {
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}

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

/* =====================
   HERO SECTION  (redesigned)
   Design tokens used throughout:
     --tl-blue        #5b6fee   primary accent
     --tl-blue-deep   #2c5282   deep brand blue
     --tl-navy        #1a365d   headings / dark
     --tl-ink         #1f2733   body strong
     --tl-text        #475467   body text (WCAG AA on light bg)
     --tl-muted       #64707d   muted but still AA-compliant
     --tl-bg          #eef2f8   section background
     --tl-line        #e3e8f0   borders
     --tl-amber       #ff9a00   conversion CTA
   ===================== */
.treppenlifte-hero {
  --tl-blue: #5b6fee;
  --tl-blue-deep: #2c5282;
  --tl-navy: #1a365d;
  --tl-ink: #1f2733;
  --tl-text: #475467;
  --tl-muted: #64707d;
  --tl-bg: #eef2f8;
  --tl-line: #e3e8f0;
  --tl-amber: #ff9a00;

  /* === HERO BACKGROUND IMAGE ===
     Replace the url() below with the real image path the user provides,
     e.g. url('../images/hero.png'). Keep the gradient layers above it:
       - the two radial gradients are the original brand accents
       - the linear-gradient is a light wash that keeps the existing
         dark navy heading / grey subtitle readable over the photo.
     If you prefer WHITE text over a DARKER photo instead, swap the
     light wash for: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.45))
     and set .hero-title / .hero-subtitle colors to #fff (see notes below). */
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(91, 111, 238, 0.10), transparent 60%),
    radial-gradient(900px 480px at -5% 110%, rgba(44, 82, 130, 0.06), transparent 55%),
    linear-gradient(135deg, rgba(238, 242, 248, 0.82) 0%, rgba(238, 242, 248, 0.72) 100%),
    url('../images/hero.png');
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center top;
  background-repeat: no-repeat;
  background-color: var(--tl-bg); /* fallback while image loads / if missing */
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden;
}

.treppenlifte-hero::before,
.treppenlifte-hero::after {
  display: none;
}

.treppenlifte-hero .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 64px;
  align-items: start;
}

.hero-content-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 14px;
}

.hero-content-center {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: left;
}

.hero-form-section {
  position: sticky;
  top: 96px;
  z-index: 10;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Trust eyebrow above the headline */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid var(--tl-line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--tl-blue-deep);
  box-shadow: 0 4px 14px rgba(26, 54, 93, 0.06);
  animation: fadeInUp 0.7s ease-out both;
}

.hero-eyebrow i {
  color: var(--tl-amber);
  font-size: 0.95rem;
}

/* ---- Headline ---- */
.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--tl-navy);
  margin: 0;
  text-align: left;
  text-wrap: balance;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.title-highlight {
  position: relative;
  background: linear-gradient(135deg, var(--tl-blue) 0%, var(--tl-blue-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--tl-text);
  margin: -8px 0 0;
  max-width: 560px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.18s both;
}

/* ---- Feature boxes (3-col) ---- */
.hero-features,
.hero-features-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  max-width: 100%;
  animation: fadeInUp 0.85s ease-out 0.26s both;
}

.feature {
  --accent: var(--tl-blue);
  --accent-soft: rgba(91, 111, 238, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid var(--tl-line);
  border-radius: 14px;
  box-shadow: 0 2px 4px rgba(26, 54, 93, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

/* Distinct accent per box so they are not all identical */
.feature:nth-child(1) {
  --accent: #5b6fee;
  --accent-soft: rgba(91, 111, 238, 0.12);
}
.feature:nth-child(2) {
  --accent: #2c9e6a;
  --accent-soft: rgba(44, 158, 106, 0.12);
}
.feature:nth-child(3) {
  --accent: #e98a14;
  --accent-soft: rgba(233, 138, 20, 0.14);
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--tl-line));
  box-shadow: 0 14px 30px rgba(26, 54, 93, 0.12);
}

.feature:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.feature:hover .feature-icon {
  transform: scale(1.06);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feature-text strong {
  color: var(--tl-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.feature-text span {
  color: var(--tl-muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* =====================
   HERO FORM (Multi-Step) — redesigned
   ===================== */
.hero-form {
  background: #ffffff;
  border: 1px solid var(--tl-line);
  border-radius: 18px;
  padding: 30px 30px 26px;
  box-shadow:
    0 1px 2px rgba(26, 54, 93, 0.04),
    0 24px 48px -18px rgba(26, 54, 93, 0.28);
  position: relative;
  animation: slideInRight 0.85s ease-out 0.2s both;
}

/* Reassuring header strip at top of the form */
.hero-form::before {
  content: "Kostenlos & unverbindlich";
  display: block;
  margin: -30px -30px 24px;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--tl-blue) 0%, var(--tl-blue-deep) 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 18px 18px 0 0;
  text-align: center;
}

.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Step indicator ---- */
.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tl-line);
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--tl-blue) 0%, var(--tl-blue-deep) 100%);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(91, 111, 238, 0.30);
}

.step-label {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tl-navy);
  line-height: 1.2;
}

/* ---- Lift type cards ---- */
.lift-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.lift-type-card {
  position: relative;
  cursor: pointer;
}

.lift-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.lift-type-card input[type="radio"]:checked + .card-content {
  border-color: var(--tl-blue);
  background: #f1f5ff;
  box-shadow: 0 8px 22px rgba(91, 111, 238, 0.22);
}

.lift-type-card input[type="radio"]:checked + .card-content i {
  transform: scale(1.06);
}

.lift-type-card input[type="radio"]:focus-visible + .card-content {
  outline: 3px solid rgba(91, 111, 238, 0.35);
  outline-offset: 2px;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 12px;
  border: 2px solid var(--tl-line);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  min-height: 138px;
  height: 100%;
}

.card-content:hover {
  border-color: var(--tl-blue);
  background: #f6f8ff;
}

.card-content i {
  font-size: 2.2rem;
  color: var(--tl-blue);
  transition: transform 0.25s ease;
}

.card-content strong {
  color: var(--tl-navy);
  font-size: 0.98rem;
  font-weight: 700;
}

.card-content small {
  color: var(--tl-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

/* ---- Radio question groups ---- */
.form-question {
  margin-bottom: 28px;
}

.form-question > label {
  display: block;
  font-weight: 700;
  color: var(--tl-navy);
  margin-bottom: 18px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--tl-line);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--tl-ink);
  cursor: pointer;
  margin: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.radio-group label:hover {
  background: #f6f8ff;
  border-color: var(--tl-blue);
}

.radio-group label:has(input:checked) {
  background: #f1f5ff;
  border-color: var(--tl-blue);
}

.radio-group input[type="radio"] {
  cursor: pointer;
  accent-color: var(--tl-blue);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---- Text inputs ---- */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-input {
  margin-bottom: 14px;
}

.form-input input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--tl-line);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--tl-ink);
  background: #fbfcfe;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-input input::placeholder {
  color: #8a94a3;
}

.form-input input:focus {
  outline: none;
  border-color: var(--tl-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(91, 111, 238, 0.14);
}

.checkbox-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 22px 0 4px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--tl-text);
  cursor: pointer;
}

.checkbox-consent input[type="checkbox"] {
  cursor: pointer;
  accent-color: var(--tl-blue);
  width: 20px;
  height: 20px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-step-back,
.btn-step-next,
.btn-submit-final {
  padding: 15px 26px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  line-height: 1;
}

.btn-step-back {
  background: #f2f4f8;
  color: var(--tl-ink);
  flex: 0 0 auto;
  min-width: 116px;
  border: 1px solid var(--tl-line);
}

.btn-step-back:hover {
  background: #e8ecf3;
  border-color: #cfd6e1;
}

.btn-step-next {
  background: linear-gradient(135deg, var(--tl-blue) 0%, var(--tl-blue-deep) 100%);
  color: #ffffff;
  flex: 1;
  box-shadow: 0 8px 20px rgba(91, 111, 238, 0.28);
}

.btn-step-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(91, 111, 238, 0.40);
}

.btn-submit-final {
  background: linear-gradient(135deg, #ffb01f 0%, var(--tl-amber) 100%);
  color: #3a2400;
  flex: 1;
  box-shadow: 0 8px 20px rgba(255, 154, 0, 0.32);
}

.btn-submit-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 154, 0, 0.45);
}

.btn-step-next:active,
.btn-submit-final:active,
.btn-step-back:active {
  transform: translateY(0);
}

/* ---- Progress bar ---- */
.form-progress {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--tl-line);
  flex-shrink: 0;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #e6ebf3;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--tl-blue) 0%, #4356d6 100%);
  width: 25%;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 999px;
}

.progress-text {
  text-align: center;
  font-size: 0.92rem;
  color: var(--tl-muted);
  font-weight: 600;
  letter-spacing: 0.01em;
}


.hero-image-area {
  display: none;
}

.treppenlifte-hero .highlight {
  background: linear-gradient(135deg, var(--tl-blue) 0%, var(--tl-blue-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

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

/* Large desktop down to laptop: tighten the form column */
@media (max-width: 1180px) {
  .treppenlifte-hero .container {
    padding: 0 32px;
  }

  .hero-container {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: minmax(0, 1fr) 384px;
    gap: 40px;
  }

  .hero-content-section {
    gap: 32px;
  }
}

/* Tablet: stack into a single column, form moves below content */
@media (max-width: 900px) {
  .treppenlifte-hero {
    padding: 56px 0 64px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-form-section {
    position: relative;
    top: 0;
  }

  .hero-content-section {
    padding-top: 0;
    text-align: center;
    align-items: center;
  }

  .hero-content-center {
    align-items: center;
    text-align: center;
  }

  .hero-title,
  .hero-subtitle {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .treppenlifte-hero {
    padding: 44px 0 52px;
  }

  .treppenlifte-hero .container {
    padding: 0 18px;
  }

  .hero-content-section {
    gap: 28px;
  }

  .hero-features,
  .hero-features-center {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Horizontal feature rows read better stacked on phones */
  .feature {
    flex-direction: row;
    align-items: center;
    padding: 16px 18px;
  }

  .hero-form {
    padding: 24px 22px 22px;
    border-radius: 16px;
  }

  .hero-form::before {
    margin: -24px -22px 20px;
    padding: 12px 22px;
    border-radius: 16px 16px 0 0;
  }

  .lift-type-grid {
    grid-template-columns: 1fr;
  }

  .card-content {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    min-height: 0;
    padding: 16px 18px;
    text-align: left;
  }

  .card-content i {
    font-size: 1.7rem;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .btn-step-back {
    width: 100%;
  }

  .step-label {
    font-size: 1.15rem;
  }
}

/* =====================
   BENEFITS SECTION
   ===================== */
.benefits-section {
  padding: 80px 20px;
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-grid .section-header {
  grid-column: 1 / -1;
}

.benefit-card {
  background: #f9fafb;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e5e7eb;
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: #1a365d;
  margin: 20px 0 15px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.benefit-icon {
  font-size: 2.5rem;
  color: #2c5282;
  margin-bottom: 15px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================
   TYPES SECTION
   ===================== */
.treppenlifte-types {
  background: #f0f4f8;
  padding: 80px 20px;
}

.treppenlifte-types .container {
  max-width: 1200px;
  margin: 0 auto;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.type-card {
  background: white;
  padding: 35px;
  border-left: 5px solid #2c5282;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.type-card h4 {
  color: #1a365d;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.type-card h4 i {
  color: #2c5282;
  width: 30px;
  text-align: center;
}

.type-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =====================
   SAFETY SECTION
   ===================== */
.safety-section {
  background: #ffffff;
  padding: 80px 20px;
}

.safety-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.safety-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.safety-list li {
  padding: 18px 0;
  padding-left: 50px;
  position: relative;
  font-size: 1.05rem;
  color: #2d3748;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 500;
}

.safety-list li:last-child {
  border-bottom: none;
}

.safety-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #10b981;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 24px;
  text-align: center;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  background-attachment: fixed;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 50px;
  line-height: 1.8;
  color: #e8eef7;
}

.cta-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-icon-box {
  text-align: center;
}

.cta-icon-box i {
  font-size: 2.5rem;
  color: #60d5ff;
  margin-bottom: 12px;
  display: block;
}

.cta-icon-box span {
  font-size: 0.95rem;
  color: #d0dbe8;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.05rem;
    margin-bottom: 35px;
  }

  .cta-icons {
    gap: 30px;
  }
}

/* =====================
   FORM SECTION
   ===================== */
.form-section {
  background: white;
  padding: 80px 20px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 45px;
}

.form-header h2 {
  color: #1a365d;
  margin-bottom: 12px;
  font-size: 2.2rem;
  font-weight: 700;
}

.form-header p {
  color: #4b5563;
  font-size: 1.1rem;
}

.form-section-title {
  font-size: 1.2rem;
  color: #1a365d;
  font-weight: 700;
  margin-bottom: 25px;
  display: block;
}

.lift-type-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.lift-option {
  position: relative;
}

.lift-option input[type="radio"] {
  display: none;
}

.lift-option input[type="radio"]:checked + .option-box {
  border-color: #5b6fee;
  background: #f0f4ff;
  box-shadow: 0 4px 15px rgba(91, 111, 238, 0.2);
}

.option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.option-box:hover {
  border-color: #5b6fee;
  background: #f5f7ff;
}

.option-box i {
  font-size: 2.2rem;
  color: #5b6fee;
}

.option-box strong {
  color: #2d3748;
  font-size: 1rem;
}

.option-box small {
  color: #64707d;
  font-size: 0.85rem;
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .lift-type-options {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d3748;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2c5282;
  background-color: #f0f4f8;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  margin: 25px 0;
  padding: 15px;
  background: #f9fafb;
  border-radius: 6px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  display: inline;
  font-size: 0.95rem;
  cursor: pointer;
}

.form-submit {
  background: linear-gradient(135deg, #ffa500 0%, #ff9200 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

.form-notice {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-notice i {
  color: #10b981;
}

/* =====================
   UTILITIES
   ===================== */
.btn-light {
  background: white !important;
  color: #2c5282 !important;
  font-weight: 600;
  padding: 14px 45px !important;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background: #f0f4f8 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #ffa500 0%, #ff9200 100%);
  color: white;
  border: none;
  padding: 16px 50px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 165, 0, 0.4);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-large {
  padding: 18px 55px !important;
  font-size: 1.1rem !important;
}

.error-message {
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.success-message {
  background: #d1fae5;
  color: #065f46;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: none;
  border-left: 4px solid #10b981;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #1a365d;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
