/* =========================================================
   Optimaventure Marketing Site
   Landing UI structure · App color system (green + gold)
   ========================================================= */

.mkt-site {
  --mkt-brand: #0f6b4c;
  --mkt-brand-dark: #0a4d37;
  --mkt-brand-soft: rgba(15, 107, 76, 0.12);
  --mkt-accent: #c4a35a;
  --mkt-accent-dark: #a8863f;
  --mkt-accent-soft: rgba(196, 163, 90, 0.18);
  --mkt-deep: #0c1f1a;
  --mkt-deep-2: #145239;
  --mkt-ink: #12211c;
  --mkt-muted: #5c7269;
  --mkt-line: #d5e0db;
  --mkt-bg: #f3f6f4;
  --mkt-surface: #ffffff;
  --mkt-radius: 16px;
  --mkt-radius-lg: 24px;
  --mkt-shadow: 0 18px 50px rgba(12, 31, 26, 0.1);
  --mkt-shadow-lg: 0 24px 64px rgba(12, 31, 26, 0.16);
  --mkt-nav-h: 76px;
  --mkt-transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mkt-site {
  background: var(--mkt-bg);
  color: var(--mkt-ink);
}

.mkt-site .container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1rem;
}

html { scroll-padding-top: var(--mkt-nav-h, 76px); }

/* ---------- Header ---------- */
.mkt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  padding: 0.85rem 0;
  background: transparent;
  transition: background var(--mkt-transition), backdrop-filter var(--mkt-transition),
    box-shadow var(--mkt-transition), padding var(--mkt-transition);
}

.mkt-header.scrolled,
.mkt-site:not(.page-home) .mkt-header {
  background: rgba(12, 31, 26, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mkt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mkt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff !important;
  letter-spacing: -0.03em;
  text-decoration: none !important;
}

.mkt-brand .ov-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(15, 107, 76, 0.45);
}

.mkt-brand .ov-logo-text,
.mkt-brand .ov-logo-text-light {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.mkt-brand .ov-logo-text span,
.mkt-brand .ov-logo-text-light span {
  color: var(--mkt-accent);
}

.mkt-brand-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mkt-brand), var(--mkt-deep-2) 55%, var(--mkt-accent));
  box-shadow: 0 4px 14px rgba(15, 107, 76, 0.45);
  position: relative;
  flex-shrink: 0;
}

.mkt-brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
}

.mkt-nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.mkt-nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.mkt-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-nav-links a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  position: relative;
}

.mkt-nav-links a:hover,
.mkt-nav-links a.active {
  color: #fff !important;
}

.mkt-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-mkt-ghost {
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent;
  border: 1px solid transparent;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-mkt-ghost:hover { color: #fff !important; }

.btn-mkt-primary {
  background: var(--mkt-brand);
  color: #fff !important;
  border: none;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(15, 107, 76, 0.35);
}

.btn-mkt-primary:hover {
  background: var(--mkt-brand-dark);
  color: #fff !important;
}

.btn-mkt-accent {
  background: linear-gradient(135deg, var(--mkt-accent), var(--mkt-accent-dark));
  color: var(--mkt-deep) !important;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(196, 163, 90, 0.35);
}

.btn-mkt-accent:hover {
  filter: brightness(1.05);
  color: var(--mkt-deep) !important;
  transform: translateY(-2px);
}

.btn-mkt-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
}

.btn-mkt-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .mkt-nav-toggle { display: grid; place-items: center; }
  .mkt-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem; right: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12, 31, 26, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--mkt-radius);
    padding: 1rem;
    gap: 0.75rem;
  }
  .mkt-nav-panel.open { display: flex; }
  .mkt-nav-links { flex-direction: column; align-items: stretch; }
  .mkt-nav-actions { padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,.08); }
}

/* ---------- Home Hero ---------- */
.page-home .mkt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--mkt-nav-h) + 3rem) 0 5rem;
  color: #fff;
  overflow: hidden;
  background-color: var(--mkt-deep);
}

.mkt-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(12, 31, 26, 0.9) 0%, rgba(12, 31, 26, 0.72) 42%, rgba(12, 31, 26, 0.4) 100%),
    url("../landing/images/hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

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

.mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mkt-accent);
  margin-bottom: 1.25rem;
}

.mkt-eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--mkt-accent);
}

.mkt-hero-title {
  font-family: var(--display);
  font-size: clamp(2.35rem, 5.2vw, 3.7rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.12;
}

.mkt-hero-title .accent {
  color: var(--mkt-accent);
}

.mkt-hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mkt-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.mkt-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mkt-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.mkt-trust-badge i { color: var(--mkt-accent); }

.mkt-hero-visual {
  position: relative;
  padding: 1rem 0.5rem 2rem;
}

.mkt-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--mkt-radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  z-index: 3;
  animation: mktFloat 4.5s ease-in-out infinite;
}

.mkt-float-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}

.mkt-float-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.mkt-float-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.mkt-float-icon.gold { background: var(--mkt-accent-soft); color: var(--mkt-accent); }
.mkt-float-icon.green { background: var(--mkt-brand-soft); color: #6ee7b7; }

.mkt-float-1 { top: 12%; left: 0; animation-delay: 0s; }
.mkt-float-2 { top: 48%; right: 0; animation-delay: 1.2s; }
.mkt-float-3 { bottom: 8%; left: 12%; animation-delay: 2s; }

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

.mkt-hero-frame {
  border-radius: var(--mkt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mkt-shadow-lg);
  aspect-ratio: 4 / 3.1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.mkt-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Sections ---------- */
.mkt-section { padding: 5.5rem 0; }
.mkt-section-light { background: var(--mkt-surface); }
.mkt-section-muted { background: var(--mkt-bg); }

.mkt-section-header { text-align: center; margin-bottom: 3rem; }
.mkt-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mkt-brand);
  margin-bottom: 0.65rem;
}
.mkt-section-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin: 0 0 0.85rem;
  color: var(--mkt-ink);
}
.mkt-section-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--mkt-muted);
  font-size: 1.05rem;
}

/* Trust stats */
.mkt-trust-section {
  margin-top: -2.5rem;
  padding-top: 0;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.mkt-stat-card {
  background: #fff;
  border-radius: var(--mkt-radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--mkt-shadow);
  border: 1px solid rgba(12, 31, 26, 0.05);
  height: 100%;
  transition: transform var(--mkt-transition), box-shadow var(--mkt-transition);
}

.mkt-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-stat-icon {
  width: 52px; height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mkt-brand-soft), var(--mkt-accent-soft));
  color: var(--mkt-brand);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.mkt-stat-number {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--mkt-deep);
  margin: 0 0 0.3rem;
}

.mkt-stat-card p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Plans */
.mkt-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.mkt-plan-card {
  position: relative;
  background: #fff;
  border-radius: var(--mkt-radius-lg);
  padding: 2.25rem 1.85rem 2rem;
  border: 1px solid rgba(12, 31, 26, 0.06);
  box-shadow: 0 8px 28px rgba(12, 31, 26, 0.06);
  height: 100%;
  transition: transform var(--mkt-transition), box-shadow var(--mkt-transition);
  overflow: hidden;
}

.mkt-plan-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.mkt-plan-a::before { background: linear-gradient(90deg, var(--mkt-brand), #34d399); }
.mkt-plan-b::before { background: linear-gradient(90deg, var(--mkt-accent), #e8d29a); }

.mkt-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-plan-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: linear-gradient(135deg, var(--mkt-accent), var(--mkt-accent-dark));
  color: var(--mkt-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.mkt-plan-code {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mkt-brand);
  background: var(--mkt-brand-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
}

.mkt-plan-code.alt {
  color: #8a6a28;
  background: var(--mkt-accent-soft);
}

.mkt-plan-card h3 {
  font-size: 1.45rem;
  margin: 0 0 0.45rem;
}

.mkt-plan-card > p {
  color: var(--mkt-muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.mkt-plan-highlight {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--mkt-radius);
  background: linear-gradient(135deg, rgba(15, 107, 76, 0.1), rgba(15, 107, 76, 0.02));
  margin-bottom: 1.35rem;
}

.mkt-plan-highlight.alt {
  background: linear-gradient(135deg, rgba(196, 163, 90, 0.16), rgba(196, 163, 90, 0.04));
}

.mkt-plan-return {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mkt-brand);
  line-height: 1;
}

.mkt-plan-highlight.alt .mkt-plan-return { color: #8a6a28; }

.mkt-plan-return-label {
  font-size: 0.88rem;
  color: var(--mkt-muted);
  font-weight: 500;
}

.mkt-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mkt-plan-features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.mkt-plan-features i {
  color: var(--mkt-brand);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.mkt-plan-b .mkt-plan-features i { color: var(--mkt-accent-dark); }

.mkt-plan-features strong {
  display: block;
  font-size: 0.94rem;
  color: var(--mkt-ink);
}

.mkt-plan-features span {
  font-size: 0.86rem;
  color: var(--mkt-muted);
}

.btn-mkt-plan {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
}

.btn-mkt-plan-a {
  background: var(--mkt-brand);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(15, 107, 76, 0.28);
}

.btn-mkt-plan-a:hover { background: var(--mkt-brand-dark); color: #fff !important; }

.btn-mkt-plan-b {
  background: var(--mkt-accent);
  color: var(--mkt-deep) !important;
  box-shadow: 0 12px 28px rgba(196, 163, 90, 0.3);
}

.btn-mkt-plan-b:hover { filter: brightness(1.05); color: var(--mkt-deep) !important; }

/* Timeline */
.mkt-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.mkt-timeline-track {
  position: absolute;
  top: 42px;
  left: 8%; right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--mkt-brand), var(--mkt-accent));
  border-radius: 3px;
  opacity: 0.35;
}

.mkt-timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.4rem;
}

.mkt-timeline-icon {
  width: 84px; height: 84px;
  margin: 0 auto 1.15rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(12, 31, 26, 0.06);
  box-shadow: var(--mkt-shadow);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: var(--mkt-brand);
  transition: transform var(--mkt-transition);
}

.mkt-timeline-step:hover .mkt-timeline-icon {
  transform: translateY(-6px);
  color: var(--mkt-accent-dark);
}

.mkt-timeline-num {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mkt-brand);
  margin-bottom: 0.35rem;
}

.mkt-timeline-step h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.mkt-timeline-step p {
  color: var(--mkt-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Features */
.mkt-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mkt-feature-card {
  background: #fff;
  border-radius: var(--mkt-radius);
  padding: 1.85rem 1.5rem;
  border: 1px solid rgba(12, 31, 26, 0.05);
  box-shadow: 0 6px 24px rgba(12, 31, 26, 0.05);
  height: 100%;
  transition: transform var(--mkt-transition), box-shadow var(--mkt-transition);
}

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

.mkt-feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--mkt-brand), var(--mkt-deep-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 107, 76, 0.28);
}

.mkt-feature-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.mkt-feature-card p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.94rem;
}

/* About */
.mkt-about-lead {
  font-size: 1.1rem;
  color: var(--mkt-muted);
  margin-bottom: 1rem;
}

.mkt-about-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mkt-about-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.mkt-about-list i { color: var(--mkt-brand); font-size: 1.2rem; }

.mkt-about-image {
  position: relative;
  border-radius: var(--mkt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mkt-about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem; right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: var(--mkt-radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  color: #fff;
}

.mkt-about-badge i { color: var(--mkt-accent); font-size: 1.4rem; }
.mkt-about-badge strong { display: block; font-family: var(--display); }
.mkt-about-badge span { font-size: 0.82rem; opacity: 0.85; }

/* Testimonials */
.mkt-testimonial-swiper { padding: 0.5rem 2.5rem 3.25rem; overflow: hidden; }

.mkt-testimonial-card {
  background: #fff;
  border-radius: var(--mkt-radius);
  padding: 1.85rem;
  border: 1px solid rgba(12, 31, 26, 0.05);
  box-shadow: 0 6px 24px rgba(12, 31, 26, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mkt-stars { color: var(--mkt-accent); margin-bottom: 0.85rem; letter-spacing: 0.08em; }

.mkt-testimonial-text {
  flex: 1;
  color: var(--mkt-muted);
  line-height: 1.7;
  margin-bottom: 1.35rem;
}

.mkt-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mkt-testimonial-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eef3f0;
}

.mkt-testimonial-author strong {
  display: block;
  font-family: var(--display);
  color: var(--mkt-ink);
}

.mkt-testimonial-author span {
  font-size: 0.82rem;
  color: var(--mkt-muted);
}

.mkt-testimonial-swiper .swiper-button-prev,
.mkt-testimonial-swiper .swiper-button-next {
  color: var(--mkt-brand);
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(12, 31, 26, 0.1);
}

.mkt-testimonial-swiper .swiper-button-prev::after,
.mkt-testimonial-swiper .swiper-button-next::after {
  font-size: 0.9rem;
  font-weight: 700;
}

.mkt-testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--mkt-brand);
  width: 22px;
  border-radius: 4px;
}

/* FAQ */
.mkt-faq .accordion-item {
  background: #fff;
  border: 1px solid rgba(12, 31, 26, 0.06) !important;
  border-radius: var(--mkt-radius) !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(12, 31, 26, 0.04);
}

.mkt-faq .accordion-button {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--mkt-ink);
  background: #fff;
  box-shadow: none !important;
  padding: 1.15rem 1.35rem;
}

.mkt-faq .accordion-button:not(.collapsed) {
  color: var(--mkt-brand);
  background: rgba(15, 107, 76, 0.04);
}

.mkt-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f6b4c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.mkt-faq .accordion-body {
  color: var(--mkt-muted);
  padding: 0 1.35rem 1.25rem;
  line-height: 1.7;
}

/* CTA */
.mkt-cta {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 55% 80% at 85% 40%, rgba(196, 163, 90, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--mkt-deep) 0%, var(--mkt-brand) 55%, var(--mkt-deep-2) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mkt-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: #fff;
  margin: 0 0 0.85rem;
}

.mkt-cta p {
  max-width: 520px;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}

/* Footer */
.mkt-footer {
  background: var(--mkt-deep);
  color: rgba(226, 232, 240, 0.75);
  padding: 4.5rem 0 0;
}

.mkt-footer .mkt-brand { margin-bottom: 1rem; }

.mkt-footer-about {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.35rem;
  max-width: 320px;
}

.mkt-social {
  display: flex;
  gap: 0.6rem;
}

.mkt-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: background var(--mkt-transition), transform var(--mkt-transition);
}

.mkt-social a:hover {
  background: var(--mkt-brand);
  transform: translateY(-3px);
}

.mkt-footer-heading {
  font-family: var(--display);
  font-size: 1rem;
  color: #fff;
  margin: 0 0 1.1rem;
  font-weight: 600;
}

.mkt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mkt-footer-links li { margin-bottom: 0.55rem; }

.mkt-footer-links a {
  color: rgba(226, 232, 240, 0.72) !important;
  font-size: 0.94rem;
}

.mkt-footer-links a:hover { color: var(--mkt-accent) !important; }

.mkt-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.mkt-footer-contact li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.94rem;
}

.mkt-footer-contact i { color: var(--mkt-accent); margin-top: 0.15rem; }

.mkt-newsletter .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 12px 0 0 12px;
  padding: 0.75rem 1rem;
}

.mkt-newsletter .form-control::placeholder { color: rgba(255, 255, 255, 0.45); }
.mkt-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--mkt-brand);
  box-shadow: none;
  color: #fff;
}

.mkt-newsletter .btn {
  border-radius: 0 12px 12px 0;
  background: var(--mkt-accent);
  color: var(--mkt-deep);
  font-weight: 700;
  border: none;
  padding: 0.75rem 1.1rem;
}

.mkt-footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
}

.mkt-footer-bottom p { margin: 0; }

.mkt-back-top {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: none;
  background: var(--mkt-brand);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 10px 28px rgba(15, 107, 76, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--mkt-transition), visibility var(--mkt-transition), transform var(--mkt-transition);
  z-index: 1040;
}

.mkt-back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Inner public pages content offset under fixed header */
.mkt-site:not(.page-home) main {
  padding-top: 0;
}

/* ---------- Inner page hero (Business Plan, Terms, etc.) ---------- */
.mkt-page-hero {
  position: relative;
  padding: calc(var(--mkt-nav-h) + 3.5rem) 0 3.5rem;
  color: #fff;
  overflow: hidden;
  background-color: var(--mkt-deep);
  background-image:
    linear-gradient(115deg, rgba(12, 31, 26, 0.92) 0%, rgba(12, 31, 26, 0.75) 50%, rgba(15, 107, 76, 0.55) 100%),
    url("../landing/images/hero.png");
  background-size: cover;
  background-position: center right;
}

.mkt-page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0 0 0.75rem;
}

.mkt-page-hero p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.mkt-bp-card {
  background: #fff;
  border-radius: var(--mkt-radius-lg);
  border: 1px solid rgba(12, 31, 26, 0.06);
  box-shadow: var(--mkt-shadow);
  padding: 2rem 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--mkt-transition), box-shadow var(--mkt-transition);
}

.mkt-bp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-bp-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mkt-brand), var(--mkt-accent));
}

.mkt-bp-card.accent-a::before { background: linear-gradient(90deg, var(--mkt-brand), #34d399); }
.mkt-bp-card.accent-b::before { background: linear-gradient(90deg, var(--mkt-accent), #e8d29a); }

.mkt-bp-code {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-brand);
  background: var(--mkt-brand-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.mkt-bp-card.accent-b .mkt-bp-code {
  color: #8a6a28;
  background: var(--mkt-accent-soft);
}

.mkt-bp-card h2 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 0 0 0.5rem;
  color: var(--mkt-ink);
}

.mkt-bp-card > .mkt-bp-desc {
  color: var(--mkt-muted);
  margin: 0 0 1.35rem;
  line-height: 1.65;
}

.mkt-bp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--mkt-line);
}

.mkt-bp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.mkt-bp-table th {
  background: #f3f6f4;
  color: var(--mkt-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-bp-table td {
  padding: 1.1rem;
  border-bottom: 1px solid var(--mkt-line);
  color: var(--mkt-ink);
  vertical-align: top;
}

.mkt-bp-table tr:last-child td { border-bottom: none; }

.mkt-bp-table small {
  display: block;
  margin-top: 0.25rem;
  color: var(--mkt-muted);
  font-size: 0.84rem;
}

.mkt-bp-accelerator {
  background: linear-gradient(135deg, rgba(196, 163, 90, 0.18), rgba(196, 163, 90, 0.06));
  color: var(--mkt-ink) !important;
}

.mkt-bp-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.mkt-bp-meta-item {
  background: var(--mkt-bg);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.mkt-bp-meta-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--mkt-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.mkt-bp-meta-item strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--mkt-deep);
}

.mkt-terms-card {
  background: #fff;
  border-radius: var(--mkt-radius-lg);
  border: 1px solid rgba(12, 31, 26, 0.06);
  box-shadow: var(--mkt-shadow);
  padding: 2rem 1.75rem;
}

.mkt-terms-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 1.15rem;
}

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

.mkt-terms-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--mkt-muted);
  line-height: 1.55;
}

.mkt-terms-list i {
  color: var(--mkt-brand);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.mkt-terms-numbered {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.mkt-terms-numbered li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-terms-numbered li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mkt-terms-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mkt-brand);
  background: var(--mkt-brand-soft);
}

.mkt-terms-numbered strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--mkt-ink);
  margin-bottom: 0.3rem;
}

.mkt-terms-numbered p {
  margin: 0;
  color: var(--mkt-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.mkt-terms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .mkt-bp-meta { grid-template-columns: 1fr; }
  .mkt-page-hero { background-position: center center; }
  .mkt-terms-actions { flex-direction: column; }
  .mkt-terms-actions .btn { width: 100%; justify-content: center; }
}

/* Hide legacy footer/header if any leftover */
.mkt-site .site-header,
.mkt-site > .site-footer { display: none; }

/* Responsive */
@media (max-width: 991.98px) {
  .mkt-plan-grid,
  .mkt-feature-grid { grid-template-columns: 1fr; }
  .mkt-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .mkt-timeline-track { display: none; }
  .mkt-section { padding: 4rem 0; }
  .page-home .mkt-hero { min-height: auto; }
  .mkt-hero-bg { background-position: center center; }
}

@media (max-width: 767.98px) {
  .mkt-timeline { grid-template-columns: 1fr; }
  .mkt-hero-cta { flex-direction: column; }
  .mkt-hero-cta .btn { width: 100%; justify-content: center; }
  .mkt-testimonial-swiper { padding-left: 0; padding-right: 0; }
  .mkt-testimonial-swiper .swiper-button-prev,
  .mkt-testimonial-swiper .swiper-button-next { display: none; }
  .mkt-float-card span { display: none; }
}
