:root {
  --bg: #f0f6fc;
  --bg-card: #ffffff;
  --bg-elevated: #f8fbfe;
  --text: #1a2b3c;
  --text-muted: #5a7189;
  --accent: #3d8fd4;
  --accent-hover: #2b7bc0;
  --accent-soft: rgba(61, 143, 212, 0.12);
  --accent-light: #93c9f0;
  --secondary: #5ec4e8;
  --secondary-soft: rgba(94, 196, 232, 0.18);
  --navy: #152535;
  --border: #dce8f2;
  --success: #3dab7a;
  --error: #e57373;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(26, 60, 100, 0.08);
  --shadow-lg: 0 32px 64px rgba(26, 60, 100, 0.12);
  --font: "Manrope", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(94, 196, 232, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(147, 201, 240, 0.28), transparent 50%),
    linear-gradient(180deg, #f8fbfe 0%, var(--bg) 40%, #e8f2fa 100%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 143, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 143, 212, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: -1;
  mask-image: linear-gradient(180deg, black 0%, transparent 70%);
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 232, 242, 0.8);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: inherit;
}

.logo__brand {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.logo__tagline {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
  text-decoration: none;
}

.btn:active:not(:disabled) {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  border-radius: 999px;
}

.btn--primary {
  background: linear-gradient(135deg, #3d8fd4 0%, #5ec4e8 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(61, 143, 212, 0.35);
}

.btn--primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  box-shadow: 0 12px 28px rgba(61, 143, 212, 0.42);
  transform: translateY(-1px);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 999px;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.link-btn {
  background: none;
  border: none;
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
}

.hero--home {
  padding: 2.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  border: 1px solid rgba(61, 143, 212, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(61, 143, 212, 0.08);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  color: var(--navy);
  font-weight: 800;
}

.hero__lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Hero aside — visual block */
.hero__aside {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(94, 196, 232, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__illustration {
  position: absolute;
  width: 85%;
  max-width: 400px;
  opacity: 0.55;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.estimate-widget {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.estimate-widget__top {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.estimate-widget__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.estimate-widget__type {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.estimate-widget__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}

.estimate-widget__price small {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.estimate-widget__bar {
  height: 6px;
  background: var(--bg-elevated);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.estimate-widget__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 999px;
}

.estimate-widget__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.estimate-widget__cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.estimate-widget__cta:hover {
  background: rgba(61, 143, 212, 0.2);
}

.float-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.float-badge strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}

.float-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.float-badge--1 {
  top: 8%;
  right: 0;
  animation: float 4s ease-in-out infinite;
}

.float-badge--2 {
  bottom: 12%;
  left: 0;
  animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Form section */
.form-section {
  padding: 2rem 0 5rem;
}

.form-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-section__header h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.form-section__header p {
  color: var(--text-muted);
  margin: 0;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin-inline: auto;
}

/* Steps indicator */
.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.step--active,
.step--done {
  opacity: 1;
}

.step__num {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
}

.step--active .step__num {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-color: transparent;
  color: #fff;
}

.step--done .step__num {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.step__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

/* Form steps */
.form-step {
  display: none;
}

.form-step--active {
  display: block;
  animation: fadeIn 0.25s ease;
}

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

.form-step h3 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
}

.field {
  margin-bottom: 1rem;
}

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

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

.hint {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: -0.5rem 0 1rem;
}

/* Dropzone */
.dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 1rem;
}

.dropzone:hover,
.dropzone--dragover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.dropzone__content {
  color: var(--text-muted);
}

.dropzone__content svg {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.dropzone__content p {
  margin: 0;
}

.photo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.photo-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: var(--bg-elevated);
  border-radius: 8px;
  font-size: 0.875rem;
}

.photo-list button {
  background: none;
  border: none;
  color: var(--error);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25rem 0.5rem;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* Actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-error {
  color: #c45c5c;
  font-size: 0.875rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(229, 115, 115, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(229, 115, 115, 0.25);
}

/* Success */
.success-panel {
  text-align: center;
  padding: 2rem 1rem;
}

.success-panel__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 138, 0.15);
  color: var(--success);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
}

.success-panel h3 {
  margin: 0 0 0.5rem;
}

.success-panel p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: auto;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer__inner p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__aside {
    min-height: 360px;
    order: -1;
  }

  .float-badge--1 { right: 5%; top: 5%; }
  .float-badge--2 { left: 5%; bottom: 5%; }

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

  .hero__card {
    order: -1;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .steps .step__label {
    display: none;
  }

  .form-card {
    padding: 1.25rem;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow);
    z-index: 50;
  }

  .nav--open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }

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

  .process__steps--4 {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

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

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem;
  min-width: 0;
}

.nav a {
  padding: 0.45rem 0.7rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav a:hover,
.nav a.nav__link--active {
  color: var(--accent);
  background: var(--accent-soft);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  cursor: pointer;
  color: var(--text);
}

/* ── Sections ── */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--border);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 800;
}

.section__header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 800;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

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

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  opacity: 0;
  transition: opacity 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 143, 212, 0.25);
}

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

.card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  color: var(--accent);
  border-radius: 14px;
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.card__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.card__link:hover {
  text-decoration: underline;
}

/* ── Process steps ── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.process__steps--4 {
  grid-template-columns: repeat(4, 1fr);
}


/* ── Pain / benefits ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.pain-card:hover {
  transform: translateY(-2px);
}

.pain-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 115, 115, 0.1);
  border-radius: 10px;
  font-size: 1.1rem;
}

.pain-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-top: 0.35rem;
}

.pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pain-list li,
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

.pain-list li::before {
  content: "✕";
  color: var(--error);
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CTA band ── */
.cta-band {
  padding: 3rem 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #2b7bc0 0%, #3d8fd4 40%, #5ec4e8 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 24px 56px rgba(43, 123, 192, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-band__inner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  pointer-events: none;
}

.cta-band__inner > div,
.cta-band .btn--primary {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
  font-size: 1rem;
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.cta-band .btn--primary:hover {
  background: #f0f8ff;
}

.cta-band--muted {
  padding-top: 0;
}

.cta-band--muted .cta-band__inner {
  background: #f8fafc;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-band--muted .cta-band__inner::before {
  display: none;
}

.cta-band--muted p {
  color: var(--muted);
  opacity: 1;
}

.cta-band--muted .btn--outline {
  flex-shrink: 0;
}

/* ── Trust bar ── */
.trust-bar {
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.trust-bar__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--accent-soft);
  border-radius: 8px;
  font-size: 0.9rem;
}

.trust-bar__item strong {
  color: var(--navy);
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* ── Footer extended ── */
.footer {
  padding: 3rem 0 2rem;
  background: rgba(255, 255, 255, 0.5);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  max-width: 280px;
}

.footer__col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer__col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

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

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__bottom p {
  margin: 0;
}

/* ── Hero extras ── */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.hero__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.price-preview {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
}

.price-preview__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.price-preview__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.price-preview__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Suppliers & social feed */
.suppliers-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.suppliers-layout__feed .section__eyebrow,
.suppliers-layout__catalog .section__eyebrow {
  margin-bottom: 1rem;
}
.suppliers-grid {
  display: grid;
  gap: 0.85rem;
}
.supplier-card {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  width: 100%;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.supplier-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.supplier-card__avatar,
.feed-post__avatar,
.social-profile__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(26, 60, 100, 0.1);
}
.supplier-card__avatar img,
.feed-post__avatar img,
.social-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.supplier-card__body h3 { margin: 0 0 0.2rem; font-size: 0.98rem; }
.supplier-card__cats,
.feed-post__meta { font-size: 0.78rem; color: var(--text-muted); margin: 0 0 0.35rem; display: block; }
.supplier-card__desc { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.4; }
.supplier-card__news {
  margin: 0.5rem 0 0;
  padding: 0.45rem 0.6rem;
  background: var(--accent-soft);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
}
.supplier-verified { color: var(--success); font-size: 0.8rem; font-weight: 600; margin-left: 0.25rem; }
.feed-stream { display: grid; gap: 1rem; max-width: 680px; }
.feed-post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 2px 12px rgba(26, 60, 100, 0.05);
}
.feed-post__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.feed-post__author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.feed-post__author strong { display: block; font-size: 0.95rem; }
.feed-post__head time { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.feed-post__link { text-decoration: none; color: inherit; display: block; }
.feed-post__link h3,
.feed-post__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.feed-post__link p,
.feed-post__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}
.feed-post__photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.feed-post__photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.feed-empty { color: var(--text-muted); text-align: center; padding: 2rem; }
.back-link { display: inline-block; margin-bottom: 1.25rem; color: var(--accent); text-decoration: none; font-weight: 600; }

/* Social profile page */
.social-profile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.social-profile__cover {
  height: 120px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}
.social-profile__main {
  display: flex;
  gap: 1.25rem;
  padding: 0 1.5rem;
  margin-top: -40px;
  align-items: flex-end;
}
.social-profile__avatar {
  width: 88px;
  height: 88px;
  font-size: 2rem;
}
.social-profile__info { padding-bottom: 1rem; flex: 1; min-width: 0; }
.social-profile__info h1 { margin: 0 0 0.25rem; font-size: 1.5rem; }
.social-profile__cats { color: var(--text-muted); margin: 0 0 0.5rem; font-size: 0.9rem; }
.social-profile__bio { margin: 0; line-height: 1.55; }
.social-profile__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.5rem 1.25rem;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text);
}
.contact-chip:hover { border-color: var(--accent); color: var(--accent); }
.social-profile__gallery {
  display: flex;
  gap: 0.5rem;
  padding: 0 1.5rem 1.25rem;
  overflow-x: auto;
}
.social-profile__gallery-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.supplier-feed-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.feed-post--profile .feed-post__head { margin-bottom: 0.5rem; }

.suppliers-grid--page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.partners-section {
  padding-top: 0;
  padding-bottom: 2.5rem;
}
.partners-section--alt {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.partners-section__head {
  margin-bottom: 1.25rem;
}
.partners-section__head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}
.partner-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}
.partner-badge--executor {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.supplier-card--page {
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
}
.supplier-card__avatar--lg {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}
.supplier-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.supplier-modal--wide { max-width: 640px; }
.supplier-modal__avatar--lg { width: 80px; height: 80px; font-size: 1.8rem; }
.supplier-modal__posts {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.supplier-modal__posts h3 { margin: 0 0 0.75rem; font-size: 1rem; }
.supplier-modal__post {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.supplier-modal__post h4 { margin: 0.25rem 0; font-size: 0.95rem; }
.supplier-modal__post time { font-size: 0.75rem; color: var(--text-muted); }
.supplier-modal__post p { margin: 0; font-size: 0.88rem; color: var(--text-muted); line-height: 1.45; }

.header-user {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-right: 0.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.15rem 0.15rem 0.15rem 0.25rem;
  box-shadow: 0 1px 3px rgba(26, 60, 100, 0.06);
}
.header-user__link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  padding: 0.2rem 0.55rem 0.2rem 0.15rem;
  border-radius: 999px;
  transition: background 0.15s;
}
.header-user__link:hover { background: var(--accent-soft); }
.header-user__info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.05rem;
}
.header-user__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.header-user__name { font-weight: 600; font-size: 0.82rem; white-space: nowrap; }
.header-user__role { font-size: 0.68rem; color: var(--text-muted); white-space: nowrap; }
.header-user__logout {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.header-user__logout:hover {
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
}

@media (max-width: 900px) {
  .suppliers-layout { grid-template-columns: 1fr; }
  .social-profile__main { flex-direction: column; align-items: flex-start; margin-top: -50px; }
}

.feed-post__body h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.feed-post__body p { margin: 0; line-height: 1.55; color: var(--text-muted); }
.feed-post__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.feed-action {
  background: none;
  border: none;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.feed-action:hover { text-decoration: underline; }
.feed-post__author {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.supplier-modal {
  border: none;
  border-radius: 16px;
  padding: 0;
  max-width: 520px;
  width: calc(100% - 2rem);
  box-shadow: 0 20px 60px rgba(26, 60, 100, 0.2);
}
.supplier-modal::backdrop { background: rgba(15, 35, 60, 0.45); }
.supplier-modal__inner { padding: 1.5rem; position: relative; }
.supplier-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: #f0f4f8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}
.supplier-modal__head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.supplier-modal__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--secondary-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  overflow: hidden;
  flex-shrink: 0;
}
.supplier-modal__avatar img { width: 100%; height: 100%; object-fit: cover; }
.supplier-modal__head h2 { margin: 0 0 0.25rem; font-size: 1.2rem; }
.supplier-modal__desc { line-height: 1.55; margin: 0 0 1rem; }
.supplier-modal__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.supplier-modal__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.supplier-modal__gallery-img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
}
