    /*
 * Marketing Sections
 * Hero, Trusted By, Features, Pricing, FAQ, Testimonials, Security, Footer
 */

/* ===== Layout Primitives (Marketing) ===== */
.section {
  position: relative;
  overflow: hidden;
}

.section--hero {
  margin-top: 0;
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl) 0;
}

.section--tight {
  padding: var(--space-2xl) 0;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Layout split for hero/features (text + visual) */
.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.8fr);
  gap: 56px;
  align-items: flex-start;
}

/* Grid primitives for marketing sections */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

/* ===== Shared Marketing Components (Card, Intro, Media) ===== */

/* Generic Card Base */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--accent-primary-rgb), 0.7);
}

.card--elevated {
  box-shadow: var(--shadow-md);
}

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

.card--dense {
  padding: var(--space-md) var(--space-lg);
  gap: var(--space-sm);
}

/* Section Intro System */
.section-intro,
.pricing-intro,
.testimonial-intro,
.security-intro,
.faq-intro,
.features-intro {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-intro .eyebrow,
.pricing-intro .eyebrow,
.testimonial-intro .eyebrow,
.security-intro .eyebrow,
.faq-intro .eyebrow,
.features-intro .eyebrow {
  margin-bottom: var(--space-sm);
}

.section-intro h2,
.pricing-intro h2,
.testimonial-intro h2,
.security-intro h2,
.faq-intro h2,
.features-intro h2 {
  margin-bottom: var(--space-md);
}

/* Section intro sub-elements */
.section-intro__eyebrow {
  margin-bottom: var(--space-sm);
}

.section-intro__title {
  margin-bottom: var(--space-md);
}

.section-intro__text {
  color: var(--text-muted);
  font-size: var(--text-md);
  line-height: 1.7;
}

/* Eyebrow/Badge Primitives */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
  background: var(--accent-soft);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--grad-pill-muted);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.85);
  white-space: nowrap;
  transition: all var(--transition-base);
  flex-shrink: 0;
  font-weight: 500;
}

.badge-pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--grad-pill-muted-hover);
  color: rgba(248, 250, 252, 0.95);
}

/* Media Frame - for feature mockup frames / hero visual card */
.media-frame {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero);
  background:
    radial-gradient(circle at 5% 10%, rgba(var(--accent-cyan-rgb), 0.10), transparent 60%),
    radial-gradient(circle at 95% 90%, rgba(var(--accent-secondary-rgb), 0.12), transparent 60%),
    #060912;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    opacity 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.28s ease,
              box-shadow 0.28s ease;
}

/* Inner border */
.media-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 180, 255, 0.18);
  pointer-events: none;
}

/* Brand accent line */
.media-frame::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 26px;
  width: 82px;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-secondary));
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.media-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ===== Mockup System ===== */
.mockup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.mockup__monitor {
  width: 100%;
  max-width: 100%;
  background: #1a1a1f;
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05),
              0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mockup__screen {
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-lg) var(--space-lg);
  background: rgba(15, 23, 42, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup__header-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: block;
}

.mockup__header-dot:nth-child(1) { background: #ff5f57; }
.mockup__header-dot:nth-child(2) { background: #ffbd2e; }
.mockup__header-dot:nth-child(3) { background: #28ca42; }

.mockup__content {
  padding: var(--space-xl);
}

.mockup-table {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-xl);
}

.mockup-table__row {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: var(--space-md) 0;
}

.mockup-table__row--header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.mockup-table__row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-table__cell {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
}

.mockup-table__row--header .mockup-table__cell {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

.mockup-table__cell--muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* Mockup Variants - only define what is unique */
.mockup--dispatch .mockup-table {
  padding: 0;
  gap: 12px;
}

.mockup--dispatch .mockup-table__row {
  grid-template-columns: 1.5fr 1.2fr 1fr;
}

.mockup--dispatch .mockup-table__cell--driver {
  font-weight: 500;
}

.mockup--dispatch .mockup-table__cell--time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.mockup--dispatch .mockup-table__cell--status {
  justify-content: flex-start;
}

/* Dispatch mockup helpers */
.dispatch-mockup__driver-name {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.dispatch-mockup__bar {
  height: 8px;
  border-radius: 4px;
  width: 100%;
  max-width: 80px;
}

.dispatch-mockup__bar--blue {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.dispatch-mockup__bar--green {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.dispatch-mockup__bar--orange {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

/* iPhone Mockup for Dispatch Feature - iPhone 16 dimensions: 147.6mm × 71.6mm */
.iphone-mockup {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  background: #1a1a1f;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.iphone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #1a1a1f;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.iphone-mockup__screen {
  width: 100%;
  aspect-ratio: 330 / 682;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.98));
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  padding-top: 44px;
}

/* FahrlyGo App Interface */
.fahrlygo-app {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.98));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fahrlygo-app__header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.5);
  position: sticky;
  top: 0;
  z-index: 5;
}

.fahrlygo-app__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.2;
}

.fahrlygo-app__search {
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.3);
}

.fahrlygo-app__search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.fahrlygo-app__search-icon {
  font-size: 16px;
  opacity: 0.7;
}

.fahrlygo-app__search-text {
  flex: 1;
}

.fahrlygo-app__trips {
  flex: 1;
  padding: 8px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.fahrlygo-app__navbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.fahrlygo-navbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fahrlygo-navbar__icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.fahrlygo-navbar__icon--car {
  width: 28px;
  height: 28px;
}

.fahrlygo-navbar__item--active .fahrlygo-navbar__icon {
  color: rgba(255, 255, 255, 0.95);
}

.fahrlygo-navbar__item:active .fahrlygo-navbar__icon {
  transform: scale(0.9);
  opacity: 0.7;
}

.fahrlygo-trip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.fahrlygo-trip:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.fahrlygo-trip__route {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fahrlygo-trip__from,
.fahrlygo-trip__to {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fahrlygo-trip__location-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.fahrlygo-trip__location-dot--destination {
  background: var(--accent-secondary);
  box-shadow: 0 0 8px rgba(123, 97, 255, 0.4);
}

.fahrlygo-trip__address {
  flex: 1;
}

.fahrlygo-trip__street {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}

.fahrlygo-trip__city {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.fahrlygo-trip__line {
  width: 2px;
  height: 12px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  margin-left: 4px;
  opacity: 0.5;
}

.fahrlygo-trip__price {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-left: 12px;
  white-space: nowrap;
}

/* Data Card Base */
.data-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.data-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.5);
}

.data-card__body {
  display: flex;
  flex-direction: column;
  padding: var(--space-md) var(--space-xl);
  gap: var(--space-sm);
}

/* Timesheet Mockup Variant */
.timesheet-card__date,
.receipt-card__date,
.salary-card__date,
.maintenance-card__date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.5);
}

.timesheet-card__day,
.receipt-card__day,
.salary-card__day,
.maintenance-card__day {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.timesheet-card__time-range {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.timesheet-card__entries {
  padding: var(--space-lg) var(--space-xl);
  gap: var(--space-md);
}

.timesheet-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: var(--space-md) 0;
}

.timesheet-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timesheet-pill {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.timesheet-pill--blue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.timesheet-pill--orange {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.timesheet-pill--purple {
  background: linear-gradient(135deg, var(--accent-secondary), #a78bfa);
}

.timesheet-row__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.timesheet-row__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.timesheet-row__time {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.timesheet-card__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(var(--accent-secondary-rgb), 0.08));
  border-top: 1px solid #e9ecef;
}

.timesheet-card__summary-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timesheet-card__summary-value {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: -0.02em;
}

.mockup--timesheet .mockup-table__row {
  grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr 1fr;
}

.mockup--timesheet .mockup-table__cell--name {
  font-weight: 500;
}

.mockup--timesheet .mockup-table__cell--umsatz {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.mockup--timesheet .mockup-table__cell--stunden,
.mockup--timesheet .mockup-table__cell--fahrten,
.mockup--timesheet .mockup-table__cell--rate {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* Shared driver name style */
.timesheet-table__driver-name,
.receipt-table__driver-name,
.salary-table__driver-name {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Receipt Mockup Variant */
.mockup--receipt .mockup-table__row {
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr;
}

.mockup--receipt .mockup-table__cell--datum,
.mockup--receipt .mockup-table__cell--typ,
.mockup--receipt .mockup-table__cell--fahrzeug {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.mockup--receipt .mockup-table__cell--wert {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.mockup--receipt .mockup-table__cell--fahrer {
  font-weight: 500;
}

/* E-Signature Mockup Variant */
.mockup--esign .mockup__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.esign-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.esign-doc {
  display: flex;
  flex-direction: column;
}

.esign-doc__header {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(var(--accent-secondary-rgb), 0.06));
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.esign-doc__header-line {
  height: 4px;
  width: 60%;
  background: linear-gradient(90deg, #3b82f6, #7b61ff);
  border-radius: 2px;
}

.esign-doc__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.esign-doc__paragraph {
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.esign-doc__paragraph:nth-child(1) { width: 95%; }
.esign-doc__paragraph:nth-child(2) { width: 88%; }
.esign-doc__paragraph:nth-child(3) { width: 92%; }
.esign-doc__paragraph:nth-child(4) { width: 75%; }

.esign-doc__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 4px;
  text-align: center;
}

.esign-doc__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.esign-doc__spacer {
  height: 12px;
}

.esign-doc__separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 24px;
}

.esign-doc__signature {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.esign-signature-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.esign-signature-line__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.esign-signature-line__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.esign-signature-line__button {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6, #7b61ff);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.esign-signature-stroke {
  height: 60px;
  width: 100%;
  position: relative;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.esign-signature-stroke--signed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 32px;
  background: transparent;
  border: 2.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px 12px 20px 14px / 14px 16px 18px 12px;
  transform: rotate(-1.5deg);
  opacity: 0.8;
}

.esign-signature-stroke--signed::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 20px;
  width: 140px;
  height: 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px 8px 16px 10px / 10px 12px 14px 8px;
  transform: rotate(1deg);
  opacity: 0.6;
}

.esign-signature-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

/* Salary Mockup Variant */
.mockup--salary .mockup-table__row {
  grid-template-columns: 1.5fr 1fr 1.2fr;
}

.mockup--salary .mockup-table__cell--name {
  font-weight: 500;
}

.mockup--salary .mockup-table__cell--percent {
  font-weight: 600;
  color: #3b82f6;
}

.mockup--salary .mockup-table__cell--gehalt {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Maintenance Mockup Variant */
.mockup--maintenance .mockup-table__row {
  grid-template-columns: 1.8fr 1.2fr 1fr 1fr;
}

.mockup--maintenance .mockup-table__cell--aufgabe {
  font-weight: 500;
}

.mockup--maintenance .mockup-table__cell--datum,
.mockup--maintenance .mockup-table__cell--kilometer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.mockup--maintenance .mockup-table__cell--status {
  justify-content: flex-start;
}

.maintenance-status {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.maintenance-status--offen {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.maintenance-status--erledigt {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl) 0;
  }

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
  background: var(--accent-soft);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  }

.hero-content h1 {
  margin-bottom: var(--space-lg);
  }

.hero-content p {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
  }

.hero .hero-actions {
  justify-content: flex-start;
  }

.hero-visual {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.hero-visual__main-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.98));
  }

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 4px);
  box-shadow: var(--shadow-sm);
  transform: none;
  transition: all var(--transition-base);
  }

.hero-image:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.hero-visual__floating {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform var(--motion-normal) var(--ease-out-soft),
    box-shadow var(--motion-normal) var(--ease-out-soft),
    background var(--motion-normal) var(--ease-out-soft);
  }

.hero-visual__floating:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  }

.hero-visual__floating--top {
  top: -16px;
  right: 8px;
  }

.hero-visual__floating--bottom {
  bottom: -16px;
  left: -4px;
}

.hero-visual__floating-title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
  margin-bottom: 2px;
  }

.hero-visual__floating-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  }

.hero-micro-copy {
  margin-top: 8px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-sans);
  line-height: 1.5;
}

/* Hero Dashboard */
.hero-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  }

.hero-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition-base);
  }

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  }

.hero-stat-card__label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-stat-card__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  }

.hero-table-wrapper {
  margin-top: 4px;
  }

.hero-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.hero-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  align-items: center;
    padding: var(--space-sm) 0;
  }

.hero-table__row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

.hero-table__row--header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 10px;
  margin-bottom: 4px;
}

.hero-table__cell {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
}

.hero-table__cell--fahrt {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.hero-table__cell--name {
  font-weight: 500;
}

.hero-table__cell--einnahme {
  font-weight: 600;
  color: #ffffff;
  }

.hero-table__row--header .hero-table__cell {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Trusted By ===== */
.trusted-by {
  padding: var(--space-2xl) 0;
  background: transparent;
}

.trusted-by-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.trusted-by-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  }

.trusted-by-carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black var(--space-lg),
    black calc(100% - var(--space-lg)),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black var(--space-lg),
    black calc(100% - var(--space-lg)),
    transparent 100%
  );
}

.trusted-by-track {
  display: flex;
  gap: var(--space-md);
  width: fit-content;
  animation: trusted-by-scroll 50s var(--ease-out-soft) infinite;
  transition: transform 800ms var(--ease-out-soft);
}

.trusted-by-carousel:hover .trusted-by-track {
  animation-play-state: paused;
  }

.trusted-by-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--grad-pill-muted);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.85);
  white-space: nowrap;
  transition: all var(--transition-base);
  flex-shrink: 0;
  font-weight: 500;
  }

.trusted-by-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--grad-pill-muted-hover);
  color: rgba(248, 250, 252, 0.95);
  }

.trusted-by-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
  color: rgba(248, 250, 252, 0.8);
  cursor: pointer;
  transition: all 180ms ease-out;
  flex-shrink: 0;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  }

.trusted-by-arrow:hover {
  border-color: rgba(94, 234, 212, 0.8);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.25);
  transform: translateY(-1px);
  color: rgba(248, 250, 252, 0.95);
  }

.trusted-by-arrow:active {
  transform: translateY(0);
  }

.trusted-by-arrow svg {
  width: 16px;
  height: 16px;
  }

@keyframes trusted-by-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - var(--space-md)));
  }
  }

.trusted-note {
  margin-top: 12px;
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.9);
  text-align: center;
  font-family: var(--font-sans);
  }

/* ===== Features Section ===== */
  #features.section,
  #features.section-alt {
  position: relative;
  overflow: hidden;
  padding: 120px 0 160px;
}

#features .container {
  position: relative;
  z-index: 2;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

#features.section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 15% 10%, rgba(var(--accent-primary-rgb), 0.1), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(129, 140, 248, 0.09), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
  }

  .features-intro {
  max-width: 560px;
  margin-bottom: 100px;
  }

.features-intro__text {
  max-width: 640px;
  margin-top: var(--space-md);
  color: var(--text-muted);
  font-size: var(--text-md);
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Stack Layout */
  .feature-stack {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 8rem;
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  }

  .feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.8fr);
  gap: 56px;
  align-items: stretch;
  margin-bottom: 120px;
  min-height: 65vh;
  opacity: 1;
  visibility: visible;
}

.feature-row:last-child {
  margin-bottom: 0;
}

/* Left content block - sticky story */
  .feature-row__content {
  position: sticky;
  top: 120px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  width: auto;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  }

  .feature-row__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.4;
  }

  .feature-row__subtitle {
  font-size: var(--text-md);
  line-height: 1.7;
  margin-bottom: 0.6rem;
  color: var(--text-muted, #9CA3AF);
  }

  .feature-row__outcome {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

/* Tiny "learn more" link */
  .feature-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--text-sm);
  color: var(--text-muted, #9CA3AF);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
  }

.feature-row__link::after {
  content: "↗";
  font-size: 0.8rem;
  opacity: 0.8;
  }

.feature-row__link:hover {
  color: var(--accent-primary);
  transform: translateX(2px);
  }

/* Media - scrolling right visuals */
.feature-row__media {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}

.feature-media-card {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 10;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: none;
  background: transparent;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.28s ease,
              box-shadow 0.28s ease;
  }

.feature-media-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Scroll animation - images fade in when feature-stack is visible */
.feature-stack.is-visible .feature-media-card {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect - more specific to override is-visible state */
.feature-stack.is-visible .feature-media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 72px 0;
}

.pricing__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  padding: 22px 20px 24px;
  text-align: left;
  gap: 12px;
  border-color: rgba(148, 163, 184, 0.3);
}

.pricing-card--featured {
  border-color: rgba(var(--accent-primary-rgb), 0.9);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.pricing-card--featured:hover {
  border-color: rgba(var(--accent-primary-rgb), 1);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-3px);
}

.pricing-card__badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--grad-accent-diagonal);
  color: #0b1120;
  font-weight: 600;
}

.pricing-card__label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(148, 163, 184, 0.9);
  margin: 0;
  font-weight: 500;
}

.pricing-card__title {
  font-size: var(--text-md);
  font-weight: 600;
  color: #e5e7eb;
  margin: 0;
  line-height: 1.4;
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.pricing-card__price {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #f9fafb;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.pricing-card__unit {
  font-size: var(--text-sm);
  color: rgba(156, 163, 175, 0.95);
}

.pricing-card__hint {
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.95);
  margin: 0;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 var(--space-sm);
  flex-grow: 1;
}

.pricing-card__features li {
  font-size: var(--text-sm);
  color: rgba(209, 213, 219, 0.95);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pricing-card__features li::before {
  content: '✓';
  color: rgba(var(--accent-primary-rgb), 0.9);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-card--featured .pricing-card__features li::before {
  color: rgba(var(--accent-primary-rgb), 1);
}

.pricing-card__cta {
  margin-top: 4px;
  width: 100%;
  text-align: center;
}

.pricing-card__value-note {
  margin-top: 8px;
  font-size: var(--text-sm);
  color: rgba(94, 234, 212, 0.95);
  text-align: center;
  font-weight: 500;
}

.pricing-note {
  margin-top: 18px;
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.9);
  text-align: center;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 72px 0;
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.faq-item {
  overflow: hidden;
  display: block;
}

.faq-item:hover {
  border-color: rgba(148, 163, 184, 0.5);
}

.faq-item.active {
  border-color: rgba(var(--accent-primary-rgb), 0.5);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: var(--text-md);
  font-weight: 500;
  color: #e5e7eb;
  transition: background 160ms ease-out, color 160ms ease-out;
  user-select: none;
  margin: 0;
  font-family: var(--font-sans);
}

.faq-question:hover {
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
}

.faq-item__icon {
  font-size: 1rem;
  color: rgba(148, 163, 184, 0.9);
  transition: transform 160ms ease-out, color 160ms ease-out;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  color: rgba(var(--accent-primary-rgb), 0.95);
}

.faq-answer {
  padding: 0 16px 14px;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.96);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow), opacity var(--transition-slow);
  opacity: 0;
}

.faq-answer p {
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 16px 14px;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 72px 0;
}

.testimonials__inner {
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-google-rating {
  display: flex;
  justify-content: center;
  margin: var(--space-xl) 0 var(--space-2xl) 0;
}

.testimonial-google-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
  font-family: var(--font-sans);
}

.testimonial-google-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.testimonial-google-logo {
  height: 24px;
  width: 24px;
  display: block;
  flex-shrink: 0;
}

.testimonial-google-stars {
  font-size: 1rem;
  color: #fbbc04;
  letter-spacing: 0.1em;
  line-height: 1;
}

.testimonial-google-rating-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.testimonial-card {
  padding: 20px 20px 18px;
  gap: 14px;
}

.testimonial-card__accent {
  width: 40px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--grad-accent-diagonal);
  margin-bottom: 4px;
}

.testimonial-card__body {
  flex-grow: 1;
}

.testimonial-card__quote {
  font-size: var(--text-md);
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.96);
  margin: 0;
}

.testimonial-card__metric {
  display: block;
  margin-top: 6px;
  font-size: var(--text-sm);
  color: rgba(94, 234, 212, 0.95);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--grad-feature-icon-avatar);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.testimonial-avatar-initials {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #e5e7eb;
  margin: 0;
}

.testimonial-card__role {
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.95);
  margin: 0;
}

/* ===== Security Section ===== */
.security {
  padding: 72px 0;
}

.security__inner {
  max-width: 960px;
  margin: 0 auto;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.security-card {
  padding: 18px 18px 20px;
  gap: 8px;
}

.security-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--grad-feature-icon-weak);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all var(--transition-base);
}

.security-card:hover .security-card__icon {
  background: var(--grad-feature-icon-medium);
  transform: scale(1.05);
}

.security-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  color: rgba(226, 232, 240, 0.95);
  transition: all var(--transition-base);
}

.security-card:hover .security-icon {
  color: rgba(226, 232, 240, 1);
}

.security-card__title {
  font-size: var(--text-md);
  font-weight: 600;
  color: #e5e7eb;
  margin: 0;
  line-height: 1.4;
}

.security-card__text {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.96);
  margin: 0;
}

/* ===== Footer Section ===== */
.site-footer {
  margin-top: 72px;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(3, 7, 18, 1));
  border-top: 1px solid rgba(31, 41, 55, 1);
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.site-footer__brand {
  font-size: var(--text-md);
  font-weight: 600;
  color: #e5e7eb;
  margin: 0;
  font-family: var(--font-display);
}

.site-footer__tagline {
  margin-top: 4px;
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.95);
  margin: var(--space-xs) 0 0 0;
  line-height: 1.5;
}

.site-footer__support {
  margin-top: 8px;
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.95);
  margin: var(--space-sm) 0 0 0;
  line-height: 1.5;
}

.site-footer__support a {
  color: rgba(94, 234, 212, 0.95);
  text-decoration: none;
}

.site-footer__support a:hover {
  text-decoration: underline;
}

.site-footer__right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer__link {
  font-size: var(--text-sm);
  color: rgba(148, 163, 184, 0.95);
  text-decoration: none;
  transition: color 150ms ease-out;
}

.site-footer__link:hover {
  color: rgba(248, 250, 252, 0.96);
}

.site-footer__bottom {
  max-width: 1100px;
  margin: var(--space-lg) auto 0;
  font-size: var(--text-sm);
  color: rgba(107, 114, 128, 0.95);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
}

