/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

/* ---------- Base (navy / ??????? palette) ---------- */
:root {
  --accent: #163a6e;
  --accent-dark: #0c2344;
  --accent-darker: #061528;
  --accent-light: #c9a227;
  --accent-mid: #1f4f8c;
  --ink: #0a1628;
  --ink-soft: #4a5d78;
  --paper: #ffffff;
  --paper-soft: #eef3fa;
  --paper-tint: #dfe9f6;
  --line: #c7d4e6;
  --radius: 16px;
  --shadow: 0 16px 48px -14px rgba(6, 21, 40, .34);
  --font: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif;
  --gold: #c9a227;
  --gold-soft: #e8d48b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
svg { flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
section[id] { scroll-margin-top: 90px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; box-sizing: border-box; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(213, 221, 232, .85);
  box-shadow: 0 4px 18px -16px rgba(11, 31, 58, .28);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.3rem;
  font-weight: 800;
  white-space: nowrap;
}
.brand svg { width: 28px; height: 28px; color: var(--accent-dark); }
.brand .b1 { color: var(--accent-dark); }
.brand .b2 { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: .1rem; flex-wrap: wrap; }
.main-nav > a, .nav-parent {
  padding: .45rem .8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s, background .2s;
}
.main-nav > a:hover, .nav-parent:hover { color: var(--accent-dark); background: var(--paper-tint); }
.main-nav > a.active,
.nav-parent.active { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

/* Dropdowns */
.has-sub { position: relative; }
.nav-parent .caret { width: 14px; height: 14px; transition: transform .2s; }
.submenu {
  position: absolute;
  top: calc(100% + .5rem);
  inset-inline-start: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(17, 24, 39, .3);
  padding: .5rem;
  display: none;
  z-index: 60;
}
.submenu a {
  display: block;
  padding: .5rem .85rem;
  border-radius: 9px;
  font-size: .92rem;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.submenu a:hover { background: var(--paper-tint); color: var(--accent-dark); }
@media (min-width: 861px) {
  .has-sub:hover .submenu,
  .has-sub:focus-within .submenu,
  .has-sub.open .submenu { display: block; }
  .has-sub:hover .caret, .has-sub.open .caret { transform: rotate(180deg); }
}

.nav-cta {
  padding: .5rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 4px 14px -4px rgba(11, 31, 58, .55);
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -4px rgba(11, 31, 58, .6); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: .75rem 1.25rem 1.25rem;
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-parent { border-radius: 10px; width: 100%; justify-content: space-between; }
  .submenu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    border-inline-start: 2px solid var(--line);
    border-radius: 0;
    margin: 0 .75rem;
    min-width: 0;
  }
  .has-sub.open .submenu { display: block; }
  .has-sub.open .caret { transform: rotate(180deg); }
  .submenu a { white-space: normal; }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, #07182e 0%, #0c2344 38%, #163a6b 72%, #0a1f3a 100%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .28), transparent 65%);
  top: -180px; left: -120px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%);
  bottom: -160px; right: -100px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 6rem;
  max-width: 720px;
}
.hero .badge {
  display: inline-block;
  padding: .3rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  font-size: .85rem;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.hero h1 .hl { color: var(--gold-soft); }
.hero p { font-size: 1.05rem; opacity: .95; margin-bottom: 2rem; }

.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, filter .28s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn-yellow {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, .35);
}
.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .4);
  margin-inline-start: .75rem;
}
.btn-orange {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 8px 24px -8px rgba(11, 31, 58, .55);
}
.btn-light { background: var(--paper-tint); color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section.warm { background: var(--paper-soft); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head .kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: .9rem;
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .2rem 1rem;
  margin-bottom: .75rem;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: .5rem; }
.section-head p { color: var(--ink-soft); }

/* ---------- Cards grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}
.service-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--paper-tint), #dce6f4);
  color: var(--accent-dark);
  margin-bottom: 1.1rem;
  transition: transform .3s ease;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.service-card p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- About / features ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.about-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; white-space: pre-line; }

.feature-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.feature-item { display: flex; gap: .8rem; align-items: flex-start; }
.feature-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: .35rem; }
.feature-item strong { display: block; }
.feature-item span { color: var(--ink-soft); font-size: .92rem; }

.stats-card {
  background: linear-gradient(160deg, var(--accent), var(--accent-darker));
  border-radius: 24px;
  color: #fff;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  box-shadow: var(--shadow);
}
.stat b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--gold-soft); }
.stat span { font-size: .92rem; opacity: .95; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-darker));
  border-radius: 24px;
  padding: 2.75rem 2rem;
  text-align: center;
  color: #f3f4f6;
}
.cta-strip h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: .5rem; color: #fff; }
.cta-strip p { margin-bottom: 1.5rem; }
.cta-strip .btn-orange { background: #fff; color: var(--accent-darker); }

/* ---------- Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.video-card h3 { font-size: 1rem; font-weight: 700; padding: 1.1rem 1.25rem; }
.video-frame { position: relative; padding-top: 56.25%; background: var(--paper-tint); }
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: grid;
  gap: 1.1rem;
}
.contact-info .row { display: flex; align-items: center; gap: .8rem; }
.contact-info .row svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.contact-info .row a:hover { color: var(--accent-dark); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 6px 30px -14px rgba(0, 0, 0, .08);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 500; margin-bottom: .35rem; font-size: .95rem; }
.field input, .field textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--paper-soft);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, .18);
}
.field .error { color: #c62828; font-size: .85rem; margin-top: .3rem; }

.alert {
  border-radius: 12px;
  padding: .9rem 1.2rem;
  margin-bottom: 1.25rem;
  font-size: .95rem;
}
.alert-success { background: #edf9ee; color: #1b5e20; border: 1px solid #bfe6c2; }
.alert-error { background: #fdeeee; color: #b71c1c; border: 1px solid #f2c3c3; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #0b1f3a, #071528);
  color: #c8d4e6;
  padding: 3.5rem 0 0;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.site-footer p { color: #9ca3af; font-size: .93rem; }
.site-footer .brand { font-size: 1.25rem; margin-bottom: .75rem; }
.site-footer .brand svg { color: #e5e7eb; }
.site-footer .brand .b1 { color: #e8eef7; }
.site-footer .brand .b2 { color: var(--gold-soft); }
.footer-links a { display: block; padding: .3rem 0; color: #9ca3af; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact .row { display: flex; gap: .6rem; align-items: center; padding: .3rem 0; color: #9ca3af; font-size: .93rem; }
.footer-contact svg { width: 18px; height: 18px; color: #d1d5db; flex-shrink: 0; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.1rem 0;
  text-align: center;
  font-size: .88rem;
  color: #9ca3af;
}

/* ---------- Two-questions cards ---------- */
.qa-cards { display: grid; gap: 1.25rem; }
.qa-card {
  background: #fff;
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 6px 24px -14px rgba(0, 0, 0, .08);
}
.qa-card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: .5rem; color: var(--accent-dark); }
.qa-card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Why-us numbered reasons ---------- */
.reason-num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-darker));
  margin-bottom: 1rem;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured {
  border: 2px solid var(--accent-dark);
  box-shadow: var(--shadow);
}
.price-badge {
  position: absolute;
  top: -14px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-darker));
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  padding: .2rem 1.1rem;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .25rem; }
.price-term { color: var(--ink-soft); font-size: .88rem; margin-bottom: 1rem; }
.price-amount { font-size: 1.55rem; font-weight: 800; color: var(--accent-dark); margin-bottom: 1.1rem; }
.price-amount small { font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.price-card ul { margin-bottom: 1.4rem; display: grid; gap: .45rem; }
.price-card li { font-size: .92rem; color: var(--ink-soft); border-bottom: 1px dashed var(--line); padding-bottom: .45rem; }
.price-card li:last-child { border-bottom: 0; }
.price-card .btn { margin-top: auto; }

.pricing-cta { text-align: center; margin-top: 2.5rem; }
.pricing-cta strong { display: block; font-size: 1.15rem; margin-bottom: .8rem; }
.pricing-cta p { color: var(--ink-soft); margin-top: 1rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.t-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.t-card p { color: var(--ink); font-size: .95rem; margin-bottom: 1rem; }
.t-author { margin-top: auto; font-weight: 700; font-size: .92rem; color: var(--accent-dark); }
.t-author span { color: var(--ink-soft); font-weight: 400; }

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: .8rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.4rem;
  font-weight: 700;
  font-size: .98rem;
  position: relative;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  inset-inline-end: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent);
}
.faq-item[open] summary { color: var(--accent-dark); }
.faq-item[open] summary::after { content: '?'; }
.faq-item p { padding: 0 1.4rem 1.1rem; color: var(--ink-soft); font-size: .93rem; }

/* ---------- Store-builder feature lists ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.feature-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.feature-col h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--accent-light);
}
.check-list { display: grid; gap: .5rem; }
.check-list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.check-list svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: .2rem;
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--accent), var(--accent-darker));
  color: #fff;
  padding: 3.25rem 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; }
.page-hero p { opacity: .95; margin-top: .4rem; }

/* ---------- Empty state (coming soon) ---------- */
.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  border: 1.5px dashed var(--line);
  border-radius: 24px;
  background: var(--paper-soft);
  max-width: 640px;
  margin: 0 auto;
}
.empty-state svg { width: 56px; height: 56px; color: var(--accent-light); margin: 0 auto 1.25rem; }
.empty-state h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: .5rem; }
.empty-state p { color: var(--ink-soft); margin-bottom: 1.5rem; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .55s ease both; }
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .18s; }
.fade-up.d3 { animation-delay: .26s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Service page builder blocks ---------- */
.service-blocks { margin-top: 2.5rem; display: grid; gap: 1.75rem; }
.sb-block h2, .sb-block h3 { font-weight: 800; margin-bottom: .75rem; color: var(--accent-darker); }
.sb-text p { color: var(--ink-soft); white-space: pre-line; }
.sb-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sb-image figcaption { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: .6rem; }
.sb-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .85rem;
}
.sb-feature-grid li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: var(--ink-soft);
  transition: border-color .25s, transform .25s;
}
.sb-feature-grid li:hover { border-color: var(--accent-mid); transform: translateY(-2px); }
.sb-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  color: #fff;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.sb-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26, 58, 107, .08), rgba(201, 162, 39, .1));
  border: 1px solid var(--line);
}
.sb-cta p { margin-bottom: 1rem; color: var(--ink-soft); }
.sb-pricing-list { display: grid; gap: .55rem; }
.sb-pricing-list li {
  padding: .7rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--gold);
  color: var(--ink-soft);
}
.sb-quote {
  margin: 0;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-darker), var(--accent-mid));
  color: #fff;
  box-shadow: var(--shadow);
}
.sb-quote p { font-size: 1.05rem; margin-bottom: .75rem; }
.sb-quote cite { display: block; font-style: normal; color: var(--gold-soft); font-size: .9rem; }
.sb-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 720px) { .sb-two-col { grid-template-columns: 1fr; } }
.sb-col {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
}
.sb-col p { color: var(--ink-soft); }


/* ---------- WhatsApp marketing (modern boxed layout, no charts) ---------- */
.wa {
  color: var(--ink);
  --wa-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --wa-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --wa-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.wa-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.wa-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.wa-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.wa-hero__main {
  min-width: 0;
  animation: waRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.wa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.wa-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.wa-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.wa-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.wa-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.wa-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.wa-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.wa-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.wa-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.wa-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.wa-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: waRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.wa-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.wa-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.wa-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.wa-hilite__text {
  display: block;
  min-width: 0;
}
.wa-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.wa-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.wa-btn:hover { transform: translateY(-2px); }
.wa-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.wa-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.wa-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.wa-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.wa-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.wa-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.wa-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.wa-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.wa-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.wa-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.wa-section { padding: 4rem 0; background: var(--paper); }
.wa-section--tint { background: var(--paper-soft); }

.wa-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.wa-head__main { min-width: 0; }
.wa-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.wa-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.wa-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.wa-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.wa-grid { display: grid; gap: 1.1rem; }
.wa-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wa-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wa-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.wa-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--wa-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.wa-card:hover {
  transform: translateY(-4px);
  border-color: var(--wa-hairline);
  box-shadow: var(--wa-shadow-md);
}
.wa-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.wa-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.wa-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.wa-card--pillar:hover::after { opacity: 1; }
.wa-card--pillar .wa-ico { margin-bottom: 1rem; }
.wa-card--feature { padding: 1.5rem 1.4rem; }
.wa-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.wa-card__head h3 { margin: 0; }
.wa-card--outcome .wa-index { margin-bottom: .55rem; }
.wa-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.wa-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.wa-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.wa-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.wa-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps */
.wa-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.wa-steps::before {
  content: "";
  position: absolute;
  top: 47px;
  inset-inline: 14%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 15px);
}
.wa-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--wa-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.wa-step:hover {
  transform: translateY(-4px);
  border-color: var(--wa-hairline);
  box-shadow: var(--wa-shadow-md);
}
.wa-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.wa-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.wa-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.wa-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wa-mini:hover {
  transform: translateY(-3px);
  border-color: var(--wa-hairline);
  box-shadow: var(--wa-shadow-md);
}
.wa-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.wa-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.wa-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.wa-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.wa-faq__aside { position: sticky; top: 100px; }
.wa-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.wa-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.wa-faq__list { display: grid; gap: .7rem; }
.wa-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.wa-faq__item:hover { border-color: var(--wa-hairline); }
.wa-faq__item[open] {
  border-color: var(--wa-hairline);
  box-shadow: var(--wa-shadow-md);
}
.wa-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.wa-faq__item summary::-webkit-details-marker { display: none; }
.wa-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.wa-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.wa-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.wa-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.wa-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.wa-cta__text { min-width: 0; }
.wa-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.wa-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes waRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .wa-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .wa-head { grid-template-columns: 1fr; align-items: start; }
  .wa-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wa-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .wa-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .wa-grid--2, .wa-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wa-steps { grid-template-columns: 1fr; }
  .wa-steps::before { display: none; }
}
@media (max-width: 700px) {
  .wa-hero { padding: 3rem 0 3.25rem; }
  .wa-section { padding: 2.9rem 0; }
  .wa-cta { padding: 2.75rem 0; }
  .wa-grid--2, .wa-grid--3, .wa-grid--4 { grid-template-columns: 1fr; }
  .wa-hero__actions .wa-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-hero__main, .wa-hero__card { animation: none; }
  .wa-btn, .wa-card, .wa-step, .wa-mini,
  .wa-faq__item, .wa-faq__item summary::after,
  .wa-card--pillar::after { transition: none; }
  .wa-btn:hover, .wa-card:hover, .wa-step:hover, .wa-mini:hover { transform: none; }
}

/* ============================================================
   SEO services page (.seo*) - mirrors WA page patterns
   ============================================================ */
.seo {
  color: var(--ink);
  --seo-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --seo-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --seo-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.seo-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.seo-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.seo-hero__main {
  min-width: 0;
  animation: seoRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.seo-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.seo-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.seo-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.seo-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.seo-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.seo-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.seo-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.seo-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.seo-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: seoRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.seo-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.seo-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.seo-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.seo-hilite__text {
  display: block;
  min-width: 0;
}
.seo-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.seo-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.seo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.seo-btn:hover { transform: translateY(-2px); }
.seo-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.seo-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.seo-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.seo-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.seo-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.seo-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.seo-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.seo-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.seo-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.seo-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.seo-section { padding: 4rem 0; background: var(--paper); }
.seo-section--tint { background: var(--paper-soft); }

.seo-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.seo-head__main { min-width: 0; }
.seo-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.seo-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.seo-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.seo-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.seo-grid { display: grid; gap: 1.1rem; }
.seo-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.seo-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.seo-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.seo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--seo-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.seo-card:hover {
  transform: translateY(-4px);
  border-color: var(--seo-hairline);
  box-shadow: var(--seo-shadow-md);
}
.seo-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.seo-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.seo-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.seo-card--pillar:hover::after { opacity: 1; }
.seo-card--pillar .seo-ico { margin-bottom: 1rem; }
.seo-card--feature { padding: 1.5rem 1.4rem; }
.seo-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.seo-card__head h3 { margin: 0; }
.seo-card--outcome .seo-index { margin-bottom: .55rem; }
.seo-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.seo-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.seo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.seo-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.seo-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps ? 6-step grid */
.seo-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.seo-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--seo-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.seo-step:hover {
  transform: translateY(-4px);
  border-color: var(--seo-hairline);
  box-shadow: var(--seo-shadow-md);
}
.seo-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.seo-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.seo-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.seo-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.seo-mini:hover {
  transform: translateY(-3px);
  border-color: var(--seo-hairline);
  box-shadow: var(--seo-shadow-md);
}
.seo-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.seo-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.seo-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.seo-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.seo-faq__aside { position: sticky; top: 100px; }
.seo-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.seo-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.seo-faq__list { display: grid; gap: .7rem; }
.seo-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.seo-faq__item:hover { border-color: var(--seo-hairline); }
.seo-faq__item[open] {
  border-color: var(--seo-hairline);
  box-shadow: var(--seo-shadow-md);
}
.seo-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.seo-faq__item summary::-webkit-details-marker { display: none; }
.seo-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.seo-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.seo-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.seo-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.seo-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.seo-cta__text { min-width: 0; }
.seo-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.seo-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes seoRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .seo-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .seo-head { grid-template-columns: 1fr; align-items: start; }
  .seo-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .seo-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .seo-grid--2, .seo-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .seo-hero { padding: 3rem 0 3.25rem; }
  .seo-section { padding: 2.9rem 0; }
  .seo-cta { padding: 2.75rem 0; }
  .seo-grid--2, .seo-grid--3, .seo-grid--4 { grid-template-columns: 1fr; }
  .seo-steps { grid-template-columns: 1fr; }
  .seo-hero__actions .seo-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .seo-hero__main, .seo-hero__card { animation: none; }
  .seo-btn, .seo-card, .seo-step, .seo-mini,
  .seo-faq__item, .seo-faq__item summary::after,
  .seo-card--pillar::after { transition: none; }
  .seo-btn:hover, .seo-card:hover, .seo-step:hover, .seo-mini:hover { transform: none; }
}

/* ============================================================
   Marketing Automation page (.ma*) - mirrors SEO/WA patterns
   ============================================================ */
.ma {
  color: var(--ink);
  --ma-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --ma-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --ma-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.ma-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.ma-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.ma-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.ma-hero__main {
  min-width: 0;
  animation: maRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.ma-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.ma-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.ma-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.ma-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.ma-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.ma-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.ma-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.ma-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.ma-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.ma-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.ma-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: maRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.ma-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.ma-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.ma-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.ma-hilite__text {
  display: block;
  min-width: 0;
}
.ma-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.ma-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.ma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.ma-btn:hover { transform: translateY(-2px); }
.ma-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.ma-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.ma-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.ma-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.ma-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.ma-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.ma-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.ma-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.ma-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.ma-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.ma-section { padding: 4rem 0; background: var(--paper); }
.ma-section--tint { background: var(--paper-soft); }

.ma-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.ma-head__main { min-width: 0; }
.ma-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.ma-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.ma-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.ma-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.ma-grid { display: grid; gap: 1.1rem; }
.ma-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ma-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ma-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.ma-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.ma-card:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.ma-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.ma-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.ma-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.ma-card--pillar:hover::after { opacity: 1; }
.ma-card--pillar .ma-ico { margin-bottom: 1rem; }
.ma-card--feature { padding: 1.5rem 1.4rem; }
.ma-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.ma-card__head h3 { margin: 0; }
.ma-card--outcome .ma-index { margin-bottom: .55rem; }
.ma-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.ma-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.ma-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.ma-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.ma-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps */
.ma-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.ma-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.ma-step:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.ma-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.ma-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.ma-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.ma-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ma-mini:hover {
  transform: translateY(-3px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.ma-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.ma-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ma-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.ma-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.ma-faq__aside { position: sticky; top: 100px; }
.ma-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.ma-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.ma-faq__list { display: grid; gap: .7rem; }
.ma-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.ma-faq__item:hover { border-color: var(--ma-hairline); }
.ma-faq__item[open] {
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.ma-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.ma-faq__item summary::-webkit-details-marker { display: none; }
.ma-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.ma-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.ma-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.ma-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.ma-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.ma-cta__text { min-width: 0; }
.ma-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.ma-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes maRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .ma-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .ma-head { grid-template-columns: 1fr; align-items: start; }
  .ma-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ma-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .ma-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .ma-grid--2, .ma-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ma-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .ma-hero { padding: 3rem 0 3.25rem; }
  .ma-section { padding: 2.9rem 0; }
  .ma-cta { padding: 2.75rem 0; }
  .ma-grid--2, .ma-grid--3, .ma-grid--4 { grid-template-columns: 1fr; }
  .ma-steps { grid-template-columns: 1fr; }
  .ma-hero__actions .ma-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .ma-hero__main, .ma-hero__card { animation: none; }
  .ma-btn, .ma-card, .ma-step, .ma-mini,
  .ma-faq__item, .ma-faq__item summary::after,
  .ma-card--pillar::after { transition: none; }
  .ma-btn:hover, .ma-card:hover, .ma-step:hover, .ma-mini:hover { transform: none; }
}

/* ============================================================
   Marketing Automation page (.wd*) - mirrors SEO/WA patterns
   ============================================================ */
.wd {
  color: var(--ink);
  --ma-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --ma-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --ma-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.wd-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.wd-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.wd-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.wd-hero__main {
  min-width: 0;
  animation: wdRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.wd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.wd-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.wd-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.wd-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.wd-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.wd-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.wd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.wd-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.wd-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.wd-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.wd-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: wdRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.wd-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.wd-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.wd-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.wd-hilite__text {
  display: block;
  min-width: 0;
}
.wd-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.wd-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.wd-btn:hover { transform: translateY(-2px); }
.wd-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.wd-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.wd-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.wd-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.wd-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.wd-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.wd-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.wd-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.wd-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.wd-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.wd-section { padding: 4rem 0; background: var(--paper); }
.wd-section--tint { background: var(--paper-soft); }

.wd-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.wd-head__main { min-width: 0; }
.wd-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.wd-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.wd-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.wd-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.wd-grid { display: grid; gap: 1.1rem; }
.wd-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wd-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wd-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.wd-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.wd-card:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.wd-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.wd-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.wd-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.wd-card--pillar:hover::after { opacity: 1; }
.wd-card--pillar .wd-ico { margin-bottom: 1rem; }
.wd-card--feature { padding: 1.5rem 1.4rem; }
.wd-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.wd-card__head h3 { margin: 0; }
.wd-card--outcome .wd-index { margin-bottom: .55rem; }
.wd-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.wd-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.wd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.wd-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.wd-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps */
.wd-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.wd-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.wd-step:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.wd-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.wd-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.wd-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.wd-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wd-mini:hover {
  transform: translateY(-3px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.wd-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.wd-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.wd-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.wd-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.wd-faq__aside { position: sticky; top: 100px; }
.wd-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.wd-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.wd-faq__list { display: grid; gap: .7rem; }
.wd-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.wd-faq__item:hover { border-color: var(--ma-hairline); }
.wd-faq__item[open] {
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.wd-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.wd-faq__item summary::-webkit-details-marker { display: none; }
.wd-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.wd-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.wd-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.wd-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.wd-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.wd-cta__text { min-width: 0; }
.wd-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.wd-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes wdRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .wd-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .wd-head { grid-template-columns: 1fr; align-items: start; }
  .wd-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wd-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .wd-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .wd-grid--2, .wd-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wd-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .wd-hero { padding: 3rem 0 3.25rem; }
  .wd-section { padding: 2.9rem 0; }
  .wd-cta { padding: 2.75rem 0; }
  .wd-grid--2, .wd-grid--3, .wd-grid--4 { grid-template-columns: 1fr; }
  .wd-steps { grid-template-columns: 1fr; }
  .wd-hero__actions .wd-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .wd-hero__main, .wd-hero__card { animation: none; }
  .wd-btn, .wd-card, .wd-step, .wd-mini,
  .wd-faq__item, .wd-faq__item summary::after,
  .wd-card--pillar::after { transition: none; }
  .wd-btn:hover, .wd-card:hover, .wd-step:hover, .wd-mini:hover { transform: none; }
}

/* ============================================================
   Marketing Automation page (.sec*) - mirrors SEO/WA patterns
   ============================================================ */
.sec {
  color: var(--ink);
  --ma-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --ma-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --ma-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.sec-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.sec-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.sec-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.sec-hero__main {
  min-width: 0;
  animation: secRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.sec-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.sec-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.sec-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.sec-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.sec-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.sec-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.sec-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.sec-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.sec-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.sec-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: secRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.sec-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.sec-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.sec-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.sec-hilite__text {
  display: block;
  min-width: 0;
}
.sec-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.sec-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.sec-btn:hover { transform: translateY(-2px); }
.sec-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.sec-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.sec-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.sec-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.sec-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.sec-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.sec-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.sec-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.sec-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.sec-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.sec-section { padding: 4rem 0; background: var(--paper); }
.sec-section--tint { background: var(--paper-soft); }

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.sec-head__main { min-width: 0; }
.sec-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.sec-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.sec-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.sec-grid { display: grid; gap: 1.1rem; }
.sec-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sec-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sec-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.sec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.sec-card:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sec-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.sec-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.sec-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.sec-card--pillar:hover::after { opacity: 1; }
.sec-card--pillar .sec-ico { margin-bottom: 1rem; }
.sec-card--feature { padding: 1.5rem 1.4rem; }
.sec-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.sec-card__head h3 { margin: 0; }
.sec-card--outcome .sec-index { margin-bottom: .55rem; }
.sec-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.sec-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.sec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.sec-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.sec-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps */
.sec-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.sec-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.sec-step:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sec-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.sec-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.sec-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.sec-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sec-mini:hover {
  transform: translateY(-3px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sec-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.sec-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.sec-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.sec-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.sec-faq__aside { position: sticky; top: 100px; }
.sec-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.sec-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.sec-faq__list { display: grid; gap: .7rem; }
.sec-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.sec-faq__item:hover { border-color: var(--ma-hairline); }
.sec-faq__item[open] {
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sec-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.sec-faq__item summary::-webkit-details-marker { display: none; }
.sec-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.sec-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.sec-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.sec-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.sec-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.sec-cta__text { min-width: 0; }
.sec-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.sec-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes secRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .sec-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .sec-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sec-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .sec-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .sec-grid--2, .sec-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sec-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .sec-hero { padding: 3rem 0 3.25rem; }
  .sec-section { padding: 2.9rem 0; }
  .sec-cta { padding: 2.75rem 0; }
  .sec-grid--2, .sec-grid--3, .sec-grid--4 { grid-template-columns: 1fr; }
  .sec-steps { grid-template-columns: 1fr; }
  .sec-hero__actions .sec-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .sec-hero__main, .sec-hero__card { animation: none; }
  .sec-btn, .sec-card, .sec-step, .sec-mini,
  .sec-faq__item, .sec-faq__item summary::after,
  .sec-card--pillar::after { transition: none; }
  .sec-btn:hover, .sec-card:hover, .sec-step:hover, .sec-mini:hover { transform: none; }
}

/* ============================================================
   Marketing Automation page (.ic*) - mirrors SEO/WA patterns
   ============================================================ */
.ic {
  color: var(--ink);
  --ma-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --ma-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --ma-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.ic-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.ic-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.ic-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.ic-hero__main {
  min-width: 0;
  animation: icRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.ic-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.ic-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.ic-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.ic-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.ic-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.ic-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.ic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.ic-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.ic-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.ic-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.ic-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: icRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.ic-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.ic-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.ic-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.ic-hilite__text {
  display: block;
  min-width: 0;
}
.ic-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.ic-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.ic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.ic-btn:hover { transform: translateY(-2px); }
.ic-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.ic-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.ic-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.ic-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.ic-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.ic-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.ic-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.ic-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.ic-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.ic-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.ic-section { padding: 4rem 0; background: var(--paper); }
.ic-section--tint { background: var(--paper-soft); }

.ic-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.ic-head__main { min-width: 0; }
.ic-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.ic-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.ic-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.ic-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.ic-grid { display: grid; gap: 1.1rem; }
.ic-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ic-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ic-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.ic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.ic-card:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.ic-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.ic-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.ic-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.ic-card--pillar:hover::after { opacity: 1; }
.ic-card--pillar .ic-ico { margin-bottom: 1rem; }
.ic-card--feature { padding: 1.5rem 1.4rem; }
.ic-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.ic-card__head h3 { margin: 0; }
.ic-card--outcome .ic-index { margin-bottom: .55rem; }
.ic-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.ic-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.ic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.ic-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.ic-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps */
.ic-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.ic-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.ic-step:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.ic-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.ic-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.ic-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.ic-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ic-mini:hover {
  transform: translateY(-3px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.ic-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.ic-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ic-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.ic-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.ic-faq__aside { position: sticky; top: 100px; }
.ic-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.ic-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.ic-faq__list { display: grid; gap: .7rem; }
.ic-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.ic-faq__item:hover { border-color: var(--ma-hairline); }
.ic-faq__item[open] {
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.ic-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.ic-faq__item summary::-webkit-details-marker { display: none; }
.ic-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.ic-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.ic-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.ic-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.ic-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.ic-cta__text { min-width: 0; }
.ic-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.ic-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes icRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .ic-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .ic-head { grid-template-columns: 1fr; align-items: start; }
  .ic-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ic-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .ic-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .ic-grid--2, .ic-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ic-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .ic-hero { padding: 3rem 0 3.25rem; }
  .ic-section { padding: 2.9rem 0; }
  .ic-cta { padding: 2.75rem 0; }
  .ic-grid--2, .ic-grid--3, .ic-grid--4 { grid-template-columns: 1fr; }
  .ic-steps { grid-template-columns: 1fr; }
  .ic-hero__actions .ic-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .ic-hero__main, .ic-hero__card { animation: none; }
  .ic-btn, .ic-card, .ic-step, .ic-mini,
  .ic-faq__item, .ic-faq__item summary::after,
  .ic-card--pillar::after { transition: none; }
  .ic-btn:hover, .ic-card:hover, .ic-step:hover, .ic-mini:hover { transform: none; }
}

/* ============================================================
   Marketing Automation page (.wb*) - mirrors SEO/WA patterns
   ============================================================ */
.wb {
  color: var(--ink);
  --ma-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --ma-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --ma-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.wb-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.wb-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.wb-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.wb-hero__main {
  min-width: 0;
  animation: wbRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.wb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.wb-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.wb-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.wb-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.wb-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.wb-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.wb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.wb-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.wb-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.wb-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.wb-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: wbRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.wb-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.wb-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.wb-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.wb-hilite__text {
  display: block;
  min-width: 0;
}
.wb-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.wb-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.wb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.wb-btn:hover { transform: translateY(-2px); }
.wb-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.wb-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.wb-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.wb-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.wb-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.wb-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.wb-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.wb-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.wb-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.wb-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.wb-section { padding: 4rem 0; background: var(--paper); }
.wb-section--tint { background: var(--paper-soft); }

.wb-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.wb-head__main { min-width: 0; }
.wb-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.wb-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.wb-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.wb-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.wb-grid { display: grid; gap: 1.1rem; }
.wb-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wb-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wb-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.wb-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.wb-card:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.wb-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.wb-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.wb-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.wb-card--pillar:hover::after { opacity: 1; }
.wb-card--pillar .wb-ico { margin-bottom: 1rem; }
.wb-card--feature { padding: 1.5rem 1.4rem; }
.wb-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.wb-card__head h3 { margin: 0; }
.wb-card--outcome .wb-index { margin-bottom: .55rem; }
.wb-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.wb-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.wb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.wb-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.wb-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps */
.wb-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.wb-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.wb-step:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.wb-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.wb-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.wb-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.wb-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wb-mini:hover {
  transform: translateY(-3px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.wb-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.wb-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.wb-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.wb-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.wb-faq__aside { position: sticky; top: 100px; }
.wb-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.wb-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.wb-faq__list { display: grid; gap: .7rem; }
.wb-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.wb-faq__item:hover { border-color: var(--ma-hairline); }
.wb-faq__item[open] {
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.wb-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.wb-faq__item summary::-webkit-details-marker { display: none; }
.wb-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.wb-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.wb-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.wb-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.wb-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.wb-cta__text { min-width: 0; }
.wb-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.wb-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes wbRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .wb-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .wb-head { grid-template-columns: 1fr; align-items: start; }
  .wb-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wb-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .wb-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .wb-grid--2, .wb-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wb-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .wb-hero { padding: 3rem 0 3.25rem; }
  .wb-section { padding: 2.9rem 0; }
  .wb-cta { padding: 2.75rem 0; }
  .wb-grid--2, .wb-grid--3, .wb-grid--4 { grid-template-columns: 1fr; }
  .wb-steps { grid-template-columns: 1fr; }
  .wb-hero__actions .wb-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .wb-hero__main, .wb-hero__card { animation: none; }
  .wb-btn, .wb-card, .wb-step, .wb-mini,
  .wb-faq__item, .wb-faq__item summary::after,
  .wb-card--pillar::after { transition: none; }
  .wb-btn:hover, .wb-card:hover, .wb-step:hover, .wb-mini:hover { transform: none; }
}

/* ============================================================
   Marketing Automation page (.sms*) - mirrors SEO/WA patterns
   ============================================================ */
.sms {
  color: var(--ink);
  --ma-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --ma-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --ma-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.sms-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.sms-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.sms-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.sms-hero__main {
  min-width: 0;
  animation: smsRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.sms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.sms-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.sms-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.sms-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.sms-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.sms-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.sms-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.sms-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.sms-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.sms-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.sms-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: smsRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.sms-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.sms-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.sms-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.sms-hilite__text {
  display: block;
  min-width: 0;
}
.sms-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.sms-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.sms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.sms-btn:hover { transform: translateY(-2px); }
.sms-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.sms-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.sms-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.sms-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.sms-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.sms-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.sms-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.sms-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.sms-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.sms-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.sms-section { padding: 4rem 0; background: var(--paper); }
.sms-section--tint { background: var(--paper-soft); }

.sms-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.sms-head__main { min-width: 0; }
.sms-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.sms-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.sms-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.sms-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.sms-grid { display: grid; gap: 1.1rem; }
.sms-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sms-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sms-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.sms-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.sms-card:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sms-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.sms-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.sms-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.sms-card--pillar:hover::after { opacity: 1; }
.sms-card--pillar .sms-ico { margin-bottom: 1rem; }
.sms-card--feature { padding: 1.5rem 1.4rem; }
.sms-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.sms-card__head h3 { margin: 0; }
.sms-card--outcome .sms-index { margin-bottom: .55rem; }
.sms-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.sms-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.sms-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.sms-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.sms-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps */
.sms-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.sms-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.sms-step:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sms-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.sms-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.sms-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.sms-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sms-mini:hover {
  transform: translateY(-3px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sms-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.sms-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.sms-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.sms-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.sms-faq__aside { position: sticky; top: 100px; }
.sms-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.sms-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.sms-faq__list { display: grid; gap: .7rem; }
.sms-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.sms-faq__item:hover { border-color: var(--ma-hairline); }
.sms-faq__item[open] {
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sms-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.sms-faq__item summary::-webkit-details-marker { display: none; }
.sms-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.sms-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.sms-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.sms-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.sms-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.sms-cta__text { min-width: 0; }
.sms-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.sms-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes smsRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .sms-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .sms-head { grid-template-columns: 1fr; align-items: start; }
  .sms-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sms-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .sms-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .sms-grid--2, .sms-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sms-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .sms-hero { padding: 3rem 0 3.25rem; }
  .sms-section { padding: 2.9rem 0; }
  .sms-cta { padding: 2.75rem 0; }
  .sms-grid--2, .sms-grid--3, .sms-grid--4 { grid-template-columns: 1fr; }
  .sms-steps { grid-template-columns: 1fr; }
  .sms-hero__actions .sms-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .sms-hero__main, .sms-hero__card { animation: none; }
  .sms-btn, .sms-card, .sms-step, .sms-mini,
  .sms-faq__item, .sms-faq__item summary::after,
  .sms-card--pillar::after { transition: none; }
  .sms-btn:hover, .sms-card:hover, .sms-step:hover, .sms-mini:hover { transform: none; }
}



/* ============================================================
   Website Speed page (.sp*) - mirrors SEO/WA patterns
   ============================================================ */
.sp {
  color: var(--ink);
  --ma-shadow-sm: 0 2px 12px -8px rgba(6, 21, 40, .35);
  --ma-shadow-md: 0 20px 40px -28px rgba(6, 21, 40, .6);
  --ma-hairline: rgba(22, 58, 110, .32);
}

/* Hero */
.sp-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(201, 162, 39, .26), rgba(201, 162, 39, 0) 62%),
    radial-gradient(700px 380px at 6% 115%, rgba(31, 79, 140, .55), rgba(31, 79, 140, 0) 60%),
    linear-gradient(158deg, var(--accent-darker) 0%, var(--accent-dark) 48%, var(--accent) 100%);
}
.sp-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 212, 139, 0), rgba(232, 212, 139, .5), rgba(232, 212, 139, 0));
}
.sp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2.75rem;
  align-items: center;
}
.sp-hero__main {
  min-width: 0;
  animation: spRise .6s cubic-bezier(.22, 1, .36, 1) both;
}
.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(232, 212, 139, .3);
  border-radius: 999px;
  padding: .3rem .95rem;
}
.sp-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.sp-hero__title {
  margin: 1.05rem 0 .95rem;
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: #fff;
}
.sp-hero__title em {
  position: relative;
  font-style: normal;
  color: var(--gold-soft);
  white-space: nowrap;
}
.sp-hero__title em::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -.12em;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232, 212, 139, .85), rgba(232, 212, 139, .05));
}
.sp-hero__lead {
  margin: 0;
  max-width: 36em;
  font-size: 1.02rem;
  line-height: 2;
  color: rgba(255, 255, 255, .86);
}
.sp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.7rem;
}
.sp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.sp-hero__meta li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}
.sp-hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.sp-hero__card {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
  animation: spRise .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.sp-hero__card-tag {
  display: block;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  font-weight: 800;
  color: var(--gold-soft);
}
.sp-hilite {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.sp-hilite__item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.sp-hilite__text {
  display: block;
  min-width: 0;
}
.sp-hilite__text strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.sp-hilite__text small {
  display: block;
  margin-top: .1rem;
  font-size: .83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

/* Buttons */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.sp-btn:hover { transform: translateY(-2px); }
.sp-btn--gold {
  color: var(--accent-darker);
  background: linear-gradient(135deg, #fff, var(--gold-soft));
  box-shadow: 0 14px 28px -16px rgba(232, 212, 139, .95);
}
.sp-btn--gold:hover { box-shadow: 0 18px 32px -14px rgba(232, 212, 139, 1); }
.sp-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .32);
}
.sp-btn--line:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
}
.sp-btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 14px 30px -18px rgba(11, 31, 58, .85);
}
.sp-btn--navy:hover { box-shadow: 0 18px 34px -16px rgba(11, 31, 58, .9); }

/* Icon tiles */
.sp-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-mid), var(--accent-darker));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.sp-ico svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
}
.sp-ico--light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: none;
}
.sp-ico--gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--accent-darker);
}

/* Sections + editorial headers */
.sp-section { padding: 4rem 0; background: var(--paper); }
.sp-section--tint { background: var(--paper-soft); }

.sp-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  gap: .9rem 2.5rem;
  align-items: end;
  margin-bottom: 2.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.sp-head__main { min-width: 0; }
.sp-head h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--accent-darker);
}
.sp-head__desc {
  margin: 0;
  max-width: 34em;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.sp-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--paper-tint);
  border: 1px solid rgba(22, 58, 110, .14);
  border-radius: 999px;
  padding: .22rem .85rem;
}
.sp-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Grids */
.sp-grid { display: grid; gap: 1.1rem; }
.sp-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sp-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sp-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Cards */
.sp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.sp-card:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sp-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.sp-card p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}
.sp-card--pillar::after {
  content: "";
  position: absolute;
  inset-inline: 1.3rem;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
  opacity: 0;
  transition: opacity .24s ease;
}
.sp-card--pillar:hover::after { opacity: 1; }
.sp-card--pillar .sp-ico { margin-bottom: 1rem; }
.sp-card--feature { padding: 1.5rem 1.4rem; }
.sp-card__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.05rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}
.sp-card__head h3 { margin: 0; }
.sp-card--outcome .sp-index { margin-bottom: .55rem; }
.sp-index {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
}
.sp-index::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}

/* Check lists */
.sp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.sp-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.sp-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  margin-top: .28rem;
  color: var(--accent);
}

/* Steps */
.sp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.sp-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: var(--ma-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.sp-step:hover {
  transform: translateY(-4px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sp-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-darker));
  box-shadow: 0 12px 22px -14px rgba(11, 31, 58, .9);
}
.sp-step h3 {
  margin: 0 0 .45rem;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-darker);
}
.sp-step p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Audience mini cards */
.sp-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sp-mini:hover {
  transform: translateY(-3px);
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sp-mini h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .3rem;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.75;
  color: var(--accent-dark);
}
.sp-mini h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.sp-mini p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* FAQ */
.sp-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}
.sp-faq__aside { position: sticky; top: 100px; }
.sp-faq__aside h2 {
  margin: .75rem 0 .6rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--accent-darker);
}
.sp-faq__aside p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
}
.sp-faq__list { display: grid; gap: .7rem; }
.sp-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.sp-faq__item:hover { border-color: var(--ma-hairline); }
.sp-faq__item[open] {
  border-color: var(--ma-hairline);
  box-shadow: var(--ma-shadow-md);
}
.sp-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  list-style: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--accent-darker);
}
.sp-faq__item summary::-webkit-details-marker { display: none; }
.sp-faq__item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  margin-top: -5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.sp-faq__item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}
.sp-faq__item p {
  margin: .85rem 0 .15rem;
  padding-top: .85rem;
  border-top: 1px dashed var(--line);
  font-size: .91rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Closing CTA */
.sp-cta {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  background:
    radial-gradient(700px 320px at 85% -35%, rgba(201, 162, 39, .24), rgba(201, 162, 39, 0) 62%),
    linear-gradient(140deg, var(--accent-darker), var(--accent-dark) 52%, var(--accent-mid));
}
.sp-cta__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.sp-cta__text { min-width: 0; }
.sp-cta__text h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.sp-cta__text p {
  margin: 0;
  max-width: 38em;
  font-size: .96rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .82);
}

@keyframes spRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1000px) {
  .sp-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .sp-head { grid-template-columns: 1fr; align-items: start; }
  .sp-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-faq { grid-template-columns: 1fr; gap: 1.75rem; }
  .sp-faq__aside { position: static; }
}
@media (max-width: 880px) {
  .sp-grid--2, .sp-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .sp-hero { padding: 3rem 0 3.25rem; }
  .sp-section { padding: 2.9rem 0; }
  .sp-cta { padding: 2.75rem 0; }
  .sp-grid--2, .sp-grid--3, .sp-grid--4 { grid-template-columns: 1fr; }
  .sp-steps { grid-template-columns: 1fr; }
  .sp-hero__actions .sp-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .sp-hero__main, .sp-hero__card { animation: none; }
  .sp-btn, .sp-card, .sp-step, .sp-mini,
  .sp-faq__item, .sp-faq__item summary::after,
  .sp-card--pillar::after { transition: none; }
  .sp-btn:hover, .sp-card:hover, .sp-step:hover, .sp-mini:hover { transform: none; }
}




/* =====================================================
   Academy / Blog ? scoped .ac-* styles
   Navy: #0a1628  Gold: #f59e0b
   ===================================================== */

/* Hero */
.ac-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
}
.ac-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: .6rem; }
.ac-hero-sub { color: #cbd5e1; margin-bottom: 1.8rem; font-size: 1.05rem; }
.ac-search-form { display: flex; justify-content: center; gap: 0; max-width: 520px; margin: 0 auto; }
.ac-search-input {
  flex: 1; padding: .75rem 1.2rem; border-radius: 0 8px 8px 0;
  border: 2px solid #f59e0b; border-left: none; font-size: 1rem;
  background: #fff; color: #0a1628; font-family: Vazirmatn, Tahoma, 'Segoe UI', sans-serif;
}
.ac-search-btn {
  background: #f59e0b; color: #0a1628; border: 2px solid #f59e0b;
  border-radius: 8px 0 0 8px; padding: .75rem 1rem; cursor: pointer;
  display: flex; align-items: center;
}
.ac-search-btn:hover { background: #d97706; border-color: #d97706; }

/* Archive */
.ac-archive { padding: 3rem 0 4rem; }
.ac-cats { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.ac-cat-pill {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .4rem 1rem; border-radius: 999px; font-size: .88rem;
  background: #f1f5f9; color: #334155; text-decoration: none;
  transition: background .2s, color .2s;
}
.ac-cat-pill:hover, .ac-cat-pill.active { background: #0a1628; color: #f59e0b; }
.ac-cat-count { background: #e2e8f0; color: #475569; border-radius: 99px; padding: 0 .45rem; font-size: .78rem; }
.ac-cat-pill.active .ac-cat-count { background: #1e3a5f; color: #f59e0b; }
.ac-filter-note { margin-bottom: 1.5rem; padding: .75rem 1rem; background: #fef3c7; border-radius: 8px; font-size: .9rem; }
.ac-filter-clear { margin-right: .5rem; color: #ef4444; font-weight: 600; }

/* Post grid */
.ac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .ac-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .ac-grid { grid-template-columns: 1fr; } }

.ac-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,40,.07);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.ac-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(10,22,40,.12); }
.ac-card-img-link { display: block; overflow: hidden; }
.ac-card-img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; transition: transform .3s;
}
.ac-card:hover .ac-card-img { transform: scale(1.03); }
.ac-card-placeholder {
  width: 100%; height: 200px; background: #f1f5f9;
  display: flex; align-items: center; justify-content: center; color: #94a3b8;
}
.ac-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.ac-badge {
  display: inline-block; background: #fef3c7; color: #92400e;
  padding: .2rem .7rem; border-radius: 6px; font-size: .78rem;
  text-decoration: none; margin-bottom: .6rem; font-weight: 600;
}
.ac-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.5; }
.ac-card-title a { color: #0a1628; text-decoration: none; }
.ac-card-title a:hover { color: #f59e0b; }
.ac-card-excerpt { color: #475569; font-size: .88rem; line-height: 1.65; flex: 1; margin-bottom: .8rem; }
.ac-card-meta { font-size: .78rem; color: #94a3b8; display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; margin-top: auto; }
.ac-sep { opacity: .4; }
.ac-read-time { color: #64748b; }
.ac-empty { grid-column: 1 / -1; text-align: center; padding: 3rem; color: #94a3b8; }
.ac-pagination { display: flex; justify-content: center; }

/* Single post */
.ac-breadcrumb { background: #f8fafc; border-bottom: 1px solid #e2e8f0; padding: .7rem 0; font-size: .85rem; }
.ac-breadcrumb a { color: #475569; text-decoration: none; }
.ac-breadcrumb a:hover { color: #f59e0b; }
.ac-bc-sep { margin: 0 .4rem; color: #94a3b8; }

.ac-single-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  grid-template-rows: auto;
  gap: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  align-items: start;
  max-width: 100%;
}
@media (max-width: 900px) { .ac-single-wrap { grid-template-columns: minmax(0, 1fr); } }

.ac-single { min-width: 0; max-width: 100%; }
.ac-single-header { margin-bottom: 1.5rem; }
.ac-single-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.4; margin: .6rem 0 .8rem; color: #0a1628; }
.ac-single-meta { font-size: .85rem; color: #94a3b8; display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.ac-excerpt {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #475569;
  margin: 0 0 1.4rem;
  padding: .9rem 1.1rem;
  background: #f8fafc;
  border-right: 3px solid #f59e0b;
  border-radius: 0 10px 10px 0;
}
.ac-author-card { display: flex; align-items: center; gap: .9rem; background: #f8fafc; border-radius: 10px; padding: .8rem 1rem; }
.ac-author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: #0a1628; display: flex; align-items: center; justify-content: center; color: #f59e0b; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.ac-author-name { font-weight: 700; color: #0a1628; }
.ac-author-bio { font-size: .85rem; color: #64748b; margin-top: .2rem; }
.ac-featured-img { margin: 1.5rem 0; border-radius: 12px; overflow: hidden; }
.ac-featured-img img { width: 100%; height: auto; display: block; }

/* TOC */
.ac-toc { background: #f8fafc; border-right: 3px solid #f59e0b; border-radius: 0 10px 10px 0; padding: 1.2rem 1.5rem; margin: 1.8rem 0; }
.ac-toc-title { font-size: .95rem; font-weight: 700; margin-bottom: .7rem; color: #0a1628; }
.ac-toc-list { list-style: decimal; padding-right: 1.2rem; }
.ac-toc-list li { margin-bottom: .4rem; }
.ac-toc-list a { color: #334155; text-decoration: none; font-size: .9rem; }
.ac-toc-list a:hover { color: #f59e0b; }
.ac-toc-sub { padding-right: 1.2rem; font-size: .85rem; }

/* Body content */
.ac-body,
.ac-post-body,
.ac-post-content {
  line-height: 1.9;
  color: #1e293b;
  font-size: 1.02rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}
.ac-single,
article.ac-post {
  max-width: 100%;
  min-width: 0;
}
.ac-body h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 .8rem; color: #0a1628; padding-bottom: .4rem; border-bottom: 2px solid #f59e0b; }
.ac-body h3 { font-size: 1.2rem; font-weight: 600; margin: 1.5rem 0 .6rem; color: #0a1628; }
.ac-body h4 { font-size: 1rem; font-weight: 600; margin: 1.2rem 0 .5rem; }
.ac-body p { margin-bottom: 1.2rem; }
.ac-body ul, .ac-body ol { margin: .8rem 0 1.2rem 1.5rem; }
.ac-body li { margin-bottom: .4rem; }
.ac-body blockquote {
  border-right: 4px solid #f59e0b; margin: 1.5rem 0;
  padding: 1rem 1.2rem; background: #fffbeb; color: #78350f;
  border-radius: 0 8px 8px 0; font-style: italic;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.ac-body code { background: #f1f5f9; color: #c026d3; padding: .1rem .4rem; border-radius: 4px; font-size: .9em; font-family: monospace; word-break: break-word; }
.ac-body pre { background: #0f172a; color: #e2e8f0; padding: 1.2rem; border-radius: 8px; overflow-x: auto; margin: 1.2rem 0; max-width: 100%; }
.ac-body pre code { background: none; color: inherit; padding: 0; }
.ac-body img,
.ac-body iframe,
.ac-body video,
.ac-body embed,
.ac-body object {
  max-width: 100%;
  border-radius: 8px;
  height: auto;
}
.ac-body iframe,
.ac-body video {
  width: 100%;
}
.ac-body a { color: #1d4ed8; text-decoration: underline; overflow-wrap: anywhere; }
.ac-body a:hover { color: #f59e0b; }
.ac-body table { border-collapse: collapse; width: 100%; max-width: 100%; margin: 1.2rem 0; display: block; overflow-x: auto; }
.ac-body th, .ac-body td { border: 1px solid #e2e8f0; padding: .6rem .9rem; text-align: right; }
.ac-body th { background: #f8fafc; font-weight: 600; }
.ac-body * {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}
.ac-body .ql-video,
.ac-body iframe.ql-video {
  max-width: 100%;
  width: 100%;
}

/* Tags */
.ac-tags { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin: 1.5rem 0; }
.ac-tags-label { font-size: .88rem; color: #64748b; }
.ac-tag { padding: .3rem .8rem; background: #e2e8f0; color: #334155; border-radius: 6px; font-size: .82rem; text-decoration: none; }
.ac-tag:hover { background: #0a1628; color: #f59e0b; }

/* Share */
.ac-share { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin: 1.8rem 0; padding: 1rem; background: #f8fafc; border-radius: 10px; }
.ac-share > span { font-size: .88rem; color: #64748b; margin-left: .3rem; }
.ac-share-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem; border-radius: 7px; font-size: .85rem;
  text-decoration: none; border: none; cursor: pointer; font-weight: 500; transition: opacity .2s;
}
.ac-share-btn:hover { opacity: .85; }
.ac-share-tg { background: #0088cc; color: #fff; }
.ac-share-wa { background: #25d366; color: #fff; }
.ac-share-li { background: #0077b5; color: #fff; }
.ac-share-copy { background: #334155; color: #fff; }

/* Related */
.ac-related { position: sticky; top: 1.5rem; }
.ac-related-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: #0a1628; padding-bottom: .5rem; border-bottom: 2px solid #f59e0b; }
.ac-related .ac-card { margin-bottom: 1.2rem; }
.ac-related .ac-card-img { height: 130px; }

/* Comments */
.ac-comments-section { background: #f8fafc; padding: 3rem 0; }
.ac-comments-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; color: #0a1628; }
.ac-comment {
  background: #fff; border-radius: 10px; padding: 1.2rem 1.5rem;
  margin-bottom: 1rem; box-shadow: 0 1px 4px rgba(10,22,40,.06);
}
.ac-comment-admin { border-right: 3px solid #f59e0b; }
.ac-comment-reply { margin-right: 2rem; background: #f0f9ff; }
.ac-comment-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .7rem; }
.ac-comment-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #0a1628; color: #f59e0b;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.ac-comment-author { font-weight: 600; color: #0a1628; }
.ac-admin-badge { background: #fef3c7; color: #92400e; border-radius: 6px; padding: .1rem .5rem; font-size: .75rem; margin-right: .4rem; }
.ac-comment-date { font-size: .8rem; color: #94a3b8; margin-right: .5rem; }
.ac-comment-body { color: #334155; line-height: 1.7; margin-bottom: .6rem; }
.ac-reply-btn { background: none; border: 1px solid #e2e8f0; padding: .3rem .7rem; border-radius: 6px; font-size: .82rem; color: #475569; cursor: pointer; }
.ac-reply-btn:hover { border-color: #f59e0b; color: #f59e0b; }
.ac-comment-children { margin-top: .8rem; }
.ac-no-comments { color: #94a3b8; font-style: italic; }

/* Comment form */
.ac-comment-form-wrap { background: #fff; border-radius: 12px; padding: 2rem; box-shadow: 0 2px 10px rgba(10,22,40,.07); margin-top: 2rem; }
.ac-comment-form-wrap h3 { margin-bottom: 1.2rem; color: #0a1628; font-size: 1.15rem; font-weight: 700; }
.ac-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .ac-form-row { grid-template-columns: 1fr; } }
.ac-comment-form .ac-field { margin-bottom: 1rem; }
.ac-comment-form .ac-field label {
  display: block; margin-bottom: .4rem; font-size: .9rem; font-weight: 600; color: #0a1628;
}
.ac-comment-form .ac-input,
.ac-comment-form .ac-textarea {
  display: block; width: 100%; box-sizing: border-box;
  padding: .7rem .95rem; border: 1px solid #e2e8f0; border-radius: 8px;
  background: #f8fafc; color: #0a1628; font-family: inherit; font-size: .95rem;
  line-height: 1.6; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.ac-comment-form .ac-input:focus,
.ac-comment-form .ac-textarea:focus {
  outline: none; border-color: #f59e0b; background: #fff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, .18);
}
.ac-comment-form .ac-textarea { resize: vertical; min-height: 120px; }
.ac-comment-form .ac-field-error { display: block; margin-top: .35rem; color: #dc2626; font-size: .82rem; }
.ac-comment-submit {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.6rem; border: 0; border-radius: 8px; cursor: pointer;
  background: #0a1628; color: #f59e0b; font-family: inherit; font-size: .95rem; font-weight: 700;
  transition: background .2s ease, transform .15s ease;
}
.ac-comment-submit:hover { background: #13233d; }
.ac-comment-form .alert { margin-bottom: 1rem; padding: .75rem 1rem; border-radius: 8px; font-size: .9rem; }
.ac-reply-notice { background: #fef3c7; border-radius: 6px; padding: .5rem .8rem; font-size: .88rem; margin-bottom: .8rem; color: #92400e; }
.ac-cancel-reply { background: none; border: none; color: #ef4444; cursor: pointer; font-weight: 600; font-family: inherit; }
.ac-comments-list { margin-bottom: .5rem; }

/* Aparat embed (16:9) */
.ac-body .ac-embed,
.ac-post-content .ac-embed,
.ac-embed {
  margin: 1.6rem 0;
  max-width: 100%;
  overflow: hidden;
}
.ac-embed-ratio {
  max-width: 100%;
  overflow: hidden;
}
.ac-body .ac-embed-aparat .ac-embed-ratio,
.ac-post-content .ac-embed-aparat .ac-embed-ratio,
.ac-embed-ratio {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #0a1628;
  box-shadow: 0 8px 24px -12px rgba(10, 22, 40, .45);
}
.ac-body .ac-embed-aparat iframe,
.ac-post-content .ac-embed-aparat iframe,
.ac-embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
}

/* Callout / note boxes */
.ac-body .ac-note,
.ac-post-content .ac-note {
  margin: 1.5rem 0;
  border-radius: 14px;
  padding: 1.05rem 2.5rem 1.05rem 1.1rem;
  border-right: 5px solid;
  position: relative;
  box-shadow: 0 6px 20px -14px rgba(10, 22, 40, .35);
  max-width: 100%;
  overflow-wrap: anywhere;
  min-width: 0;
  box-sizing: border-box;
}
.ac-body .ac-note-inner,
.ac-post-content .ac-note-inner {
  display: contents;
}
.ac-body .ac-note-label,
.ac-post-content .ac-note-label,
.ac-body .ac-note > strong:first-child,
.ac-post-content .ac-note > strong:first-child {
  font-weight: 800;
  letter-spacing: -.01em;
}
.ac-body .ac-note-inner p,
.ac-post-content .ac-note-inner p,
.ac-body .ac-note > p,
.ac-post-content .ac-note > p {
  margin: 0;
  display: inline;
  line-height: 1.85;
  color: inherit;
}
.ac-body .ac-note::before,
.ac-post-content .ac-note::before {
  content: '';
  position: absolute;
  top: 1.15rem;
  right: .95rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.ac-body .ac-note-success,
.ac-post-content .ac-note-success {
  background: linear-gradient(145deg, #ecfdf5 0%, #f0fdf4 48%, #f8fafc 100%);
  border-right-color: #15803d;
  color: #14532d;
}
.ac-body .ac-note-success::before,
.ac-post-content .ac-note-success::before {
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .18);
}
.ac-body .ac-note-success .ac-note-label,
.ac-post-content .ac-note-success .ac-note-label,
.ac-body .ac-note-success > strong:first-child,
.ac-post-content .ac-note-success > strong:first-child { color: #166534; }

.ac-body .ac-note-warning,
.ac-post-content .ac-note-warning {
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 48%, #f8fafc 100%);
  border-right-color: #b45309;
  color: #78350f;
}
.ac-body .ac-note-warning::before,
.ac-post-content .ac-note-warning::before {
  background: #d97706;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, .2);
}
.ac-body .ac-note-warning .ac-note-label,
.ac-post-content .ac-note-warning .ac-note-label,
.ac-body .ac-note-warning > strong:first-child,
.ac-post-content .ac-note-warning > strong:first-child { color: #92400e; }

.ac-body .ac-note-danger,
.ac-post-content .ac-note-danger {
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 48%, #f8fafc 100%);
  border-right-color: #b91c1c;
  color: #7f1d1d;
}
.ac-body .ac-note-danger::before,
.ac-post-content .ac-note-danger::before {
  background: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .18);
}
.ac-body .ac-note-danger .ac-note-label,
.ac-post-content .ac-note-danger .ac-note-label,
.ac-body .ac-note-danger > strong:first-child,
.ac-post-content .ac-note-danger > strong:first-child { color: #991b1b; }

/* Off-screen honeypot (not display:none) */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
