:root {
  --mkt-bg: #0a6b5c;
  --mkt-bg-deep: #043f38;
  --mkt-bg-mid: #075a4e;
  --mkt-bg-soft: #0d7a69;
  --mkt-accent: #1ecf9a;
  --mkt-accent-deep: #0b9f6e;
  --mkt-orange: #f0b429;
  --mkt-text: #ffffff;
  --mkt-muted: rgba(255, 255, 255, 0.78);
  --mkt-card: rgba(255, 255, 255, 0.08);
  --mkt-light: #f5fbf8;
  --mkt-soft: #e8f5f0;
  --mkt-ink: #102820;
  --mkt-ink-muted: #4d6b62;
  --mkt-radius: 20px;
  --mkt-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --mkt-display: "Outfit", "Plus Jakarta Sans", sans-serif;
  --mkt-shadow: 0 18px 50px rgba(4, 63, 56, 0.12);
}

* { box-sizing: border-box; }

body.mkt-body {
  margin: 0;
  font-family: var(--mkt-font);
  color: var(--mkt-text);
  background: var(--mkt-bg-deep);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* —— Header —— */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 63, 56, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
}

.mkt-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mkt-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mkt-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2dd4a8, #0b9f6e);
  color: #043f38;
  font-family: var(--mkt-display);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(30, 207, 154, 0.28);
}

.mkt-logo-text strong { font-weight: 800; }

.mkt-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.mkt-nav > a,
.mkt-dropdown > button {
  color: var(--mkt-muted);
  padding: 8px 14px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 550;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.mkt-nav > a:hover,
.mkt-nav > a.active,
.mkt-dropdown > button:hover,
.mkt-dropdown > button.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.mkt-dropdown { position: relative; }

.mkt-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  color: var(--mkt-ink);
  border-radius: 14px;
  box-shadow: var(--mkt-shadow);
  padding: 8px;
  z-index: 20;
  animation: mkt-fade-down 0.2s ease;
}

.mkt-dropdown.open .mkt-dropdown-menu { display: block; }

.mkt-dropdown-menu a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--mkt-ink);
  font-weight: 500;
}

.mkt-dropdown-menu a:hover {
  background: #e8f5f0;
  color: #0b7a55;
}

.mkt-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mkt-link {
  color: var(--mkt-muted);
  font-weight: 600;
}

.mkt-link:hover { color: #fff; }

.mkt-nav-toggle {
  margin-left: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

/* —— Buttons —— */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-family: var(--mkt-font);
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.mkt-btn:hover { transform: translateY(-1px); }

.mkt-btn-light {
  background: #fff;
  color: #043f38;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.mkt-btn-light:hover {
  background: #e8fff6;
  color: #043f38;
}

.mkt-btn-solid {
  background: linear-gradient(145deg, #0d7a69, #055549);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.mkt-btn-solid:hover {
  background: linear-gradient(145deg, #0e8876, #064e46);
  color: #fff;
}

.mkt-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.mkt-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.mkt-section-light .mkt-btn-solid,
.mkt-section-soft .mkt-btn-solid,
.mkt-section-muted .mkt-btn-solid {
  box-shadow: 0 12px 30px rgba(4, 63, 56, 0.18);
}

/* —— Brand signal —— */
.mkt-brand-signal {
  font-family: var(--mkt-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: #b8ffe6;
  animation: mkt-fade-up 0.7s ease both;
}

.mkt-brand-signal-center { text-align: center; }

.mkt-brand-signal-ink {
  color: var(--mkt-accent-deep);
}

/* —— Hero —— */
.mkt-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(30, 207, 154, 0.18), transparent 55%),
    linear-gradient(155deg, #0a6b5c 0%, #065a4e 42%, #043f38 100%);
  padding: 64px 0 88px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.mkt-hero-glow {
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 55%;
  background: radial-gradient(circle, rgba(30, 207, 154, 0.22), transparent 65%);
  pointer-events: none;
}

.mkt-hero-copy {
  position: relative;
  z-index: 1;
}

.mkt-hero h1 {
  font-family: var(--mkt-display);
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  max-width: 12ch;
  animation: mkt-fade-up 0.75s ease 0.08s both;
}

.mkt-hero-lead {
  color: var(--mkt-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 34rem;
  margin: 0;
  animation: mkt-fade-up 0.75s ease 0.16s both;
}

.mkt-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  animation: mkt-fade-up 0.75s ease 0.24s both;
}

/* —— Phone mock —— */
.mkt-phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mkt-phone {
  width: min(100%, 340px);
  background: #0b1220;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mkt-phone-float {
  animation: mkt-float 5.5s ease-in-out infinite;
}

.mkt-phone-top {
  background: linear-gradient(180deg, #0b7a55, #075e54);
  padding: 18px 18px 16px;
}

.mkt-phone-top strong { display: block; font-weight: 700; }
.mkt-phone-top small { opacity: 0.8; }

.mkt-chat {
  padding: 18px;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(11, 122, 85, 0.12), transparent 40%),
    #0e1628;
}

.bubble {
  max-width: 88%;
  background: #1a2a22;
  border-radius: 14px 14px 14px 4px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
  border: 1px solid rgba(30, 207, 154, 0.12);
}

.mkt-bubble-in {
  opacity: 0;
  animation: mkt-bubble-in 0.55s ease var(--d, 0s) forwards;
}

.mkt-chat-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  color: #142033;
  border-radius: 14px;
  padding: 12px;
  margin-top: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.mkt-chat-card i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f8f1;
  color: #0b9f6e;
  flex-shrink: 0;
}

.mkt-chat-card strong,
.mkt-chat-card span { display: block; }

.mkt-chat-card span {
  color: #607089;
  font-size: 0.82rem;
}

.mkt-phone-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #121a2b;
  color: rgba(255, 255, 255, 0.55);
}

.mkt-phone-input i { color: #1ecf9a; }

/* —— Page heroes —— */
.mkt-page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(30, 207, 154, 0.16), transparent 55%),
    linear-gradient(160deg, #0a6b5c, #043f38);
  padding: 56px 0 44px;
  text-align: center;
}

.mkt-page-hero-light {
  background: var(--mkt-light);
  color: var(--mkt-ink);
}

.mkt-page-hero h1 {
  font-family: var(--mkt-display);
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.mkt-page-hero p {
  color: var(--mkt-muted);
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1.05rem;
}

.mkt-page-hero-light p { color: var(--mkt-ink-muted); }

/* —— Billing toggle —— */
.mkt-billing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mkt-billing-toggle button {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-family: var(--mkt-font);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.mkt-billing-toggle button.active {
  background: #fff;
  color: #043f38;
}

.mkt-billing-toggle .disc {
  display: inline-block;
  margin-left: 6px;
  background: var(--mkt-orange);
  color: #1a1408;
  font-size: 0.68rem;
  border-radius: 999px;
  padding: 2px 6px;
}

/* —— Sections —— */
.mkt-section { padding: 80px 0; }

.mkt-section-light {
  background: #fff;
  color: var(--mkt-ink);
}

.mkt-section-soft {
  background: var(--mkt-soft);
  color: var(--mkt-ink);
}

.mkt-section-muted {
  background: #eef4f1;
  color: var(--mkt-ink);
}

.mkt-pricing-section {
  background: linear-gradient(180deg, #043f38 0%, #0a6b5c 100%);
  margin-top: -1px;
}

.mkt-section-title {
  font-family: var(--mkt-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.mkt-section-lead {
  color: var(--mkt-ink-muted);
  font-size: 1.05rem;
  margin: 0;
}

.mkt-muted {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

/* —— Features —— */
.mkt-feature {
  background: #fff;
  border: 1px solid rgba(16, 40, 32, 0.06);
  border-radius: var(--mkt-radius);
  padding: 26px 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(4, 63, 56, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mkt-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--mkt-shadow);
}

.mkt-feature i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8f8f1, #d4f5e8);
  color: #0b9f6e;
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.mkt-feature h3,
.mkt-feature h4 {
  font-family: var(--mkt-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.mkt-feature p {
  color: var(--mkt-ink-muted);
  margin: 0;
  line-height: 1.55;
}

.mkt-sector-card { padding: 28px 24px; }

/* —— Checklist / stats —— */
.mkt-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mkt-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-weight: 600;
  color: var(--mkt-ink);
}

.mkt-checklist i {
  color: #0b9f6e;
  margin-top: 3px;
  flex-shrink: 0;
}

.mkt-stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  height: 100%;
  border: 1px solid rgba(16, 40, 32, 0.06);
  box-shadow: 0 8px 24px rgba(4, 63, 56, 0.05);
}

.mkt-stat-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0b9f6e;
  margin-bottom: 8px;
}

.mkt-stat-card strong {
  display: block;
  font-family: var(--mkt-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--mkt-ink);
}

.mkt-stat-card p {
  margin: 0;
  color: var(--mkt-ink-muted);
  font-size: 0.95rem;
}

/* —— CTA band —— */
.mkt-cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(30, 207, 154, 0.2), transparent 50%),
    linear-gradient(160deg, #0a6b5c, #043f38);
  padding: 72px 0;
  text-align: center;
}

.mkt-cta-band h2 {
  font-family: var(--mkt-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.mkt-cta-band p {
  color: var(--mkt-muted);
  margin: 0 auto 8px;
  max-width: 32rem;
}

/* —— Pricing —— */
.mkt-price-card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.mkt-price-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.mkt-price-card.popular {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.mkt-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: #043f38;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 10px;
}

.mkt-price-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
  color: #7dffc5;
}

.mkt-price-card h3 {
  margin: 0 0 4px;
  font-family: var(--mkt-display);
  font-weight: 800;
}

.mkt-price-card .tagline {
  color: var(--mkt-muted);
  min-height: 44px;
  margin-bottom: 0;
}

.mkt-price-amount { margin: 12px 0 6px; }

.mkt-price-amount .price-value {
  font-family: var(--mkt-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mkt-price-amount .price-period { color: var(--mkt-muted); }

.price-note {
  color: #ffe8b3;
  font-size: 0.85rem;
  margin: 0;
}

.mkt-price-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}

.mkt-price-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.92);
}

.mkt-price-features i {
  color: #7dffc5;
  margin-top: 3px;
}

.mkt-empty-plans {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 48px 32px;
}

.mkt-empty-plans-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #7dffc5;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.mkt-empty-plans h2 {
  font-family: var(--mkt-display);
  font-weight: 800;
  margin-bottom: 10px;
}

.mkt-empty-plans p {
  color: var(--mkt-muted);
  margin-bottom: 8px;
}

/* —— FAQ —— */
.mkt-faq-group {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(4, 63, 56, 0.06);
}

.mkt-faq-head {
  color: #fff;
  font-weight: 800;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mkt-display);
}

.mkt-faq-head-teal {
  background: linear-gradient(90deg, #0a6b5c, #0d9b7a);
}

.mkt-faq-head-deep {
  background: linear-gradient(90deg, #043f38, #0a6b5c);
}

.mkt-faq-head-mint {
  background: linear-gradient(90deg, #0b9f6e, #1ecf9a);
}

.mkt-faq-group .accordion-item {
  border: 0;
  border-top: 1px solid #eef2f6;
}

.mkt-faq-group .accordion-button {
  font-weight: 650;
  box-shadow: none;
  font-family: var(--mkt-font);
}

.mkt-faq-group .accordion-button:not(.collapsed) {
  background: #f5fbf8;
  color: #0b7a55;
}

.mkt-faq-group .accordion-body {
  color: var(--mkt-ink-muted);
  line-height: 1.6;
}

/* —— Contact —— */
.mkt-contact-card {
  background: #fff;
  color: var(--mkt-ink);
  border-radius: var(--mkt-radius);
  padding: 32px 28px;
  border: 1px solid rgba(16, 40, 32, 0.06);
  box-shadow: var(--mkt-shadow);
}

.mkt-contact-card .form-label {
  font-weight: 600;
  color: var(--mkt-ink);
}

.mkt-contact-card .form-control {
  border-radius: 12px;
  border-color: #d5e4de;
  padding: 12px 14px;
}

.mkt-contact-card .form-control:focus {
  border-color: #0b9f6e;
  box-shadow: 0 0 0 3px rgba(11, 159, 110, 0.18);
}

/* —— Footer —— */
.mkt-footer {
  background: #032924;
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.8);
}

.mkt-footer h4 {
  color: #fff;
  font-family: var(--mkt-display);
  font-size: 1rem;
  margin-bottom: 12px;
}

.mkt-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.mkt-footer a:hover { color: #fff; }

.mkt-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

/* —— Motion —— */
@keyframes mkt-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mkt-fade-down {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mkt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes mkt-bubble-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mkt-reveal {
  animation: mkt-fade-up 0.7s ease var(--d, 0s) both;
}

@media (prefers-reduced-motion: reduce) {
  .mkt-phone-float,
  .mkt-bubble-in,
  .mkt-brand-signal,
  .mkt-hero h1,
  .mkt-hero-lead,
  .mkt-hero-cta,
  .mkt-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* —— Responsive —— */
@media (max-width: 991.98px) {
  .mkt-nav,
  .mkt-header-actions { display: none; }

  .mkt-header.open .mkt-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    background: #043f38;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .mkt-header.open .mkt-header-actions {
    display: flex;
    position: absolute;
    left: 12px;
    right: 12px;
    top: auto;
    margin-top: 228px;
    background: #043f38;
    padding: 12px;
    border-radius: 14px;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mkt-dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
  }

  .mkt-dropdown-menu a { color: #fff; }

  .mkt-price-card.popular { transform: none; }

  .mkt-hero {
    min-height: auto;
    padding: 48px 0 64px;
  }

  .mkt-hero h1 { max-width: none; }
}

@media (max-width: 575.98px) {
  .mkt-hero-cta .mkt-btn { width: 100%; }
  .mkt-empty-plans { padding: 36px 20px; }
}
