/* ═══════════════════════════════════════════════════
   bakeo – Shared Stylesheet
   Fonts: Self-hosted Cormorant Garamond + Inter
   ═══════════════════════════════════════════════════ */

/* ── Fonts ───────────────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ───────────────────────────────── */
:root {
  --rose:        #C45B78;
  --rose-dark:   #8E3F59;
  --rose-light:  #FBE8EE;
  --rose-muted:  #E8A4B8;
  --cream:       #FDF5F3;
  --cream-warm:  #FAF7F2;
  --white:       #FFFFFF;
  --text-dark:   #2A1A22;
  --text-mid:    #6B5C54;
  --text-light:  #9B8B83;
  --border:      #E9D4DB;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 2px 8px rgba(196,91,120,0.08);
  --shadow-md:   0 8px 32px rgba(196,91,120,0.14);
  --shadow-lg:   0 20px 60px rgba(42,26,34,0.18);

  --nav-h:       72px;
  --max-w:       1200px;
  --section-py:  96px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Focus-visible (Keyboard-Accessibility) ──────── */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 3px solid var(--rose-dark);
  outline-offset: 3px;
}
.nav--dark :focus-visible {
  outline-color: #fff;
}

/* ── Utility ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(253,245,243,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.nav__logo img {
  height: 48px !important;
  width: auto;
  transition: opacity 0.2s ease;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: var(--rose-dark);
  background: var(--rose-light);
}

/* ── Nav über dunklem Hero (anbieter.html) ───────── */
.nav--dark:not(.scrolled) .nav__link {
  color: rgba(255,255,255,0.92);
}
.nav--dark:not(.scrolled) .nav__link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(196,91,120,0.3);
}

.btn--primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,91,120,0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--rose);
  padding: 12px 24px;
  font-size: 15px;
  border: 2px solid var(--rose);
}

.btn--outline:hover {
  background: var(--rose-light);
  color: var(--rose-dark);
  border-color: var(--rose-dark);
}

.btn--ghost {
  background: var(--white);
  color: var(--text-dark);
  padding: 14px 24px;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--cream);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80svh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #FFF0F4 60%, var(--cream-warm) 100%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(251,232,238,0.8) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,91,120,0.1) 0%, transparent 70%);
  bottom: -50px; left: -50px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80svh;
  width: 100%;
}

/* ── Linke Inhaltseite ───────────────────────────── */
.hero__content-side {
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 72px 80px max(40px, calc((100vw - var(--max-w)) / 2 + 48px));
}

.hero__content { max-width: 540px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title span { color: var(--rose); }

.hero__subtitle {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

/* ── Location Search ─────────────────────────────── */
.hero__search {
  display: flex;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 20px;
}

.hero__search:focus-within {
  border-color: var(--rose);
  box-shadow: 0 8px 32px rgba(196,91,120,0.2);
}

.hero__search-icon {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--rose);
}

.hero__search-icon svg { width: 22px; height: 22px; }

.hero__search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-dark);
  background: transparent;
  padding: 18px 8px;
}

.hero__search input::placeholder { color: var(--text-light); }

.hero__search-btn {
  margin: 8px;
  padding: 0 24px;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.hero__search-btn:hover { background: var(--rose-dark); }

.hero__hint {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__hint-tag {
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.hero__hint-tag:hover {
  background: var(--rose-light);
  color: var(--rose-dark);
  border-color: var(--rose-muted);
}

/* ── Hero Visual – Lieferando-Stil: farbige rechte Hälfte ────── */
.hero__visual {
  position: relative;
  overflow: hidden;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  background: linear-gradient(145deg, var(--rose) 0%, var(--rose-dark) 100%);
}

.hero__cake {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Section Shared ──────────────────────────────── */
section { padding: var(--section-py) 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.65;
}

.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ── How It Works ────────────────────────────────── */
.how {
  background: var(--white);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--rose-light), var(--rose-muted), var(--rose-light));
  z-index: 0;
}

.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.how__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s, transform 0.3s;
}

.how__step:hover .how__icon {
  background: var(--rose);
  transform: scale(1.08);
}

.how__icon svg { width: 32px; height: 32px; stroke: var(--rose); transition: stroke 0.3s; }
.how__step:hover .how__icon svg { stroke: var(--white); }

.how__num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.how__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.how__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Features ────────────────────────────────────── */
.features {
  background: var(--cream);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__icon svg { width: 28px; height: 28px; stroke: var(--rose-dark); }

.feature-card__body h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card__body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── App Download ────────────────────────────────── */
.download {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 50%, #D4819A 100%);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.download__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.download__content { color: var(--white); }

.download__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.download__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.download__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 36px;
}

.download__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.store-badge:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.store-badge__icon { width: 28px; height: 28px; flex-shrink: 0; }

.store-badge__text { text-align: left; }
.store-badge__small { font-size: 11px; opacity: 0.75; display: block; }
.store-badge__name { font-size: 15px; font-weight: 700; }

.download__qr {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

.download__qr-box {
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download__visual {
  display: flex;
  justify-content: center;
}

.download__phone {
  width: 260px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
  animation: float 4s ease-in-out infinite;
}

/* ── Vendor CTA Section (on index page) ──────────── */
.vendor-cta {
  background: var(--cream-warm);
  border-top: 1px solid var(--border);
}

.vendor-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vendor-cta__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.vendor-cta__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
}

.vendor-cta__check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vendor-cta__check svg { width: 14px; height: 14px; stroke: var(--rose-dark); }

.vendor-cta__visual {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.vendor-cta__visual-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.vendor-cta__visual-icon svg { width: 40px; height: 40px; stroke: var(--rose-dark); }

.vendor-cta__visual h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.vendor-cta__visual p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer__brand .footer__logo {
  height: 60px;
  margin-bottom: 16px;
  filter: invert(1) brightness(2);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.footer__social a:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

.footer__social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.8); }

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--rose-muted); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__legal a:hover { color: var(--rose-muted); }

/* ── Vendor Page Hero ────────────────────────────── */
.vendor-hero {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #A04D6A 50%, var(--rose) 100%);
  min-height: 85svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.vendor-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.vendor-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vendor-hero__content { color: var(--white); }

.vendor-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.vendor-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.vendor-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.vendor-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn--white {
  background: var(--white);
  color: var(--rose-dark);
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
}

.btn--white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.vendor-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.vendor-hero__stat { color: var(--white); }
.vendor-hero__stat-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.vendor-hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.vendor-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
}

.testimonial-card__stars { color: #FBBF24; font-size: 14px; margin-bottom: 10px; }
.testimonial-card__text { font-size: 15px; line-height: 1.6; margin-bottom: 14px; font-style: italic; opacity: 0.9; }
.testimonial-card__author { display: flex; align-items: center; gap: 10px; }
.testimonial-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.testimonial-card__name { font-size: 13px; font-weight: 700; }
.testimonial-card__city { font-size: 12px; opacity: 0.6; }

/* Vendor Advantages */
.vendor-advantages { background: var(--white); }

.vendor-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-muted);
}

.advantage-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.advantage-card__icon svg { width: 32px; height: 32px; stroke: var(--rose-dark); }

.advantage-card h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Vendor Steps */
.vendor-steps { background: var(--cream); }

.vendor-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.vendor-steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 36px);
  right: calc(16.67% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--rose-light), var(--rose-muted), var(--rose-light));
  z-index: 0;
}

.vendor-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vendor-step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(196,91,120,0.3);
  border: 4px solid var(--white);
}

.vendor-step h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.vendor-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Vendor Pricing */
.vendor-pricing { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.pricing-card--highlight {
  border-color: var(--rose);
  box-shadow: 0 8px 32px rgba(196,91,120,0.14);
  background: linear-gradient(160deg, var(--rose-light) 0%, var(--white) 60%);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-card__amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.pricing-card--highlight .pricing-card__amount { color: var(--rose-dark); }

.pricing-card__period {
  font-size: 14px;
  color: var(--text-light);
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
}

.pricing-card__features li svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  stroke: var(--rose);
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--rose);
  color: var(--rose);
  background: transparent;
  text-decoration: none;
  transition: background .18s, color .18s;
  cursor: pointer;
}

.btn--outline:hover { background: var(--rose-light); }

.btn--block {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pricing-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-light);
}

/* Vendor Final CTA */
.vendor-final-cta {
  background: var(--white);
  text-align: center;
}

.vendor-final-cta__box {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  border: 1px solid var(--border);
}

.vendor-final-cta__box .section-title { margin-bottom: 16px; }
.vendor-final-cta__box .section-sub { margin: 0 auto 36px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero__inner { grid-template-columns: 1fr; min-height: unset; }
  .hero__content-side {
    padding: calc(var(--nav-h) + 56px) 40px 48px 40px;
    justify-content: center;
  }
  .hero__content { max-width: 600px; }
  .hero__visual {
    clip-path: none;
    height: 420px;
    order: -1;
  }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .how__steps::before { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .download__inner { grid-template-columns: 1fr; }
  .download__visual { display: none; }
  .vendor-cta__inner { grid-template-columns: 1fr; }
  .vendor-hero__inner { grid-template-columns: 1fr; }
  .vendor-hero__visual { display: none; }
  .vendor-advantages__grid { grid-template-columns: 1fr 1fr; }
  .vendor-steps__grid { grid-template-columns: 1fr; }
  .vendor-steps__grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --section-py: 56px; }
  .nav__links .nav__link:not(.btn) { display: none; }
  .hero__visual { height: 320px; }
  .hero__content-side { padding: calc(var(--nav-h) + 40px) 24px 48px 24px; }
  .how__steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .vendor-advantages__grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .vendor-final-cta__box { padding: 40px 24px; }
  .vendor-hero__stats { flex-wrap: wrap; gap: 20px; }
}
