/* ==========================================================================
   Client Onboarding Kits — styles.css
   A single stylesheet for a static HTML5 + CSS3 storefront.
   No JavaScript, no frameworks, no build tools.

   TABLE OF CONTENTS
   1.  CSS custom properties
   2.  Reset
   3.  Base styles
   4.  Typography
   5.  Accessibility
   6.  Layout utilities
   7.  Announcement bar
   8.  Header and navigation
   9.  Buttons
   10. Hero
   11. Trust strip
   12. Benefit cards
   13. Product collection
   14. Product cards
   15. CSS product covers
   16. How it works
   17. Audience cards
   18. Comparison table
   19. Testimonials
   20. FAQ
   21. Forms
   22. Policy pages
   23. Calls to action
   24. Footer
   25. Responsive breakpoints
   26. Reduced-motion styles
   27. Print styles
   ========================================================================== */


/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* --- Brand colour palette --- */
  --navy: #17243A;
  --navy-deep: #101A2B;
  --navy-soft: #2E4364;
  --warm-white: #FAF9F6;
  --soft-blue: #DDE8F2;
  --soft-blue-deep: #C3D6E8;
  --sage: #A9BFAF;
  --sage-soft: #E4EDE6;
  --coral: #D9785F;
  --coral-deep: #B04E37;
  --coral-soft: #F7E6E0;
  --text: #20242A;
  --muted: #667085;
  --white: #FFFFFF;
  --border: #E4E7EC;
  --border-strong: #CFD5DE;

  /* --- Semantic colour roles --- */
  --bg-page: var(--warm-white);
  --bg-surface: var(--white);
  --bg-tint: var(--soft-blue);
  --bg-tint-soft: #EEF4FA;
  --bg-ink: var(--navy);
  --ink-on-dark: #F3F6FA;
  --muted-on-dark: #A9B7CC;
  --link: #1D3A63;
  --link-hover: var(--coral-deep);
  --focus: #B14A2C;

  /* --- Spacing scale --- */
  --space-3xs: 0.25rem;   /*  4px */
  --space-2xs: 0.5rem;    /*  8px */
  --space-xs: 0.75rem;    /* 12px */
  --space-sm: 1rem;       /* 16px */
  --space-md: 1.5rem;     /* 24px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 3rem;       /* 48px */
  --space-2xl: 4rem;      /* 64px */
  --space-3xl: 6rem;      /* 96px */

  /* --- Border radius --- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* --- Shadows --- */
  --shadow-xs: 0 1px 2px rgba(23, 36, 58, 0.06);
  --shadow-sm: 0 2px 8px rgba(23, 36, 58, 0.06), 0 1px 2px rgba(23, 36, 58, 0.04);
  --shadow-md: 0 10px 24px rgba(23, 36, 58, 0.08), 0 2px 6px rgba(23, 36, 58, 0.04);
  --shadow-lg: 0 22px 48px rgba(23, 36, 58, 0.12), 0 4px 12px rgba(23, 36, 58, 0.06);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);

  /* --- Typography --- */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
                  Georgia, "Times New Roman", Times, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
               "Liberation Mono", monospace;

  --step-xs: 0.8125rem;   /* 13px */
  --step-sm: 0.9375rem;   /* 15px */
  --step-base: 1.0625rem; /* 17px */
  --step-md: 1.1875rem;   /* 19px */
  --step-lg: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  --step-xl: clamp(1.7rem, 1.35rem + 1.6vw, 2.5rem);
  --step-2xl: clamp(2.1rem, 1.55rem + 2.6vw, 3.4rem);

  /* --- Layout --- */
  --container: 1200px;
  --container-narrow: 780px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --speed: 180ms;
}


/* ==========================================================================
   2. RESET
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

summary {
  cursor: pointer;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: var(--space-lg) 0;
}


/* ==========================================================================
   3. BASE STYLES
   ========================================================================== */

body {
  background-color: var(--bg-page);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-base);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1 0 auto;
  display: block;
}

::selection {
  background: var(--navy);
  color: var(--warm-white);
}


/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-2xl);
  line-height: 1.08;
}

h2 {
  font-size: var(--step-xl);
}

h3 {
  font-size: var(--step-lg);
  line-height: 1.25;
}

h4 {
  font-size: var(--step-md);
  line-height: 1.3;
}

h5, h6 {
  font-family: var(--font-body);
  font-size: var(--step-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--speed) var(--ease);
}

a:hover {
  color: var(--link-hover);
}

strong,
b {
  font-weight: 700;
  color: var(--navy);
}

small {
  font-size: var(--step-xs);
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

.eyebrow {
  display: inline-block;
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: var(--space-xs);
}

.eyebrow--light {
  color: var(--sage);
}

.lede {
  font-size: var(--step-md);
  color: var(--muted);
  line-height: 1.6;
  max-width: 62ch;
}

.lede--center {
  margin-inline: auto;
}

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

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


/* ==========================================================================
   5. ACCESSIBILITY
   ========================================================================== */

.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -100%;
  z-index: 999;
  background: var(--navy);
  color: var(--warm-white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
  color: var(--warm-white);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.on-dark :focus-visible,
.site-footer :focus-visible,
.announcement :focus-visible {
  outline-color: #F0B49C;
}


/* ==========================================================================
   6. LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.section--tight {
  padding-block: clamp(2.25rem, 5vw, 3.5rem);
}

.section--tint {
  background: linear-gradient(180deg, var(--bg-tint-soft), var(--warm-white));
}

.section--blue {
  background-color: var(--soft-blue);
}

.section--sage {
  background-color: var(--sage-soft);
}

.section--paper {
  background-color: var(--white);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 68ch;
  margin-bottom: var(--space-xl);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin-top: var(--space-sm);
  color: var(--muted);
  font-size: var(--step-md);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.split {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.prose > * + * {
  margin-top: var(--space-sm);
}

.prose p {
  color: #3D434D;
}

.prose .lede {
  color: var(--muted);
}

.fineprint {
  margin-top: var(--space-sm);
  font-size: var(--step-sm);
  color: var(--muted);
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mt-2xs {
  margin-top: var(--space-2xs);
}

.u-mt-xs {
  margin-top: var(--space-xs);
}

.u-mt-sm {
  margin-top: var(--space-sm);
}

.u-mt-md {
  margin-top: var(--space-md);
}

.divider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.divider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.divider-dots span:nth-child(2) {
  background: var(--coral);
}

.divider-dots span:nth-child(3) {
  background: var(--navy);
}

.note-box {
  background: var(--bg-tint-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-block: var(--space-md);
}

.note-box h2,
.note-box h3 {
  font-size: var(--step-md);
  margin-bottom: var(--space-2xs);
}

.note-box p + p {
  margin-top: var(--space-2xs);
}

.note-box .product__list {
  margin-top: var(--space-xs);
}

.legal-notice {
  background: var(--coral-soft);
  border: 1px solid #EAC3B7;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: #5C2A1B;
  margin-block: var(--space-md);
}

.legal-notice p {
  margin: 0;
}


/* ==========================================================================
   7. ANNOUNCEMENT BAR
   ========================================================================== */

.announcement {
  background: var(--navy);
  color: var(--ink-on-dark);
  font-size: var(--step-xs);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.6rem var(--gutter);
}

.announcement p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement span[aria-hidden] {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}


/* ==========================================================================
   8. HEADER AND NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 72px;
  padding-block: var(--space-2xs);
}

/* --- Text logo --- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--navy);
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  position: relative;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.logo__mark::before,
.logo__mark::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background: var(--warm-white);
}

.logo__mark::before {
  left: 9px;
  right: 9px;
  top: 11px;
  height: 2px;
  opacity: 0.9;
}

.logo__mark::after {
  left: 9px;
  right: 14px;
  top: 17px;
  height: 2px;
  background: var(--coral);
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.logo__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* --- Desktop navigation --- */
.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-block;
  padding: 0.55rem 0.4rem;
  text-decoration: none;
  color: var(--text);
  font-size: var(--step-sm);
  font-weight: 600;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed) var(--ease);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-list a[aria-current="page"] {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

/* --- CSS-only mobile navigation (details / summary) --- */
.nav-mobile {
  position: relative;
}

.nav-mobile__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  min-height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-size: var(--step-sm);
  font-weight: 700;
  list-style: none;
  box-shadow: var(--shadow-xs);
}

.nav-mobile__toggle::-webkit-details-marker {
  display: none;
}

.nav-mobile__bars {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.nav-mobile__bars::before,
.nav-mobile__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

.nav-mobile__bars::before {
  top: 1px;
  box-shadow: 0 5px 0 var(--navy);
}

.nav-mobile__bars::after {
  bottom: 0;
  background: var(--coral);
}

.nav-mobile[open] .nav-mobile__toggle {
  border-color: var(--navy);
}

.nav-mobile__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
  width: min(19rem, calc(100vw - 2rem));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2xs);
  z-index: 60;
}

.nav-mobile__panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-mobile__panel a {
  display: block;
  padding: 0.85rem 0.9rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.nav-mobile__panel a:hover,
.nav-mobile__panel a:focus-visible {
  background: var(--bg-tint-soft);
  color: var(--navy);
}

.nav-mobile__panel a[aria-current="page"] {
  background: var(--soft-blue);
  color: var(--navy);
}

.nav-mobile__panel li + li {
  border-top: 1px solid var(--border);
}

.nav-mobile__panel .btn {
  width: 100%;
  margin-top: var(--space-2xs);
}


/* ==========================================================================
   9. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--step-sm);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              background-color var(--speed) var(--ease),
              color var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--coral);
  color: #2A0F07;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--coral-deep);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--navy {
  background: var(--navy);
  color: var(--warm-white);
  box-shadow: var(--shadow-sm);
}

.btn--navy:hover {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--warm-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: var(--white);
}

.btn--sm {
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  font-size: var(--step-xs);
}

.btn--block {
  width: 100%;
}

.btn--disabled,
.btn[aria-disabled="true"] {
  background: var(--border);
  color: #5B6472;
  border-color: var(--border-strong);
  box-shadow: none;
  cursor: not-allowed;
}

.btn--disabled:hover,
.btn[aria-disabled="true"]:hover {
  transform: none;
  background: var(--border);
  color: #5B6472;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.btn-row--center {
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: var(--step-sm);
  text-decoration: none;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
}

.link-arrow::after {
  content: "\2192";
  transition: transform var(--speed) var(--ease);
}

.link-arrow:hover::after {
  transform: translateX(3px);
}


/* ==========================================================================
   10. HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60rem 32rem at 82% -12%, rgba(221, 232, 242, 0.95), transparent 60%),
    radial-gradient(44rem 28rem at -6% 4%, rgba(169, 191, 175, 0.32), transparent 62%),
    var(--warm-white);
  padding-block: clamp(2.75rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__text {
  font-size: var(--step-md);
  color: #444B57;
  max-width: 58ch;
  margin-bottom: var(--space-lg);
}

.hero__buttons {
  margin-bottom: var(--space-md);
}

.hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.15rem;
  font-size: var(--step-xs);
  color: var(--muted);
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__micro li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__micro li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--sage);
  transform: rotate(45deg);
}

/* --- CSS-only hero illustration --- */
.hero__art {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: 340px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, var(--navy) 0%, #24365A 55%, #2F4A75 100%);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.15rem, 3vw, 1.9rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: 0;
}

.hero__art::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  right: -6rem;
  bottom: -8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 120, 95, 0.55), transparent 68%);
  z-index: 0;
}

.art-stack {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: clamp(0.6rem, 1.6vw, 1rem);
}

.art-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: clamp(0.7rem, 1.8vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.art-card__label {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.art-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.art-card--welcome {
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-content: flex-start;
}

.art-card--welcome .art-ribbon {
  height: 8px;
  width: 46%;
  border-radius: var(--radius-pill);
  background: var(--coral);
}

.art-card--quest {
  grid-column: 2;
  grid-row: 1;
}

.art-card--check {
  grid-column: 2;
  grid-row: 2;
}

.art-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.1rem;
}

.art-lines span {
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--border);
}

.art-lines span:nth-child(1) { width: 100%; }
.art-lines span:nth-child(2) { width: 88%; }
.art-lines span:nth-child(3) { width: 72%; background: var(--soft-blue-deep); }
.art-lines span:nth-child(4) { width: 94%; }
.art-lines span:nth-child(5) { width: 60%; }

.art-choices {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.art-choices i {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-style: normal;
}

.art-choices i::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
}

.art-choices i:first-child::before {
  border-color: var(--navy);
  background:
    radial-gradient(circle, var(--navy) 0 40%, transparent 42%);
}

.art-choices i::after {
  content: "";
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--border);
  flex: 1;
}

.art-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.art-checklist i {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-style: normal;
}

.art-checklist i::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 4px;
  border: 2px solid var(--sage);
  background: var(--sage-soft);
  flex-shrink: 0;
}

.art-checklist i:nth-child(-n + 2)::before {
  background: var(--sage);
  border-color: var(--sage);
  box-shadow: inset 0 0 0 2px var(--white);
}

.art-checklist i::after {
  content: "";
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--border);
  flex: 1;
}

.art-checklist i:nth-child(2)::after { max-width: 78%; }
.art-checklist i:nth-child(3)::after { max-width: 88%; }

.art-flow {
  grid-column: 1 / -1;
  grid-row: 3;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: clamp(0.6rem, 1.6vw, 0.85rem) clamp(0.7rem, 2vw, 1rem);
}

.art-flow__label {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 0.55rem;
}

.art-flow__steps {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.art-flow__steps b {
  flex: 1;
  height: 26px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink-on-dark);
  min-width: 0;
}

.art-flow__steps b:first-child {
  background: var(--coral);
  border-color: var(--coral);
  color: #2A0F07;
}

.art-flow__steps u {
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  text-decoration: none;
}

.art-badge {
  position: absolute;
  z-index: 2;
  right: clamp(0.8rem, 2.5vw, 1.4rem);
  top: clamp(0.8rem, 2.5vw, 1.4rem);
  background: var(--warm-white);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  animation: float 9s var(--ease) infinite;
}

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

/* Page hero used on inner pages */
.page-hero {
  background:
    radial-gradient(46rem 24rem at 88% -30%, rgba(221, 232, 242, 0.9), transparent 62%),
    var(--warm-white);
  padding-block: clamp(2.25rem, 5.5vw, 4rem);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 22ch;
}

.page-hero .lede {
  margin-top: var(--space-md);
}

.breadcrumb {
  font-size: var(--step-xs);
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: var(--border-strong);
}

.breadcrumb a {
  color: var(--muted);
}


/* ==========================================================================
   11. TRUST STRIP
   ========================================================================== */

.trust {
  background: var(--navy);
  color: var(--ink-on-dark);
  padding-block: clamp(1.5rem, 3.5vw, 2.25rem);
}

.trust__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.trust__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.trust__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.trust__icon::before,
.trust__icon::after {
  content: "";
  position: absolute;
  background: var(--sage);
  border-radius: 2px;
}

/* Icon 1 — download arrow */
.trust__icon--download::before {
  width: 2px;
  height: 15px;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
}

.trust__icon--download::after {
  width: 9px;
  height: 9px;
  left: 50%;
  top: 14px;
  transform: translate(-50%, 0) rotate(45deg);
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  background: transparent;
  border-radius: 0;
}

/* Icon 2 — pencil / customise */
.trust__icon--edit::before {
  width: 15px;
  height: 2px;
  left: 11px;
  bottom: 11px;
  background: var(--coral);
}

.trust__icon--edit::after {
  width: 13px;
  height: 4px;
  left: 12px;
  top: 15px;
  transform: rotate(-42deg);
  background: var(--sage);
}

/* Icon 3 — building blocks */
.trust__icon--business::before {
  width: 9px;
  height: 13px;
  left: 10px;
  bottom: 11px;
  background: var(--sage);
}

.trust__icon--business::after {
  width: 9px;
  height: 18px;
  right: 10px;
  bottom: 11px;
  background: var(--coral);
}

/* Icon 4 — lock */
.trust__icon--secure::before {
  width: 17px;
  height: 11px;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background: var(--sage);
  border-radius: 3px;
}

.trust__icon--secure::after {
  width: 11px;
  height: 11px;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  border: 2px solid var(--sage);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: transparent;
}

.trust__title {
  font-family: var(--font-body);
  font-size: var(--step-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.trust__desc {
  font-size: var(--step-xs);
  color: var(--muted-on-dark);
  line-height: 1.5;
  margin: 0;
}


/* ==========================================================================
   12. BENEFIT CARDS
   ========================================================================== */

.benefits__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-xs);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--soft-blue);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.benefit:nth-child(3n + 2) .benefit__num {
  background: var(--sage-soft);
}

.benefit:nth-child(3n) .benefit__num {
  background: var(--coral-soft);
}

.benefit h3 {
  font-size: var(--step-md);
  margin-bottom: 0.4rem;
}

.benefit p {
  font-size: var(--step-sm);
  color: var(--muted);
  margin: 0;
}


/* ==========================================================================
   13. PRODUCT COLLECTION
   ========================================================================== */

.collection {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--bg-tint-soft) 100%);
  border-block: 1px solid var(--border);
}

.collection__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.collection__count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: var(--step-xs);
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}

.collection__count::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.product-grid {
  display: grid;
  gap: clamp(1.15rem, 2.6vw, 1.9rem);
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.collection__footer {
  margin-top: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.collection__footer p {
  color: var(--muted);
  font-size: var(--step-sm);
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: var(--space-sm);
}


/* ==========================================================================
   14. PRODUCT CARDS
   ========================================================================== */

.product {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
  height: 100%;
}

.product:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.product__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: var(--space-md);
  gap: var(--space-2xs);
}

.product__audience {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #3F5573;
  background: var(--bg-tint-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
  margin: 0;
}

.product__title {
  font-size: 1.15rem;
  line-height: 1.28;
  margin-top: 0.35rem;
}

.product__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral-deep);
  line-height: 1;
  margin: 0.15rem 0 0.35rem;
}

.product__desc {
  font-size: var(--step-sm);
  color: var(--muted);
  margin: 0;
}

.product__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: var(--space-2xs) 0 0.1rem;
}

.product__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 var(--space-2xs);
  padding: 0;
  list-style: none;
  font-size: var(--step-sm);
}

.product__list li {
  position: relative;
  padding-left: 1.5rem;
  color: #3D434D;
  line-height: 1.45;
}

.product__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
}

.product__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: var(--space-xs);
  border-top: 1px solid var(--border);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2F5B4A;
  background: var(--sage-soft);
  border: 1px solid #C9DCCF;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4E8A6E;
}

.product__ship {
  font-size: var(--step-xs);
  color: var(--muted);
  margin: 0;
}

.product__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2xs);
  margin-top: var(--space-xs);
}

.product__actions .btn {
  flex: 1 1 12rem;
}

.product__actions .link-arrow {
  flex: 0 0 auto;
  font-size: var(--step-xs);
}


/* ==========================================================================
   15. CSS PRODUCT COVERS
   ========================================================================== */

.cover {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: clamp(0.9rem, 2.4vw, 1.35rem);
  display: flex;
  align-items: stretch;
  background-image: linear-gradient(150deg, var(--c1) 0%, var(--c2) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--pattern) 1px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.8;
}

.cover::after {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -5rem;
  top: -6rem;
  border-radius: 50%;
  background: var(--pattern);
  opacity: 0.55;
}

.cover__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 28px rgba(16, 26, 43, 0.22);
  padding: clamp(0.7rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  overflow: hidden;
}

.cover__sheet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--accent);
}

.cover__brand {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.1rem 0.45rem;
}

.cover__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 0 0.45rem;
}

.cover__category {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0.1rem 0 0.2rem 0.45rem;
}

.cover__checks {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.15rem 0 0 0.45rem;
}

.cover__checks span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cover__checks span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
}

.cover__checks span:first-child::before,
.cover__checks span:nth-child(2)::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1.5px var(--white);
}

.cover__checks span::after {
  content: "";
  height: 5px;
  border-radius: var(--radius-pill);
  background: #EDEFF3;
  flex: 1;
}

.cover__checks span:nth-child(2)::after { max-width: 72%; }
.cover__checks span:nth-child(3)::after { max-width: 86%; }

.cover__tag {
  margin: auto 0 0 0.45rem;
  padding-top: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border-top: 1px solid var(--border);
}

/* --- Twenty cover colour variations --- */
.cover--01 { --c1: #17243A; --c2: #2E4364; --accent: #D9785F; --accent-ink: #B5573C; --pattern: rgba(255,255,255,0.14); }
.cover--02 { --c1: #DDE8F2; --c2: #B6CEE4; --accent: #17243A; --accent-ink: #17243A; --pattern: rgba(23,36,58,0.10); }
.cover--03 { --c1: #A9BFAF; --c2: #7C9A8A; --accent: #17243A; --accent-ink: #2F5B4A; --pattern: rgba(255,255,255,0.22); }
.cover--04 { --c1: #D9785F; --c2: #B34E36; --accent: #17243A; --accent-ink: #B5573C; --pattern: rgba(255,255,255,0.18); }
.cover--05 { --c1: #1E3A3A; --c2: #305C58; --accent: #A9BFAF; --accent-ink: #2F5B4A; --pattern: rgba(255,255,255,0.13); }
.cover--06 { --c1: #EFE5D6; --c2: #D6C4AB; --accent: #B34E36; --accent-ink: #8C4732; --pattern: rgba(23,36,58,0.09); }
.cover--07 { --c1: #26304F; --c2: #414F7C; --accent: #DDE8F2; --accent-ink: #3F5573; --pattern: rgba(255,255,255,0.14); }
.cover--08 { --c1: #F2F5F8; --c2: #D3E1EE; --accent: #D9785F; --accent-ink: #B5573C; --pattern: rgba(23,36,58,0.08); }
.cover--09 { --c1: #C98C74; --c2: #A5674F; --accent: #17243A; --accent-ink: #8C4732; --pattern: rgba(255,255,255,0.20); }
.cover--10 { --c1: #24382E; --c2: #3C5B49; --accent: #DDE8F2; --accent-ink: #2F5B4A; --pattern: rgba(255,255,255,0.13); }
.cover--11 { --c1: #3C6188; --c2: #22405D; --accent: #F0D9C9; --accent-ink: #3F5573; --pattern: rgba(255,255,255,0.15); }
.cover--12 { --c1: #E6EFE8; --c2: #C4D8C9; --accent: #17243A; --accent-ink: #2F5B4A; --pattern: rgba(23,36,58,0.09); }
.cover--13 { --c1: #2A2440; --c2: #463C6C; --accent: #D9785F; --accent-ink: #B5573C; --pattern: rgba(255,255,255,0.14); }
.cover--14 { --c1: #EAE7E1; --c2: #CDC9C0; --accent: #17243A; --accent-ink: #4A4F58; --pattern: rgba(23,36,58,0.09); }
.cover--15 { --c1: #101A2B; --c2: #1F3350; --accent: #A9BFAF; --accent-ink: #2F5B4A; --pattern: rgba(255,255,255,0.12); }
.cover--16 { --c1: #CFE0F0; --c2: #A5C4E1; --accent: #17243A; --accent-ink: #3F5573; --pattern: rgba(23,36,58,0.10); }
.cover--17 { --c1: #20242A; --c2: #3B424C; --accent: #D9785F; --accent-ink: #B5573C; --pattern: rgba(255,255,255,0.13); }
.cover--18 { --c1: #E6C9C0; --c2: #C79E8E; --accent: #17243A; --accent-ink: #8C4732; --pattern: rgba(23,36,58,0.09); }
.cover--19 { --c1: #17243A; --c2: #1D4C5C; --accent: #A9BFAF; --accent-ink: #2F5B4A; --pattern: rgba(255,255,255,0.14); }
.cover--20 { --c1: #17243A; --c2: #4A3B24; --accent: #D3A85F; --accent-ink: #8C6C2E; --pattern: rgba(255,255,255,0.15); }


/* ==========================================================================
   16. HOW IT WORKS
   ========================================================================== */

.steps {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-xs);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: #4F6B8F;
  line-height: 1;
  margin-bottom: var(--space-2xs);
}

.step h3 {
  font-size: var(--step-md);
  margin-bottom: 0.35rem;
}

.step p {
  font-size: var(--step-sm);
  color: var(--muted);
  margin: 0;
}

.step__bar {
  position: absolute;
  left: var(--space-md);
  right: var(--space-md);
  top: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--coral);
  opacity: 0.85;
}


/* ==========================================================================
   17. AUDIENCE CARDS
   ========================================================================== */

.audience-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.audience {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.audience:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
}

.audience__mark {
  width: 30px;
  height: 30px;
  margin: 0 auto var(--space-2xs);
  border-radius: 9px;
  background: var(--soft-blue);
  position: relative;
}

.audience__mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  border: 2px solid var(--navy);
}

.audience:nth-child(4n + 2) .audience__mark { background: var(--sage-soft); }
.audience:nth-child(4n + 3) .audience__mark { background: var(--coral-soft); }
.audience:nth-child(4n + 4) .audience__mark { background: #EDEAE3; }

.audience:nth-child(3n) .audience__mark::before { border-radius: 50%; }
.audience:nth-child(3n + 1) .audience__mark::before { border-radius: 2px; transform: rotate(45deg); }

.audience span {
  display: block;
  font-size: var(--step-sm);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}


/* ==========================================================================
   18. COMPARISON TABLE
   ========================================================================== */

.table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.compare {
  width: 100%;
  font-size: var(--step-sm);
}

.compare caption {
  caption-side: top;
  text-align: left;
  padding: var(--space-md) var(--space-md) 0;
  font-size: var(--step-xs);
  color: var(--muted);
}

.compare th,
.compare td {
  text-align: left;
  padding: 0.9rem var(--space-md);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare thead th {
  font-family: var(--font-display);
  font-size: var(--step-md);
  color: var(--navy);
  background: var(--bg-tint-soft);
  border-bottom: 2px solid var(--border-strong);
  width: 50%;
}

.compare thead th:last-child {
  background: var(--sage-soft);
}

.compare tbody th {
  font-weight: 500;
  color: #3D434D;
  font-family: var(--font-body);
}

.compare tbody th::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 2px;
  background: var(--border-strong);
  vertical-align: middle;
  margin-right: 0.6rem;
}

.compare tbody td {
  color: var(--navy);
  font-weight: 600;
}

.compare tbody td::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
  margin-right: 0.6rem;
  vertical-align: middle;
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: 0;
}

.compare tbody tr:nth-child(even) {
  background: #FBFCFD;
}


/* ==========================================================================
   19. TESTIMONIALS
   ========================================================================== */

.testimonials__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.testimonial {
  background: var(--white);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--soft-blue-deep);
  display: block;
  margin-bottom: -0.4rem;
}

.testimonial blockquote {
  margin: 0;
  font-size: var(--step-md);
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.45;
}

.testimonial figcaption {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  font-size: var(--step-xs);
  color: var(--muted);
}

.placeholder-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A4B18;
  background: #FBF0DF;
  border: 1px solid #EBD6B4;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.65rem;
  margin-bottom: var(--space-2xs);
}


/* ==========================================================================
   20. FAQ
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.faq[open] {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.faq > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  min-height: 56px;
  font-family: var(--font-display);
  font-size: var(--step-md);
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

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

.faq > summary::after {
  content: "";
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin-top: 0.45rem;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(45deg);
  transition: transform var(--speed) var(--ease);
}

.faq[open] > summary::after {
  transform: rotate(-135deg);
}

.faq > summary:hover {
  background: var(--bg-tint-soft);
}

.faq__body {
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
}

.faq__body p + p,
.faq__body ul + p,
.faq__body p + ul {
  margin-top: var(--space-2xs);
}

.faq__body ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: #3D434D;
}

.faq__body li + li {
  margin-top: 0.2rem;
}

.faq__body p {
  color: #3D434D;
  font-size: var(--step-sm);
}


/* ==========================================================================
   21. FORMS
   ========================================================================== */

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
}

.form-grid--spaced {
  margin-top: var(--space-md);
}

.form-intro {
  margin-top: var(--space-2xs);
  font-size: var(--step-sm);
  color: var(--muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: var(--step-sm);
  font-weight: 700;
  color: var(--navy);
}

.field .hint {
  font-size: var(--step-xs);
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  background: var(--warm-white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: var(--step-sm);
  color: var(--text);
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:hover,
.field textarea:hover {
  border-color: var(--muted);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(23, 36, 58, 0.12);
}

.field--full {
  grid-column: 1 / -1;
}

.form-footnote {
  margin-top: var(--space-sm);
  font-size: var(--step-xs);
  color: var(--muted);
}

.form-status {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #FBF0DF;
  border: 1px solid #EBD6B4;
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--step-sm);
  color: #5F3D12;
}

.form-status strong {
  color: #5F3D12;
}

.form-status::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: #C98A2E;
  box-shadow: inset 0 0 0 2px #FBF0DF, inset 0 -6px 0 -2px #FBF0DF;
}

.privacy-aside {
  background: var(--bg-tint-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  font-size: var(--step-sm);
  color: #3D434D;
  align-self: start;
}

.privacy-aside h2,
.privacy-aside h3 {
  font-size: var(--step-md);
  margin-bottom: var(--space-2xs);
}

.privacy-aside h3 {
  margin-top: var(--space-md);
}

.privacy-aside p + p {
  margin-top: var(--space-2xs);
}

.privacy-aside ul {
  list-style: none;
  padding: 0;
  margin: var(--space-2xs) 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.privacy-aside li {
  position: relative;
  padding-left: 1.35rem;
}

.privacy-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--sage);
  transform: rotate(45deg);
}

/* --- Newsletter --- */
.newsletter {
  background: linear-gradient(150deg, var(--navy) 0%, #24365A 100%);
  color: var(--ink-on-dark);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}

.newsletter::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  right: -8rem;
  top: -10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 191, 175, 0.4), transparent 68%);
}

.newsletter__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-md);
}

.newsletter h2 {
  color: var(--white);
}

.newsletter p {
  color: var(--muted-on-dark);
  font-size: var(--step-sm);
  max-width: 52ch;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
}

.newsletter__form label {
  font-size: var(--step-xs);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.newsletter__form input {
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-size: var(--step-sm);
}

.newsletter__consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: var(--step-xs);
  color: var(--muted-on-dark);
  line-height: 1.5;
}

.newsletter__consent label {
  font-weight: 400;
  color: inherit;
  font-size: var(--step-xs);
}

.newsletter__note {
  margin: 0;
  font-size: var(--step-xs);
  color: var(--muted-on-dark);
}

.newsletter__note a {
  color: var(--sage);
}

.newsletter__note a:hover {
  color: var(--white);
}

.newsletter__consent input {
  min-height: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--coral);
}

.integration-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2A0F07;
  background: var(--coral);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
}


/* ==========================================================================
   22. POLICY PAGES
   ========================================================================== */

.policy {
  padding-block: clamp(2.25rem, 5vw, 4rem);
}

.policy__layout {
  display: grid;
  gap: var(--space-xl);
}

.policy__toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-xs);
  align-self: start;
}

.policy__toc h2 {
  font-size: var(--step-md);
  margin-bottom: var(--space-2xs);
}

.policy__toc ol {
  margin: 0;
  padding-left: 1.15rem;
  font-size: var(--step-sm);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--muted);
}

.policy__toc a {
  text-decoration: none;
}

.policy__toc a:hover {
  text-decoration: underline;
}

.policy__body {
  max-width: 74ch;
}

.policy__body h2 {
  font-size: var(--step-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xs);
  scroll-margin-top: 6rem;
}

.policy__body h2:first-of-type {
  margin-top: 0;
}

.policy__body h3 {
  font-size: var(--step-md);
  margin-top: var(--space-md);
  margin-bottom: var(--space-3xs);
}

.policy__body p {
  margin-top: var(--space-2xs);
  color: #3D434D;
}

.policy__body ul,
.policy__body ol {
  margin-top: var(--space-2xs);
  padding-left: 1.35rem;
  color: #3D434D;
}

.policy__body li {
  margin-top: 0.3rem;
}

.policy__body dl {
  margin-top: var(--space-2xs);
}

.policy__body dt {
  font-weight: 700;
  color: var(--navy);
  margin-top: var(--space-2xs);
}

.policy__body dd {
  margin: 0.15rem 0 0;
  color: #3D434D;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: var(--step-xs);
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xs) var(--space-sm);
  margin-bottom: var(--space-md);
}

.meta-line strong {
  color: var(--navy);
}


/* ==========================================================================
   23. CALLS TO ACTION
   ========================================================================== */

.cta {
  background:
    radial-gradient(40rem 20rem at 10% 110%, rgba(217, 120, 95, 0.35), transparent 60%),
    linear-gradient(150deg, var(--navy-deep) 0%, #1E3151 100%);
  color: var(--ink-on-dark);
}

.cta__inner {
  display: grid;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  justify-items: center;
}

.cta h2 {
  color: var(--white);
  max-width: 20ch;
}

.cta p {
  color: var(--muted-on-dark);
  max-width: 58ch;
  font-size: var(--step-md);
}

.cta__note {
  font-size: var(--step-xs);
  color: var(--muted-on-dark);
}

.cta-band {
  background: var(--soft-blue);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: grid;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-xl);
}

.cta-band h2 {
  font-size: var(--step-lg);
}

.cta-band p {
  color: #3D434D;
  font-size: var(--step-sm);
  margin-top: 0.25rem;
}


/* ==========================================================================
   24. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--navy-deep);
  color: var(--muted-on-dark);
  font-size: var(--step-sm);
  padding-block: clamp(2.25rem, 5vw, 3.5rem) var(--space-md);
  margin-top: auto;
}

.footer__grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand .logo {
  color: var(--white);
}

.footer__brand .logo__text small {
  color: var(--sage);
}

.footer__brand p {
  margin-top: var(--space-sm);
  max-width: 34ch;
  font-size: var(--step-sm);
}

.footer__brand .btn {
  margin-top: var(--space-sm);
}

.footer h2 {
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

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

.footer__links a {
  display: inline-block;
  padding: 0.45rem 0;
  color: var(--muted-on-dark);
  text-decoration: none;
  min-height: 40px;
  line-height: 1.5;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer__contact p {
  margin-bottom: var(--space-2xs);
}

.footer__contact a {
  color: var(--sage);
  word-break: break-word;
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs) var(--space-md);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: var(--step-xs);
}

.footer__bottom p {
  margin: 0;
}

.footer__disclaimer {
  margin-top: var(--space-sm);
  font-size: var(--step-xs);
  line-height: 1.6;
  max-width: 90ch;
  color: #8C9BB2;
}


/* ==========================================================================
   25. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (min-width: 34rem) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__grid,
  .steps,
  .testimonials__grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-band {
    grid-template-columns: 1fr auto;
    padding: var(--space-lg);
  }
}

@media (min-width: 48rem) {
  .newsletter__form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: var(--space-sm);
  }

  .newsletter__form .field-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .newsletter__form .newsletter__consent,
  .newsletter__form .newsletter__note {
    grid-column: 1 / -1;
  }

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

  .policy__layout {
    grid-template-columns: 16rem 1fr;
    gap: var(--space-xl);
  }

  .policy__toc {
    position: sticky;
    top: 6rem;
  }
}

@media (min-width: 60rem) {
  .nav-desktop {
    display: block;
  }

  .nav-mobile {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

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

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

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

  .split {
    grid-template-columns: 1.35fr 1fr;
    gap: var(--space-xl);
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }

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

@media (min-width: 82rem) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ==========================================================================
   26. REDUCED-MOTION STYLES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover,
  .product:hover,
  .benefit:hover,
  .audience:hover {
    transform: none;
  }
}


/* ==========================================================================
   27. PRINT STYLES
   ========================================================================== */

@media print {
  :root {
    --bg-page: #FFFFFF;
  }

  body {
    background: #FFFFFF;
    color: #000000;
    font-size: 11pt;
    line-height: 1.45;
  }

  .announcement,
  .site-header,
  .site-footer,
  .cta,
  .cta-band,
  .newsletter,
  .policy__toc,
  .skip-link,
  .hero__art,
  .btn,
  .product__actions {
    display: none !important;
  }

  main {
    padding: 0;
  }

  .section,
  .policy {
    padding-block: 0;
  }

  .container,
  .policy__body {
    max-width: 100%;
    padding-inline: 0;
  }

  .policy__layout {
    display: block;
  }

  h1, h2, h3 {
    color: #000000;
    page-break-after: avoid;
    break-after: avoid;
  }

  p, li, tr {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .legal-notice,
  .note-box,
  .meta-line {
    border: 1px solid #999999;
    background: #FFFFFF;
    color: #000000;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .policy__body a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    word-break: break-all;
  }

  .faq[open] .faq__body,
  .faq .faq__body {
    display: block;
  }
}
