/* ── Marketing / public pages ───────────────────────────── */

.marketing-body {
  background: #f8fbf9;
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.marketing-main {
  flex: 1;
}

.marketing-container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* Nav */
.marketing-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.marketing-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.marketing-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}

.marketing-nav__brand:hover .marketing-nav__wordmark-sub { color: var(--accent); }

.marketing-nav__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(13, 69, 48, 0.32));
  transition: filter 0.2s ease, transform 0.2s ease;
}

.marketing-nav__brand:hover .marketing-nav__logo-icon {
  filter: drop-shadow(0 5px 14px rgba(13, 69, 48, 0.44));
  transform: translateY(-1px);
}

.marketing-nav__wordmark {
  line-height: 1;
  letter-spacing: -0.02em;
}

.marketing-nav__wordmark-main {
  font-weight: 800;
  background: linear-gradient(135deg, #197b5b 0%, #22c47d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marketing-nav__wordmark-sub {
  font-weight: 700;
  color: var(--ink);
  transition: color 0.15s ease;
}

.marketing-nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.marketing-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.marketing-nav__link:hover,
.marketing-nav__link--active {
  color: #197b5b;
}

.marketing-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marketing-nav__link--signin {
  margin-right: 4px;
}

.marketing-nav__start {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  min-width: 0;
}

.marketing-nav__toggle {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.marketing-nav__toggle:hover {
  background: #f6fbf8;
  border-color: #c8ddd4;
}

.marketing-nav__overlay {
  background: rgba(15, 26, 23, 0.45);
  inset: 0;
  position: fixed;
  z-index: 150;
}

.marketing-nav__overlay[hidden] { display: none !important; }

.marketing-nav__mobile-menu {
  background: #fff;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  left: 0;
  max-width: 90vw;
  position: fixed;
  top: 0;
  transform: translateX(calc(-100% - 8px));
  transition: transform 0.2s ease;
  width: min(320px, 90vw);
  z-index: 160;
}

.marketing-nav__mobile-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 16px 18px;
}

.marketing-nav__mobile-title {
  font-size: 15px;
  font-weight: 700;
}

.marketing-nav__mobile-close {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.marketing-nav__mobile-links {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 8px 12px;
}

.marketing-nav__mobile-menu .marketing-nav__link {
  border-radius: 10px;
  display: block;
  font-size: 16px;
  padding: 14px 12px;
}

.marketing-nav__mobile-menu .marketing-nav__link:hover,
.marketing-nav__mobile-menu .marketing-nav__link--active {
  background: #f0f7f4;
}

.marketing-nav__mobile-actions {
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
}

.marketing-nav__mobile-actions .marketing-btn {
  justify-content: center;
  width: 100%;
}

body.marketing-nav-open {
  overflow: hidden;
}

body.marketing-nav-open .marketing-nav__mobile-menu {
  transform: translateX(0);
}

body.marketing-nav-open .marketing-nav__toggle {
  background: #eef7f2;
  border-color: #197b5b;
  color: #197b5b;
}

/* Buttons */
.marketing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.marketing-btn:hover { transform: translateY(-1px); }

.marketing-btn--primary {
  background: linear-gradient(135deg, #197b5b 0%, #0f5f45 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(25, 123, 91, 0.28);
}

.marketing-btn--primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(25, 123, 91, 0.35); }

.marketing-btn--ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.marketing-btn--ghost:hover { border-color: #197b5b; color: #197b5b; }

.marketing-btn--inverse {
  background: #fff;
  color: #197b5b;
}

.marketing-btn--lg { padding: 14px 24px; font-size: 15px; }

/* Hero */
.marketing-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(25, 123, 91, 0.14), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(25, 123, 91, 0.08), transparent),
    linear-gradient(180deg, #eef7f2 0%, #f8fbf9 100%);
}

.marketing-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.marketing-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #197b5b;
  margin-bottom: 12px;
}

.marketing-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.marketing-gradient-text {
  background: linear-gradient(135deg, #197b5b, #2aa87a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marketing-hero__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 28px;
}

.marketing-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.marketing-hero__note {
  font-size: 13px;
  color: var(--muted);
}

.marketing-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.marketing-capability-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #197b5b;
  border: 1px solid rgba(25, 123, 91, 0.2);
}

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

.marketing-highlight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketing-highlight-card:hover {
  border-color: rgba(25, 123, 91, 0.35);
  box-shadow: 0 12px 32px rgba(25, 123, 91, 0.08);
  transform: translateY(-2px);
}

.marketing-highlight-card--featured {
  grid-column: span 3;
  background: linear-gradient(135deg, #f4fbf7 0%, #fff 100%);
  border-color: rgba(25, 123, 91, 0.25);
}

.marketing-highlight-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 12px 0 8px;
}

.marketing-highlight-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.marketing-highlight-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
}

.marketing-highlight-list li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.marketing-highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #197b5b;
  font-weight: 700;
}

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

.marketing-compare-band {
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.marketing-compare-band p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.55;
}

.marketing-hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(22, 32, 31, 0.1);
  overflow: hidden;
}

.marketing-hero-card__header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #f4f7f5;
  border-bottom: 1px solid var(--line);
}

.marketing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.marketing-dot--green { background: #34c759; }
.marketing-dot--amber { background: #ffcc00; }
.marketing-dot--red { background: #ff6b6b; }

.marketing-hero-card__body { padding: 24px; }

.marketing-hero-card__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marketing-hero-card__keyword {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 20px;
}

.marketing-progress {
  height: 8px;
  background: var(--accent-soft);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 20px;
}

.marketing-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #197b5b, #2aa87a);
  border-radius: 99px;
  animation: marketing-pulse 2.5s ease-in-out infinite;
}

@keyframes marketing-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.marketing-hero-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.marketing-hero-card__stats strong {
  display: block;
  font-size: 20px;
  color: var(--ink);
}

.marketing-hero-card__email-preview {
  background: #f4fbf7;
  border: 1px solid rgba(25, 123, 91, 0.15);
  border-radius: 10px;
  margin-top: 18px;
  padding: 12px 14px;
}

.marketing-hero-card__email-label {
  color: #197b5b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.marketing-hero-card__email-subject {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.marketing-hero-card__email-snippet {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

/* Trust bar */
.marketing-trust {
  padding: 0 0 56px;
}

.marketing-trust__bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(22, 32, 31, 0.05);
}

.marketing-trust__item {
  text-align: center;
}

.marketing-trust__value {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #197b5b;
}

.marketing-trust__label {
  font-size: 13px;
  color: var(--muted);
}

/* Sections */
.marketing-section {
  padding: 72px 0;
}

.marketing-section--alt {
  background: #fff;
  border-block: 1px solid var(--line);
}

.marketing-section__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 48px;
}

.marketing-section__header h2 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
}

.marketing-section__lead {
  color: var(--muted);
  font-size: 16px;
}

/* Features */
.marketing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(25, 123, 91, 0.35);
  box-shadow: 0 12px 32px rgba(25, 123, 91, 0.1);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #197b5b;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Steps */
.marketing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: none;
}

.marketing-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.marketing-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #197b5b;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.marketing-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.marketing-step p {
  font-size: 14px;
  color: var(--muted);
}

/* Values */
.marketing-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.marketing-value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}

.marketing-value-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #197b5b;
}

.marketing-value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Team */
.marketing-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.marketing-team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  text-align: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketing-team-card:hover {
  border-color: rgba(25, 123, 91, 0.35);
  box-shadow: 0 12px 32px rgba(25, 123, 91, 0.1);
  transform: translateY(-2px);
}

.marketing-team-card__trigger {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  padding: 28px 24px;
  text-align: center;
  width: 100%;
}

.marketing-team-card__trigger:focus-visible {
  border-radius: 14px;
  outline: 2px solid #197b5b;
  outline-offset: 2px;
}

.marketing-team-card__photo-wrap {
  border-radius: 50%;
  height: 112px;
  margin: 0 auto 16px;
  overflow: hidden;
  width: 112px;
}

.marketing-team-card__photo {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.marketing-team-card__name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.marketing-team-card__role {
  color: #197b5b;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.marketing-team-card__cta {
  color: var(--muted);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
}

.marketing-team-card__trigger:hover .marketing-team-card__cta {
  color: #197b5b;
}

.marketing-team-modal {
  background: rgba(15, 23, 42, 0.55);
  border: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  overflow: hidden;
  padding: 16px;
  width: 100%;
}

.marketing-team-modal::backdrop {
  background: rgba(15, 23, 42, 0.55);
}

.marketing-team-modal__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  margin: auto;
  max-height: min(92dvh, calc(100dvh - 32px));
  max-width: 32rem;
  overflow: auto;
  position: relative;
  width: 100%;
}

.marketing-team-modal__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  z-index: 1;
}

.marketing-team-modal__close:hover {
  background: #fff;
  color: #197b5b;
}

.marketing-team-modal__header {
  background: linear-gradient(180deg, rgba(25, 123, 91, 0.08), transparent);
  border-bottom: 1px solid var(--line);
  padding: 28px 24px 20px;
  text-align: center;
}

.marketing-team-modal__photo-wrap {
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(25, 123, 91, 0.15);
  height: 112px;
  margin: 0 auto 16px;
  overflow: hidden;
  width: 112px;
}

.marketing-team-modal__photo {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.marketing-team-modal__name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.marketing-team-modal__role {
  color: #197b5b;
  font-size: 0.95rem;
  font-weight: 600;
}

.marketing-team-modal__body {
  padding: 20px 24px 24px;
}

.marketing-team-modal__bio-label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.marketing-team-modal__bio {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  white-space: pre-line;
}

body.marketing-team-modal-open {
  overflow: hidden;
}

/* Testimonials */
.marketing-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.marketing-testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 28px;
}

.marketing-section--alt .marketing-testimonial-card,
.marketing-section--alt .marketing-team-card {
  background: var(--paper);
}

.marketing-testimonial-card__stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
}

.marketing-testimonial-card__quote {
  color: var(--text);
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.marketing-testimonial-card__author {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
}

.marketing-testimonial-card__author strong {
  font-size: 14px;
}

.marketing-testimonial-card__author span {
  color: var(--muted);
  font-size: 13px;
}

/* Pricing teaser */
.marketing-pricing-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.marketing-pricing-teaser__copy h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
}

.marketing-pricing-teaser__copy p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 28rem;
}

.marketing-pricing-card {
  background: linear-gradient(145deg, #0f5f45 0%, #197b5b 55%, #2aa87a 100%);
  color: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(15, 95, 69, 0.35);
}

.marketing-pricing-card__badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.marketing-pricing-card__amount {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0;
}

.marketing-pricing-card__amount span {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
}

.marketing-pricing-card__detail {
  opacity: 0.92;
  margin-bottom: 20px;
}

.marketing-pricing-card ul {
  list-style: none;
  font-size: 14px;
}

.marketing-pricing-card li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}

.marketing-pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* CTA band */
.marketing-cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, #0f5f45, #197b5b);
  color: #fff;
}

.marketing-cta-band__inner {
  text-align: center;
}

.marketing-cta-band h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.marketing-cta-band p {
  opacity: 0.92;
  margin-bottom: 24px;
}

/* Page hero (about, contact) */
.marketing-page-hero {
  padding: 56px 0 32px;
  background: linear-gradient(180deg, #eef7f2 0%, #f8fbf9 100%);
}

.marketing-page-hero__inner {
  max-width: 40rem;
}

.marketing-page-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.marketing-page-hero__lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* Prose */
.marketing-prose {
  max-width: 42rem;
}

.marketing-prose h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 12px;
}

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

.marketing-prose p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.marketing-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.marketing-list li { margin-bottom: 8px; }

.marketing-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Contact form */
.marketing-contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.marketing-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
}

.marketing-form__field {
  margin-bottom: 20px;
}

.marketing-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.marketing-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.marketing-input:focus {
  outline: none;
  border-color: #197b5b;
  box-shadow: 0 0 0 3px rgba(25, 123, 91, 0.15);
}

.marketing-input--area {
  resize: vertical;
  min-height: 140px;
}

.marketing-form textarea.input {
  min-height: 140px;
  resize: vertical;
}

.marketing-contact__aside h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.marketing-contact__aside p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.55;
}

/* Footer */
.marketing-footer {
  margin-top: auto;
  background: #0f1a17;
  color: #c5d5ce;
  padding: 48px 0 0;
}

.marketing-footer .marketing-nav__brand {
  color: #e8f2ed;
  margin-bottom: 10px;
}

.marketing-footer__tagline {
  font-size: 14px;
  max-width: 16rem;
  line-height: 1.5;
}

.marketing-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.marketing-footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e8f2ed;
  margin-bottom: 14px;
}

.marketing-footer__links a {
  display: block;
  font-size: 14px;
  color: #8fa59c;
  padding: 4px 0;
}

.marketing-footer__links a:hover { color: #fff; }

.marketing-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 13px;
  color: #8fa59c;
}

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

.marketing-footer__bottom-grid p {
  margin: 0;
  line-height: 1.6;
}

.marketing-footer__bottom-grid a {
  color: #8fa59c;
}

.marketing-footer__bottom-grid a:hover {
  color: #fff;
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 1200;
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 26, 23, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #e8f2ed;
}

.cookie-consent__text {
  margin: 0;
  max-width: 52rem;
  font-size: 14px;
  line-height: 1.55;
  color: #b8cbc2;
}

.cookie-consent__text a {
  color: #6ee7a8;
  text-decoration: underline;
}

.cookie-consent__text a:hover {
  color: #fff;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.cookie-consent__btn {
  white-space: nowrap;
}

.cookie-consent__footer-link,
.cookie-consent__inline-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #8fa59c;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-consent__footer-link:hover,
.cookie-consent__inline-link:hover {
  color: #fff;
}

.marketing-prose .cookie-consent__inline-link {
  color: #0d4530;
}

.marketing-prose .cookie-consent__inline-link:hover {
  color: #22c47d;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-icons--marketing {
  margin-top: 18px;
}

.footer-icons__link {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #c5d5ce;
  display: inline-flex;
  gap: 8px;
  padding: 8px 12px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.footer-icons__link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer-icons__label {
  font-size: 13px;
  font-weight: 600;
}

.footer-credit {
  margin: 0;
  font-size: 13px;
  color: #8fa59c;
}

.footer-credit__link {
  align-items: center;
  color: #c5d5ce;
  display: inline-flex;
  font-weight: 600;
  gap: 4px;
  margin-left: 4px;
}

.footer-credit__link:hover {
  color: #fff;
}

.footer-credit--marketing {
  text-align: right;
}

/* Flash on marketing pages (not auth — auth uses .auth-shell) */
.marketing-main:not(.marketing-main--auth) .flash-notice,
.marketing-main:not(.marketing-main--auth) .flash-alert,
.marketing-main:not(.marketing-main--auth) [class*="flash"] {
  margin: 16px auto;
  width: min(1120px, calc(100% - 40px));
}

/* Animations */
.marketing-fade-in {
  animation: marketing-fade-in 0.7s ease both;
}

.marketing-fade-in--delay {
  animation-delay: 0.15s;
}

@keyframes marketing-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-fade-in,
  .marketing-fade-in--delay,
  .marketing-progress__bar {
    animation: none;
  }
}

/* ── Solutions hub & ad landing pages ───────────────────── */
.marketing-solutions-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.marketing-solution-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.marketing-solution-card__eyebrow { margin-bottom: 0; }

.marketing-solution-card h2 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.marketing-solution-card p {
  color: var(--muted);
  flex: 1;
  line-height: 1.55;
}

.marketing-solution-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marketing-solution-card__pills li {
  background: #eef7f2;
  border-radius: 999px;
  color: #197b5b;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
}

.marketing-solution-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.marketing-cta-band__secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.marketing-cta-band__secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.marketing-landing-hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(25, 123, 91, 0.14), transparent),
    linear-gradient(180deg, #eef7f2 0%, #f8fbf9 100%);
  padding: 56px 0 40px;
}

.marketing-landing-hero__grid {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.05fr 0.95fr;
}

.marketing-landing-hero__title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}

.marketing-landing-hero__lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 34rem;
}

.marketing-landing-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.marketing-landing-hero__note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.marketing-landing-hero__visual {
  position: relative;
}

.marketing-landing-badge {
  background: linear-gradient(135deg, #197b5b, #0f5f45);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(25, 123, 91, 0.35);
  color: #fff;
  padding: 14px 18px;
  position: absolute;
  right: -8px;
  text-align: center;
  top: -12px;
}

.marketing-landing-badge__value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.marketing-landing-badge__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketing-landing-stats {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 28px 0;
}

.marketing-landing-stats__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.marketing-landing-stat__value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.marketing-landing-stat__label {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

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

.marketing-landing-benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}

.marketing-landing-benefit__icon {
  align-items: center;
  background: #eef7f2;
  border-radius: 10px;
  color: #197b5b;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  margin-bottom: 12px;
  width: 40px;
}

.marketing-landing-benefit h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.marketing-landing-benefit p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.marketing-landing-faq__list {
  display: grid;
  gap: 10px;
  max-width: 44rem;
}

.marketing-landing-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
}

.marketing-landing-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 16px 0;
}

.marketing-landing-faq__item summary::-webkit-details-marker { display: none; }

.marketing-landing-faq__item p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  padding: 0 0 16px;
}

.marketing-landing-pricing { padding-top: 8px; }

.marketing-landing-sticky-cta {
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: 0 -8px 24px rgba(19, 41, 33, 0.08);
  display: none;
  left: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 60;
}

.marketing-landing-sticky-cta .marketing-btn {
  justify-content: center;
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .marketing-nav__inner {
    gap: 12px;
  }

  .marketing-nav__start {
    flex: 1;
    min-width: 0;
  }

  .marketing-nav__toggle { display: inline-flex; }

  .marketing-nav__links { display: none; }

  .marketing-nav__actions {
    margin-left: auto;
  }

  .marketing-nav__actions .marketing-btn--primary {
    display: none;
  }

  .marketing-hero__grid,
  .marketing-pricing-teaser,
  .marketing-contact,
  .marketing-footer__grid {
    grid-template-columns: 1fr;
  }

  .marketing-footer__bottom-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-consent__actions .cookie-consent__btn {
    width: 100%;
    justify-content: center;
  }

  .footer-credit--marketing {
    text-align: left;
  }

  .marketing-hero { padding-top: 48px; }

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

  .marketing-features,
  .marketing-steps,
  .marketing-highlight-grid,
  .marketing-steps--four,
  .marketing-values-grid,
  .marketing-team-grid {
    grid-template-columns: 1fr;
  }

  .marketing-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .marketing-highlight-card--featured {
    grid-column: span 1;
  }

  .marketing-solutions-grid,
  .marketing-landing-benefits,
  .marketing-landing-stats__grid {
    grid-template-columns: 1fr;
  }

  .marketing-landing-hero__grid {
    grid-template-columns: 1fr;
  }

  .marketing-landing-sticky-cta { display: block; }
}

@media (max-width: 600px) {
  .marketing-nav__actions .marketing-nav__link--signin { display: none; }

  .marketing-body--auth .marketing-nav__wordmark { display: none; }

  .marketing-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .marketing-hero__cta .marketing-btn { width: 100%; }
}
