/* =========================================================
   Niranoma Creative Studio
   Fonts: Playfair Display (headings) + Source Sans 3 (body)
   Mobile first. Tested down to 344px wide.
   ========================================================= */

:root {
  /* Brand colours (from Branding document) */
  --primary: #18403E;
  --primary-2: #305C5E;
  --accent: #48A151;
  --accent-btn: #347C3C;      /* accent darkened so white text passes WCAG AA */
  --accent-on-dark: #6FC078;  /* accent lightened for text on dark backgrounds */
  --ink: #161515;
  --paper: #F8F7F7;

  /* Supporting neutrals */
  --white: #FFFFFF;
  --text: #2F3635;
  --muted: #5D6664;
  --line: #E3E6E5;
  --mint: #EDF5EE;
  --danger: #B3413A;
  --warn: #B7791F;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(22, 21, 21, .06), 0 2px 8px rgba(22, 21, 21, .05);
  --shadow: 0 10px 30px -12px rgba(24, 64, 62, .22), 0 4px 10px -6px rgba(22, 21, 21, .08);
  --shadow-lg: 0 30px 60px -24px rgba(24, 64, 62, .35);

  --gutter: 16px;
  --container: 1200px;
  --header-h: 72px;
  --section-y: clamp(4rem, 3rem + 5vw, 7.5rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 768px) { :root { --gutter: 28px; --header-h: 80px; } }
@media (min-width: 1200px) { :root { --gutter: 40px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;           /* 16px on mobile */
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (min-width: 768px) { body { font-size: 1.125rem; } } /* 18px on tablet and desktop */

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--primary); text-underline-offset: 3px; }
a:hover { color: var(--accent-btn); }
button, input, textarea, select { font: inherit; color: inherit; }
strong, b { font-weight: 700; color: var(--ink); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.01em;
  text-wrap: balance;
}
h1 strong, h2 strong, h3 strong { color: inherit; font-weight: inherit; }
h1 { font-size: clamp(2.2rem, 1.55rem + 3vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 1.35rem + 2.1vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.1rem + .4vw, 1.4rem); line-height: 1.3; }

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

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--primary); color: rgba(255,255,255,.86); }
.section--dark h2, .section--dark h3, .section--dark strong { color: #fff; }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { font-size: 1.08em; color: var(--muted); }
.section--dark .section-head .lead { color: rgba(255,255,255,.8); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--primary-2);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.section--dark .eyebrow { color: var(--accent-on-dark); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent-btn); --btn-fg: #fff; --btn-bd: var(--accent-btn);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .85rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg); border: 2px solid var(--btn-bd);
  border-radius: 999px; font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { --btn-bg: var(--primary); --btn-bd: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--primary); --btn-bd: rgba(24,64,62,.3); }
.btn--outline:hover { --btn-bg: var(--primary); --btn-bd: var(--primary); }
.btn--on-dark:hover { --btn-bg: #fff; --btn-bd: #fff; color: var(--primary); }
.btn--sm { min-height: 44px; padding: .6rem 1.2rem; font-size: .95rem; }
.btn--block { width: 100%; }

.cta-group { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta-group .btn { flex: 1 1 auto; }
@media (min-width: 480px) { .cta-group .btn { flex: 0 0 auto; } }

/* Note under every CTA (not the header CTA).
   16px on tablet/desktop = 2px smaller than the 18px body text.
   On mobile it matches the 16px body text. */
.cta-note { font-style: italic; font-size: 1rem; color: var(--muted); margin-top: .9rem; line-height: 1.5; }
.section--dark .cta-note, .final-cta .cta-note { color: rgba(255,255,255,.75); }
.form .cta-note { color: var(--muted); text-align: center; }

/* ---------- Icons ---------- */
.icon { width: 22px; height: 22px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-badge {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: grid; place-items: center; background: var(--mint); color: var(--accent-btn);
}
.icon-badge .icon { width: 22px; height: 22px; }
.icon-badge--x { background: #FBECEA; color: var(--danger); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(22,21,21,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.logo { display: inline-flex; flex: none; }
.logo img { width: 158px; height: auto; }
@media (min-width: 768px) { .logo img { width: 190px; } }

.nav { display: none; }
.header-actions { display: flex; align-items: center; gap: .35rem; }
.header-cta { display: none; }
.header-phone-full { display: none; }

.icon-btn {
  width: 46px; height: 46px; display: inline-grid; place-items: center;
  border-radius: 12px; border: 0; background: transparent; color: var(--primary);
  cursor: pointer; text-decoration: none; transition: background-color .2s;
}
.icon-btn:hover { background: var(--mint); color: var(--primary); }
.icon-btn svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 1100px) {
  .nav { display: block; }
  .nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; }
  .nav__item { position: relative; display: flex; align-items: center; }
  .nav__link {
    display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .8rem;
    color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1rem; border-radius: 8px;
  }
  .nav__link:hover, .nav__link[aria-current="page"] { color: var(--accent-btn); }
  .nav__sub-toggle {
    margin-left: -.55rem; width: 30px; height: 36px; display: grid; place-items: center;
    background: none; border: 0; cursor: pointer; color: var(--ink); border-radius: 6px;
  }
  .nav__sub-toggle svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
  .nav__item:hover .nav__sub-toggle svg, .nav__sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .dropdown {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: .5rem; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s, transform .25s var(--ease), visibility .2s;
  }
  .dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
  .nav__item:hover .dropdown, .nav__item:focus-within .dropdown, .nav__item.is-open .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .dropdown a {
    display: block; padding: .65rem .85rem; border-radius: 10px; color: var(--ink);
    text-decoration: none; font-weight: 500; font-size: .98rem;
  }
  .dropdown a:hover, .dropdown a:focus-visible { background: var(--mint); color: var(--primary); }
  .header-cta { display: inline-flex; }
  .menu-toggle, .header-phone-icon { display: none; }
}
@media (min-width: 1280px) {
  .header-phone-full {
    display: inline-flex; align-items: center; gap: .45rem; margin-right: .75rem;
    font-weight: 700; color: var(--primary); text-decoration: none;
  }
  .header-phone-full svg { width: 18px; height: 18px; color: var(--accent-btn); }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: #fff; overflow-y: auto; overscroll-behavior: contain;
  padding: 1.5rem var(--gutter) 2.5rem;
  display: flex; flex-direction: column; gap: 2.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .25s, transform .3s var(--ease), visibility .25s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__label {
  font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .75rem;
}
.mobile-nav { list-style: none; }
.mobile-nav > li { border-bottom: 1px solid var(--line); }
.mobile-nav__row { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav a {
  display: block; flex: 1; padding: .95rem 0; color: var(--ink); text-decoration: none;
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 600;
}
.mobile-nav a[aria-current="page"] { color: var(--accent-btn); }
.mobile-nav__toggle {
  width: 46px; height: 46px; display: grid; place-items: center; border: 0; background: var(--paper);
  border-radius: 10px; cursor: pointer; color: var(--primary);
}
.mobile-nav__toggle svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.mobile-nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-sub { list-style: none; padding: 0 0 .75rem .25rem; }
.mobile-sub[hidden] { display: none; }
.mobile-sub a { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; padding: .55rem 0 .55rem 1rem; border-left: 2px solid var(--line); color: var(--text); }
.mobile-contact { list-style: none; display: grid; gap: 1rem; }
.mobile-contact a, .mobile-contact span { display: flex; align-items: center; gap: .85rem; color: var(--ink); text-decoration: none; font-weight: 600; word-break: break-word; }
.mobile-contact .icon-badge { width: 42px; height: 42px; }
.mobile-menu__cta { margin-top: auto; }
body.menu-open { overflow: hidden; }
@media (min-width: 1100px) { .mobile-menu { display: none; } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="left"] { transform: translateX(-28px); }
.js [data-reveal="right"] { transform: translateX(28px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* =========================================================
   BROWSER FRAME (used in hero + portfolio)
   ========================================================= */
.browser {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(22,21,21,.08);
}
.browser__bar {
  display: flex; align-items: center; gap: 6px; height: 26px; padding: 0 12px;
  background: #F1F2F1; border-bottom: 1px solid var(--line);
}
.browser__bar i { width: 8px; height: 8px; border-radius: 50%; background: #D5D8D7; display: block; }
.browser__bar i:nth-child(1) { background: #F2766B; }
.browser__bar i:nth-child(2) { background: #F5C451; }
.browser__bar i:nth-child(3) { background: #5DC36A; }
.browser__url {
  margin-left: 10px; flex: 1; height: 15px; border-radius: 99px; background: #fff;
  font-size: 10px; line-height: 15px; color: var(--muted); padding-inline: 10px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: clamp(2.5rem, 1.5rem + 4vw, 5rem); padding-bottom: clamp(3.5rem, 2rem + 5vw, 6rem); overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: auto -20% 40% auto; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(closest-side, rgba(72,161,81,.14), transparent 70%); pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 3rem; align-items: center; position: relative; }
.hero__grid > *, .split > *, .faq-layout > *, .final-cta__grid > * { min-width: 0; }
.hero__text > p:not(.eyebrow) { font-size: 1.1em; max-width: 36em; }
.hero__checks { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin: 1.5rem 0 2rem; }
.hero__checks li { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--ink); }
.hero__checks .icon { width: 22px; height: 22px; color: var(--accent-btn); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; list-style: none; margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line); font-size: .95rem; font-weight: 600; color: var(--primary-2);
}
.hero__trust li { display: flex; align-items: center; gap: .45rem; }
.hero__trust .icon { width: 18px; height: 18px; color: var(--accent); }

/* Hero visual: two columns of screenshots drifting in opposite directions (all screen sizes) */
.hero__visual { position: relative; padding-bottom: 2.5rem; }
.hero-grid {
  --hg: 12px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--hg);
  height: 380px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.hero-col { display: flex; flex-direction: column; gap: var(--hg); animation: drift-up 32s linear infinite; }
.hero-col--down { animation-name: drift-down; }
.hero-grid:hover .hero-col { animation-play-state: paused; }
.hero-badge {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  display: flex; align-items: center; gap: .7rem; background: #fff; border-radius: 14px;
  padding: .65rem 1rem; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  width: max-content; max-width: calc(100% - 16px);
  font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.3; z-index: 2;
}
.hero-badge .icon-badge { width: 36px; height: 36px; border-radius: 10px; }
@media (min-width: 600px) { .hero-grid { --hg: 16px; height: 520px; } }
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 4rem; }
  .hero__visual { height: 640px; padding-bottom: 0; }
  .hero-grid { --hg: 18px; height: 100%; }
  .hero-col { animation-duration: 40s; }
  .hero-badge { left: -24px; bottom: 56px; transform: none; }
}
/* Each column holds its 3 images twice, so moving 50% (plus half a gap) loops seamlessly */
@keyframes drift-up { from { transform: translateY(0); } to { transform: translateY(calc(-50% - var(--hg) / 2)); } }
@keyframes drift-down { from { transform: translateY(calc(-50% - var(--hg) / 2)); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero-col { animation: none !important; } }

/* =========================================================
   PROBLEM
   ========================================================= */
.pain-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(6, 1fr); } .pain-grid > * { grid-column: span 2; } .pain-grid > :nth-child(4) { grid-column: 2 / span 2; } }
.pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-card h3 { margin: 1rem 0 .4rem; font-size: 1.2rem; }
.pain-card p { color: var(--muted); font-size: .98em; }

.callout {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem); display: grid; gap: 1.25rem; align-items: center;
  background: var(--primary); color: rgba(255,255,255,.9); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.callout img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.25); }
.callout p { font-size: 1.1em; }
.callout strong { color: #fff; }
@media (min-width: 700px) { .callout { grid-template-columns: auto 1fr; gap: 2rem; } .callout img { width: 104px; height: 104px; } }

/* =========================================================
   SOLUTION
   ========================================================= */
.split { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .split { grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: start; } .split__sticky { position: sticky; top: calc(var(--header-h) + 40px); } }
.check-grid { display: grid; gap: 1rem; list-style: none; }
@media (min-width: 600px) { .check-grid { grid-template-columns: repeat(2, 1fr); } }
.check-card { display: flex; gap: 1rem; padding: 1.35rem; border-radius: var(--radius); background: var(--paper); border: 1px solid transparent; transition: border-color .3s, background-color .3s; }
.check-card:hover { background: #fff; border-color: var(--line); }
.check-card h3 { font-size: 1.12rem; margin: .1rem 0 .3rem; }
.check-card p { font-size: .96em; color: var(--muted); }
.closing-line { margin-top: 2rem; font-size: 1.08em; }

/* =========================================================
   BENEFITS
   ========================================================= */
.cards-3 { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .cards-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.benefit-card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.benefit-card::after { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--accent), var(--primary-2)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .benefit-card:hover::after { transform: scaleX(1); }
}
.benefit-card .num { font-family: var(--font-head); font-size: 2.6rem; color: var(--accent); line-height: 1; margin-bottom: 1rem; display: block; }
.benefit-card h3 { font-size: 1.4rem; }
.benefit-card p { color: var(--muted); }

/* =========================================================
   PROCESS
   ========================================================= */
.steps { display: grid; gap: 1.25rem; list-style: none; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.step {
  position: relative; padding: 2rem 1.5rem 1.75rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  transition: background-color .3s, transform .35s var(--ease);
}
.step:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.step__num {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  background: var(--accent); color: var(--ink); margin-bottom: 1.25rem;
}
.step h3 { font-size: 1.35rem; }
@media (min-width: 900px) {
  .step:not(:last-child)::after {
    content: ""; position: absolute; top: 60px; right: -1.5rem; width: 1.5rem; height: 2px;
    background: repeating-linear-gradient(90deg, var(--accent-on-dark) 0 6px, transparent 6px 10px);
  }
}

/* =========================================================
   FEATURES
   ========================================================= */
.feature-grid { display: grid; gap: .85rem; list-style: none; }
@media (min-width: 600px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
.feature {
  display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem 1.15rem;
  border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  transition: border-color .25s, transform .3s var(--ease);
}
.feature:hover { border-color: rgba(72,161,81,.5); transform: translateY(-2px); }
.feature .icon-badge { width: 38px; height: 38px; border-radius: 10px; }
.feature .icon-badge .icon { width: 19px; height: 19px; }
.feature h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; margin: .1rem 0 .2rem; letter-spacing: 0; }
.feature p { font-size: .94em; color: var(--muted); line-height: 1.5; }
.features-closing {
  margin-top: 2rem; padding: 1.25rem 1.5rem; border-radius: var(--radius); background: var(--mint);
  font-family: var(--font-head); font-size: 1.2rem; color: var(--primary); text-align: center;
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio { overflow: hidden; }
.pf-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 8px var(--gutter) 24px; margin-inline: calc(var(--gutter) * -1);
  scroll-padding-inline: var(--gutter); scrollbar-width: none; list-style: none;
}
.pf-track::-webkit-scrollbar { display: none; }
.pf-card { scroll-snap-align: start; }
@media (min-width: 600px) { .pf-track { grid-auto-columns: 60%; } }
@media (min-width: 900px) {
  .pf-track { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); grid-auto-columns: auto; overflow: visible; margin: 0; padding: 0; gap: 2rem 1.75rem; }
}
.pf-frame { position: relative; }
.pf-viewport { position: relative; aspect-ratio: 4 / 3.3; overflow: hidden; background: var(--paper); }
.pf-viewport img {
  position: absolute; top: 0; left: 0; width: 100%; height: auto;
  transform: translate3d(0, 0, 0); will-change: transform;
  transition: transform var(--back-dur, 1.2s) cubic-bezier(.45, 0, .2, 1);
}
.pf-card.is-scrolling .pf-viewport img {
  transform: translate3d(0, var(--scroll-y, 0px), 0);
  transition: transform var(--scroll-dur, 8s) linear;
}
.pf-card .pf-link { display: block; color: inherit; border-radius: 12px; }
.pf-card .pf-link:hover .browser { box-shadow: var(--shadow-lg); }
.pf-card .browser { transition: box-shadow .35s, transform .35s var(--ease); }
.pf-card .pf-link:hover .browser { transform: translateY(-4px); }
.pf-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem .25rem 0; }
.pf-meta h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin: 0; letter-spacing: 0; }
.pf-meta span { font-size: .9rem; color: var(--muted); }
.pf-meta .visit { display: inline-flex; align-items: center; gap: .3rem; font-size: .9rem; font-weight: 700; color: var(--accent-btn); white-space: nowrap; }
.pf-meta .visit svg { width: 16px; height: 16px; }
.pf-hint { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.pf-hint p { font-size: .9rem; color: var(--muted); margin: 0; }
.pf-arrows { display: flex; gap: .5rem; }
.pf-arrows button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; cursor: pointer; color: var(--primary); transition: background-color .2s;
}
.pf-arrows button:hover { background: var(--mint); }
.pf-arrows svg { width: 20px; height: 20px; }
@media (min-width: 900px) { .pf-hint { display: none; } }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare-wrap { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow-x: auto; background: #fff; box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .98em; }
.compare th, .compare td { padding: 1rem .9rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); background: var(--paper); font-weight: 600; }
.compare tbody th { text-align: left; font-weight: 600; color: var(--ink); min-width: 190px; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare .col-us { background: var(--mint); }
.compare thead .col-us { background: var(--primary); color: #fff; }
.compare td .icon { margin-inline: auto; width: 24px; height: 24px; }
.compare .yes { color: var(--accent-btn); }
.compare .no { color: var(--danger); }
.compare .some { color: var(--warn); }
.compare th:first-child { position: sticky; left: 0; background: inherit; z-index: 1; }
.compare tbody tr { background: #fff; }
.compare thead tr { background: var(--paper); }
.legend { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 1.25rem; font-size: .95rem; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: .4rem; }
.legend .icon { width: 18px; height: 18px; }
.scroll-hint { font-size: .85rem; color: var(--muted); margin-top: .6rem; }
@media (min-width: 640px) { .scroll-hint { display: none; } }

/* =========================================================
   FACTS / STATS
   ========================================================= */
.stats { display: grid; gap: 1.25rem; list-style: none; }
@media (min-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; border: 1px solid var(--line); }
.stat__num { font-family: var(--font-head); font-size: clamp(2.8rem, 2.2rem + 2vw, 3.6rem); font-weight: 700; color: var(--primary); line-height: 1; display: block; margin-bottom: .75rem; }
.stat__label { display: block; font-weight: 700; color: var(--ink); margin-bottom: .5rem; line-height: 1.35; }
.stat p { color: var(--muted); font-size: .95em; }
.takeaway {
  margin-top: 2rem; padding: 1.5rem; border-left: 4px solid var(--accent); background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0; font-size: 1.05em;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; } .faq-layout .section-head { position: sticky; top: calc(var(--header-h) + 40px); } }
.faq-list { display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .25s, box-shadow .25s; }
.faq-item[open] { border-color: rgba(72,161,81,.5); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.25rem; font-weight: 700; color: var(--ink); font-size: 1.05em; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline-offset: -3px; border-radius: var(--radius); }
.faq-icon { width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--mint); color: var(--accent-btn); display: grid; place-items: center; transition: transform .3s var(--ease), background-color .3s; }
.faq-icon svg { width: 16px; height: 16px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--accent-btn); color: #fff; }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--muted); }
.faq-item[open] .faq-answer { animation: faq-in .35s var(--ease); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-answer p + p { margin-top: .75em; }

/* =========================================================
   FINAL CTA + CONTACT FORM
   ========================================================= */
.final-cta { background: var(--primary); color: rgba(255,255,255,.88); position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; width: 720px; height: 720px; right: -260px; top: -260px; border-radius: 50%;
  border: 90px solid rgba(72,161,81,.12); pointer-events: none;
}
.final-cta__grid { display: grid; gap: 2.5rem; position: relative; }
@media (min-width: 1024px) { .final-cta__grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; } }
.final-cta h2 { color: #fff; }
.final-cta .lead { font-size: 1.1em; color: rgba(255,255,255,.85); }
.results { list-style: none; display: grid; gap: 1rem; margin-top: 2rem; }
.results li { display: flex; gap: 1rem; align-items: flex-start; }
.results .icon-badge { background: rgba(111,192,120,.16); color: var(--accent-on-dark); }
.results strong { color: #fff; display: block; }
.results span { color: rgba(255,255,255,.8); font-size: .97em; }
.contact-direct { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; }
.contact-direct a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.contact-direct a:hover { color: var(--accent-on-dark); }
.contact-direct svg { width: 18px; height: 18px; color: var(--accent-on-dark); }

.form { background: #fff; color: var(--text); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: 0 40px 80px -30px rgba(0,0,0,.45); }
.form h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.form > p.form-intro { color: var(--muted); font-size: .98em; margin-bottom: 1.5rem; }
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label { font-weight: 700; font-size: .95rem; color: var(--ink); }
.field label .req { color: var(--danger); }
.field input, .field textarea {
  width: 100%; min-height: 50px; padding: .75rem 1rem; border: 1.5px solid #CDD3D1; border-radius: 10px;
  background: #fff; font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-btn); box-shadow: 0 0 0 4px rgba(72,161,81,.18); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .88rem; font-weight: 600; min-height: 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; font-size: .95rem; font-weight: 600; }
.form-status.is-error { color: var(--danger); }
.form .btn[disabled] { opacity: .7; cursor: progress; transform: none; }
.privacy-note { font-size: .85rem; color: var(--muted); text-align: center; margin-top: .75rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: clamp(3.5rem, 3rem + 3vw, 5rem); font-size: .98rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand img { width: 190px; margin-bottom: 1rem; }
.site-footer h2 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; font-weight: 700; }
.footer-links { list-style: none; display: grid; gap: .55rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--accent-on-dark); }
.footer-contact { list-style: none; display: grid; gap: .8rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent-on-dark); margin-top: .25rem; flex: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; font-size: .88rem; }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.mobile-contact .icon-badge { display: grid; place-items: center; color: var(--accent-btn); }

/* Final CTA colours on dark background */
.final-cta .eyebrow { color: var(--accent-on-dark); }
.final-cta .lead strong { color: #fff; }

/* Comparison table fits small screens without sideways scrolling */
@media (max-width: 639px) {
  .compare { min-width: 0; font-size: .9rem; }
  .compare th, .compare td { padding: .8rem .35rem; }
  .compare thead th { font-size: .82rem; line-height: 1.25; }
  .compare tbody th { min-width: 0; padding-left: .85rem; }
  .compare td .icon { width: 20px; height: 20px; }
}

/* Show different helper text for mouse vs touch screens */
.on-touch { display: none; }
@media (hover: none) { .on-touch { display: inline; } .on-mouse { display: none; } }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.page-hero .hero__text > p:not(.eyebrow) { font-size: 1.05em; }
.about-hero__cta { margin-top: 2rem; }

/* Portrait on an arch, echoing the arcs in the logo */
.portrait { position: relative; max-width: 440px; margin: 0 auto; padding-top: 2rem; }
.portrait__arch {
  position: absolute; left: 6%; right: 6%; bottom: 0; top: 14%;
  border-radius: 999px 999px 28px 28px;
  background: linear-gradient(160deg, var(--primary-2), var(--primary));
  overflow: hidden;
}
.portrait__arch::before, .portrait__arch::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); border-radius: 50%;
  border: 16px solid var(--accent); opacity: .5;
}
.portrait__arch::before { width: 130%; aspect-ratio: 1; top: 8%; }
.portrait__arch::after { width: 90%; aspect-ratio: 1; top: 28%; border-color: rgba(255,255,255,.12); }
.portrait__img { position: relative; width: 100%; height: auto; }
.portrait__chip {
  position: absolute; display: flex; align-items: center; gap: .6rem; background: #fff;
  padding: .55rem .9rem .55rem .55rem; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-weight: 700; font-size: .9rem; color: var(--ink); white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.portrait__chip .icon-badge { width: 34px; height: 34px; border-radius: 10px; }
.portrait__chip .icon-badge .icon { width: 18px; height: 18px; }
.portrait__chip--top { left: 0; top: 50%; }
.portrait__chip--bottom { right: 0; bottom: 12%; animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (min-width: 1024px) { .portrait__chip--top { left: -10%; top: 30%; } .portrait__chip--bottom { right: -8%; } }

/* Story */
.story { display: grid; gap: 2.5rem; align-items: center; }
.story > * { min-width: 0; }
@media (min-width: 1024px) { .story { grid-template-columns: .85fr 1.15fr; gap: 5rem; } }
.story__frame {
  position: relative; max-width: 420px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(120% 80% at 50% 100%, rgba(72,161,81,.28), transparent 60%), var(--mint);
  padding-top: 1.5rem;
}
.story__frame img { width: 100%; height: auto; }
.pull-line {
  font-family: var(--font-head); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); line-height: 1.25;
  color: var(--primary); padding-left: 1.1rem; border-left: 4px solid var(--accent); margin: 1.5rem 0;
}
.story__note {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.75rem; padding: 1.35rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}

/* Values */
.values { list-style: none; }
.value-card {
  padding: 2rem 1.6rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  transition: background-color .3s, transform .35s var(--ease);
}
.value-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.value-card__icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--ink); margin-bottom: 1.25rem; }
.value-card__icon .icon { stroke-width: 2.5; }
.value-card h3 { font-size: 1.3rem; }

/* Why choose */
.why-grid { display: grid; gap: 1.25rem; list-style: none; }
@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { padding: 1.75rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; text-align: center; transition: transform .35s var(--ease), box-shadow .35s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card .icon-badge { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1.1rem; }
.why-card .icon-badge .icon { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.why-card p { color: var(--muted); font-size: .96em; }

/* Who we work with */
.who { display: grid; gap: 3rem; align-items: center; }
.who > * { min-width: 0; }
@media (min-width: 1024px) { .who { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.who__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.who__gallery .browser { margin: 0; }
.who__gallery .browser:first-child { grid-column: 1 / -1; }
@media (min-width: 600px) { .who__gallery { gap: 18px; } }
@media (prefers-reduced-motion: reduce) { .portrait__chip { animation: none; } }

/* About: the second portrait only shows on desktop */
@media (max-width: 1023px) { .story__media { display: none; } }

/* =========================================================
   CENTRED PAGE HERO (Services, Pricing, etc.)
   ========================================================= */
.page-hero--center { text-align: center; }
.page-hero__inner { max-width: 820px; margin-inline: auto; }
.page-hero--center h1 { margin-bottom: .3em; }
.page-hero__sub { font-family: var(--font-head); font-size: clamp(1.3rem, 1.1rem + .8vw, 1.75rem); color: var(--primary); line-height: 1.3; margin-bottom: 1.25rem; }
.page-hero--center p:not(.page-hero__sub):not(.cta-note):not(.eyebrow):not(.legal-updated) { color: var(--muted); font-size: 1.05em; }
.page-hero__cta { margin-top: 2rem; }
.cta-group--center { justify-content: center; }
.jump-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 2.75rem; }
.jump-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: .5rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: background-color .2s, border-color .2s, color .2s;
}
.jump-nav a:hover { background: var(--mint); border-color: rgba(72,161,81,.4); color: var(--primary); }

/* =========================================================
   SERVICES LIST
   ========================================================= */
.services-list .container { display: grid; gap: clamp(4.5rem, 3rem + 5vw, 8rem); }
.service-row { display: grid; gap: 2.25rem; align-items: center; scroll-margin-top: calc(var(--header-h) + 24px); }
.service-row > * { min-width: 0; }
@media (min-width: 1024px) {
  .service-row { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .service-row--flip .service-row__media { order: 2; }
}
.service-row__text { position: relative; }
.service-row__num { display: block; font-family: var(--font-head); font-size: 3.5rem; line-height: 1; color: rgba(72,161,81,.3); margin-bottom: .5rem; }
.service-row h2 { font-size: clamp(1.6rem, 1.3rem + 1.3vw, 2.35rem); }
.perfect-for { background: #fff; border-left: 4px solid var(--accent); padding: 1rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--accent-btn);
  text-decoration: none; min-height: 44px; border-bottom: 2px solid transparent; transition: border-color .2s, gap .25s var(--ease);
}
.link-arrow svg { width: 18px; height: 18px; }
.link-arrow:hover { gap: .8rem; border-color: currentColor; color: var(--primary); }

/* Mock visuals (decorative) */
.mock { position: relative; max-width: 540px; margin-inline: auto; padding: 1.5rem 0 1.5rem; }
.mock::before {
  content: ""; position: absolute; inset: 0 6%; border-radius: 32px;
  background: linear-gradient(150deg, var(--mint), rgba(48,92,94,.12)); z-index: 0;
}
.mock > * { position: relative; z-index: 1; }
.mock-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid rgba(22,21,21,.06); padding: 1.25rem; margin-inline: 10%; }
.mock-chip {
  position: absolute; right: 0; bottom: 8%; display: flex; align-items: center; gap: .55rem; z-index: 2;
  background: #fff; padding: .5rem .85rem .5rem .5rem; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-weight: 700; font-size: .85rem; color: var(--ink); white-space: nowrap; animation: float 6s ease-in-out infinite;
}
.mock-chip--left { right: auto; left: 0; }
.mock-chip .icon-badge { width: 32px; height: 32px; border-radius: 9px; }
.mock-chip .icon-badge .icon { width: 17px; height: 17px; }

.mock--web { padding-inline: 4%; }
.mock--web .browser:first-child { margin: 0 12% 0 4%; }
.mock__small { position: absolute !important; right: 2%; bottom: 0; width: 46%; margin: 0; box-shadow: var(--shadow-lg); }

.search-bar { display: flex; align-items: center; gap: .6rem; padding: .7rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: .92rem; color: var(--ink); margin-bottom: 1.1rem; }
.search-bar .icon { width: 18px; height: 18px; color: var(--muted); }
.search-ad { padding: .9rem 1rem; border-radius: 12px; background: var(--mint); margin-bottom: 1rem; }
.search-ad p { margin: 0; line-height: 1.35; }
.search-ad__label { font-size: .78rem; color: var(--muted); }
.search-ad__label b { color: var(--ink); margin-right: .35rem; }
.search-ad__title { font-size: 1.02rem; font-weight: 700; color: #1a4fb4; margin: .25rem 0 !important; }
.search-ad__desc { font-size: .85rem; color: var(--muted); }
.search-line { height: 9px; border-radius: 9px; background: #ECEEED; margin-bottom: .55rem; }
.search-line--short { width: 60%; margin-bottom: 1rem; }

.social-post { padding: 1rem; }
.social-post__head { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; font-size: .88rem; line-height: 1.2; }
.social-post__head b { display: block; color: var(--ink); }
.social-post__head span { font-size: .78rem; color: var(--muted); }
.social-post__avatar { width: 36px; height: 36px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--accent), var(--primary)); display: inline-block; }
.social-post__copy { font-size: .88rem; line-height: 1.45; color: var(--text); margin-bottom: .7rem; }
.social-post__img { border-radius: 10px; overflow: hidden; aspect-ratio: 16 / 10; }
.social-post__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.social-post__foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .7rem .2rem 0; font-size: .78rem; color: var(--muted); line-height: 1.35; }
.social-post__foot b { color: var(--ink); font-size: .88rem; }
.social-post__btn { background: #EEF0EF; color: var(--ink); font-weight: 700; padding: .45rem .8rem; border-radius: 8px; white-space: nowrap; }

.inbox { padding: 0; overflow: hidden; }
.inbox__head { display: flex; align-items: center; gap: .5rem; padding: .9rem 1.1rem; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); }
.inbox__head .icon { width: 18px; height: 18px; color: var(--accent-btn); }
.inbox__row { display: flex; align-items: center; gap: .75rem; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); font-size: .86rem; line-height: 1.35; }
.inbox__row:last-child { border-bottom: 0; }
.inbox__row div { flex: 1; min-width: 0; }
.inbox__row b { display: block; color: var(--ink); }
.inbox__row span:not(.inbox__dot) { display: block; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox__row em { font-style: normal; font-size: .78rem; color: var(--muted); }
.inbox__dot { width: 8px; height: 8px; border-radius: 50%; background: transparent; flex: none; }
.inbox__row--new { background: var(--mint); }
.inbox__row--new .inbox__dot { background: var(--accent); }
.inbox__row--muted { opacity: .6; }

.article__img { aspect-ratio: 16 / 8; border-radius: 10px; margin-bottom: 1rem; background: radial-gradient(circle at 30% 120%, rgba(72,161,81,.55), transparent 55%), linear-gradient(135deg, var(--primary-2), var(--primary)); }
.article__tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-btn); background: var(--mint); padding: .25rem .6rem; border-radius: 99px; }
.article__title { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); line-height: 1.3; margin: .6rem 0 .9rem; }
.article__meta { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted); }
.article__meta .social-post__avatar { width: 26px; height: 26px; }

@media (max-width: 479px) {
  .mock-card { margin-inline: 4%; }
  .mock-chip { font-size: .8rem; }
}
@media (prefers-reduced-motion: reduce) { .mock-chip { animation: none; } }
/* Keep floating chips below the mock cards so they never cover content */
.mock--search, .mock--social, .mock--email, .mock--blog { padding-bottom: 2.4rem; }
.mock--search .mock-chip, .mock--social .mock-chip, .mock--email .mock-chip, .mock--blog .mock-chip { bottom: 0; }

/* Parent menu item highlighted on child pages */
@media (min-width: 1100px) { .nav__link.is-active { color: var(--accent-btn); } }
.dropdown a[aria-current="page"] { background: var(--mint); color: var(--primary); font-weight: 700; }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-btn); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }
.page-hero--center .breadcrumb { justify-content: center; }

/* Meet Lorraine (small homepage intro) */
.meet { padding-block: clamp(3rem, 2rem + 3vw, 5rem); }
.meet + .section:not(.section--paper):not(.section--dark) { padding-top: 0; }
.meet__text .eyebrow { margin-bottom: .6rem; }
.meet__card {
  display: grid; gap: 1.25rem; justify-items: center; text-align: center; max-width: 900px; margin-inline: auto;
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); border-radius: var(--radius-lg);
  background: var(--mint); border: 1px solid rgba(72,161,81,.18);
}
.meet__img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: var(--shadow); }
.meet__text h2 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); margin-bottom: .4em; }
.meet__text p { margin-bottom: .75rem; }
@media (min-width: 700px) {
  .meet__card { grid-template-columns: auto 1fr; justify-items: start; text-align: left; gap: 2rem; align-items: center; }
  .meet__img { width: 150px; height: 150px; }
}

/* Web Design page: what we need from you + payment terms */
.need-note { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.5rem; padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.pay-card { background: var(--primary); color: rgba(255,255,255,.86); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow-lg); }
.pay-card h3 { color: #fff; font-size: 1.6rem; }
.pay-card strong { color: #fff; }
.pay-card .cta-note { color: rgba(255,255,255,.75); }
.pay-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 1.25rem 0 1.5rem; }
.pay-split div { border-radius: 12px; padding: 1rem; background: rgba(255,255,255,.08); font-size: .9rem; font-weight: 600; }
.pay-split div:first-child { background: var(--accent); color: var(--ink); }
.pay-split span { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1.1; }
.pay-card .btn { margin-top: .5rem; }

/* Web Design page: extras */
.extras { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .extras { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
.extra-card { padding: clamp(1.5rem, 1.2rem + 1vw, 2.25rem); border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.extra-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.extra-card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--accent); color: var(--ink); margin-bottom: 1.25rem; }
.extra-card__icon .icon { width: 26px; height: 26px; }
.extra-card h3 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); }
.extra-card p { color: var(--muted); }

/* =========================================================
   SERVICE PAGE HERO MOCK VISUALS
   ========================================================= */
.hero__visual--mock { padding-bottom: 0; }
.ads-visual { position: relative; max-width: 560px; margin-inline: auto; padding: 1.5rem 0 5.5rem; }
.ads-visual::before {
  content: ""; position: absolute; inset: 0 4% 2rem; border-radius: 36px;
  background: radial-gradient(circle at 80% 90%, rgba(72,161,81,.3), transparent 55%), linear-gradient(150deg, var(--mint), rgba(48,92,94,.14));
}
.ads-visual > * { position: relative; }
.ads-search { margin: 0 6% 0 10%; }
.search-ad__links { display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin-top: .5rem !important; font-size: .8rem; color: #1a4fb4; font-weight: 600; }
.ads-report { position: absolute !important; left: 0; bottom: 0; width: 52%; margin: 0; padding: 1rem 1.1rem; z-index: 2; box-shadow: var(--shadow-lg); }
.ads-report__title { display: flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--ink); font-size: .9rem; margin: 0 0 .75rem; }
.ads-report__title .icon { width: 18px; height: 18px; color: var(--accent-btn); }
.ads-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.ads-bars span { flex: 1; height: var(--h); border-radius: 5px 5px 2px 2px; background: linear-gradient(to top, var(--accent), #7CC584); transform-origin: bottom; animation: bar-grow 1.2s var(--ease) both; }
.ads-bars span:nth-child(2) { animation-delay: .08s; } .ads-bars span:nth-child(3) { animation-delay: .16s; }
.ads-bars span:nth-child(4) { animation-delay: .24s; } .ads-bars span:nth-child(5) { animation-delay: .32s; }
.ads-bars span:nth-child(6) { animation-delay: .4s; } .ads-bars span:nth-child(7) { animation-delay: .48s; }
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.ads-report__foot { font-size: .78rem; color: var(--muted); margin: .6rem 0 0; }
.ads-visual > .ads-chip { position: absolute; right: 0; bottom: 2.5rem; }
.ads-chip > .icon { width: 18px; height: 18px; color: #fff; background: var(--accent-btn); border-radius: 50%; padding: 3px; stroke-width: 3; }
@media (max-width: 479px) {
  .ads-search { margin: 0 2%; }
  .ads-report { width: 64%; }
  .ads-visual > .ads-chip { bottom: auto; top: .25rem; right: -4px; }
}
@media (prefers-reduced-motion: reduce) { .ads-bars span { animation: none; } }

/* Facebook Ads hero visual: phone with sponsored post */
.fb-visual { position: relative; max-width: 520px; margin-inline: auto; padding: 1.5rem 0 2rem; }
.fb-visual::before {
  content: ""; position: absolute; inset: 3rem 0 0; border-radius: 36px;
  background: radial-gradient(circle at 20% 20%, rgba(72,161,81,.28), transparent 55%), linear-gradient(150deg, var(--mint), rgba(48,92,94,.14));
}
.fb-visual > * { position: relative; }
.phone {
  width: min(300px, 78%); margin-inline: auto; background: #fff; border-radius: 34px; padding: 2.2rem .8rem 1rem;
  border: 8px solid var(--ink); box-shadow: var(--shadow-lg); z-index: 1;
}
.phone__notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 34%; height: 14px; border-radius: 10px; background: var(--ink); }
.phone .social-post { padding: 0; }
.phone .social-post__copy { font-size: .8rem; }
.phone .social-post__foot { font-size: .72rem; }
.phone .social-post__foot b { font-size: .8rem; }
.social-post__actions { display: flex; gap: 1.25rem; border-top: 1px solid var(--line); margin-top: .75rem; padding-top: .6rem; font-size: .78rem; font-weight: 600; color: var(--muted); }
.social-post__actions span { display: inline-flex; align-items: center; gap: .35rem; }
.social-post__actions .icon { width: 16px; height: 16px; }
.fb-visual > .fb-notify {
  position: absolute; left: 0; top: 34%; z-index: 2; display: flex; align-items: center; gap: .7rem;
  background: #fff; border-radius: 14px; padding: .7rem 1rem .7rem .7rem; box-shadow: var(--shadow-lg);
  font-size: .82rem; line-height: 1.3; animation: float 6s ease-in-out infinite;
}
.fb-notify b { display: block; color: var(--ink); }
.fb-notify span:not(.icon-badge) { color: var(--muted); }
.fb-notify .icon-badge { width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color: var(--ink); }
.fb-notify .icon-badge .icon { width: 17px; height: 17px; }
.fb-visual > .fb-chip { position: absolute; right: 0; bottom: 12%; animation-delay: -3s; }
.fb-chip > .icon { width: 18px; height: 18px; color: #fff; background: var(--accent-btn); border-radius: 50%; padding: 3px; stroke-width: 3; }
@media (max-width: 479px) {
  .fb-visual > .fb-notify { left: -4px; top: 46%; }
  .fb-visual > .fb-chip { right: -4px; bottom: 8%; }
}
@media (prefers-reduced-motion: reduce) { .fb-visual > .fb-notify { animation: none; } }

/* Email Marketing hero visual */
.em-visual { position: relative; max-width: 540px; margin-inline: auto; padding: 1.5rem 0 7rem; }
.em-visual::before {
  content: ""; position: absolute; inset: 0 4% 3rem; border-radius: 36px;
  background: radial-gradient(circle at 85% 85%, rgba(72,161,81,.3), transparent 55%), linear-gradient(150deg, var(--mint), rgba(48,92,94,.14));
}
.em-visual > * { position: relative; }
.em-inbox { margin: 0 4% 0 12%; }
.em-visual > .em-flow { position: absolute; left: 0; bottom: 0; width: 56%; margin: 0; padding: 1rem 1.1rem; box-shadow: var(--shadow-lg); z-index: 2; }
.em-flow__title { display: flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--ink); font-size: .9rem; margin: 0 0 .75rem; }
.em-flow__title .icon { width: 18px; height: 18px; color: var(--accent-btn); }
.em-flow ol { list-style: none; display: grid; gap: .55rem; position: relative; }
.em-flow ol::before { content: ""; position: absolute; left: 14px; top: 14px; bottom: 14px; width: 2px; background: repeating-linear-gradient(to bottom, var(--accent) 0 4px, transparent 4px 8px); }
.em-flow li { display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 600; color: var(--ink); position: relative; }
.em-flow li span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--accent-btn); flex: none; }
.em-flow li:first-child span { background: var(--accent); color: var(--ink); }
.em-flow li .icon { width: 15px; height: 15px; }
.em-visual > .em-chip { position: absolute; right: 0; bottom: 3.5rem; }
.em-chip > .icon { width: 18px; height: 18px; color: #fff; background: var(--accent-btn); border-radius: 50%; padding: 3px; stroke-width: 3; }
@media (max-width: 479px) {
  .em-inbox { margin: 0 2%; }
  .em-visual > .em-flow { width: 70%; }
  .em-visual > .em-chip { bottom: auto; top: .25rem; right: -4px; }
}

/* Blog & Content hero visual */
.bl-visual { position: relative; max-width: 540px; margin-inline: auto; padding: 1.5rem 0 6.5rem; }
.bl-visual::before {
  content: ""; position: absolute; inset: 0 4% 3rem; border-radius: 36px;
  background: radial-gradient(circle at 15% 85%, rgba(72,161,81,.3), transparent 55%), linear-gradient(150deg, var(--mint), rgba(48,92,94,.14));
}
.bl-visual > * { position: relative; }
.bl-article { margin: 0 14% 0 8%; }
.bl-visual > .bl-result { position: absolute; right: 0; bottom: 0; width: 62%; margin: 0; padding: 1rem 1.1rem; box-shadow: var(--shadow-lg); z-index: 2; }
.bl-result p { margin: 0; line-height: 1.35; }
.bl-result__url { font-size: .75rem; color: var(--muted); }
.bl-result__title { font-size: .98rem; font-weight: 700; color: #1a4fb4; margin: .25rem 0 !important; }
.bl-result__desc { font-size: .8rem; color: var(--muted); }
.bl-visual > .bl-chip { position: absolute; left: 0; top: 42%; right: auto; bottom: auto; }
.bl-chip > .icon { width: 18px; height: 18px; color: #fff; background: var(--accent-btn); border-radius: 50%; padding: 3px; stroke-width: 3; }
@media (max-width: 479px) {
  .bl-article { margin: 0 4%; }
  .bl-visual > .bl-result { width: 82%; }
  .bl-visual > .bl-chip { left: -4px; top: 30%; }
}

/* =========================================================
   PRICING OVERVIEW
   ========================================================= */
.price-trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.5rem; margin-top: 1.75rem; }
.price-trust li { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--ink); font-size: .98rem; }
.price-trust .icon { width: 20px; height: 20px; color: var(--accent-btn); }
.page-hero--center p.page-hero__sub + p { max-width: 680px; margin-inline: auto; }

.price-grid { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .price-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } .price-card--featured { grid-column: 1 / -1; } }
.price-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card__eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--primary-2); margin-bottom: .75rem; }
.price-card h2 { font-size: clamp(1.35rem, 1.2rem + .6vw, 1.7rem); margin-bottom: .6rem; }
.price-card__desc { color: var(--muted); }
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .15rem .5rem; margin: 0 0 1rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.price__from { width: 100%; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.price__amount { font-family: var(--font-head); font-size: clamp(2.2rem, 1.9rem + 1.2vw, 2.8rem); font-weight: 700; color: var(--primary); line-height: 1.1; }
.price__unit { font-weight: 600; color: var(--muted); }
.price-card__notes { list-style: none; display: grid; gap: .4rem; margin-bottom: 1.5rem; font-size: .95rem; color: var(--text); }
.price-card__notes li { display: flex; gap: .5rem; align-items: flex-start; }
.price-card__notes .icon { width: 18px; height: 18px; color: var(--accent-btn); margin-top: .2rem; }

/* Featured (Web Design) */
.price-card--featured { background: var(--primary); border-color: var(--primary); color: rgba(255,255,255,.85); position: relative; overflow: hidden; }
.price-card--featured::after { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -160px; border-radius: 50%; border: 60px solid rgba(72,161,81,.14); pointer-events: none; }
.price-card--featured > * { position: relative; z-index: 1; }
.price-card--featured h2, .price-card--featured strong { color: #fff; }
.price-card--featured .price-card__eyebrow { color: var(--accent-on-dark); }
.price-card--featured .price-card__desc { color: rgba(255,255,255,.82); }
.price-card--featured .price { border-color: rgba(255,255,255,.15); }
.price-card--featured .price__amount { color: #fff; }
.price-card--featured .price__from, .price-card--featured .price__unit { color: rgba(255,255,255,.7); }
.price-card--featured .price-card__notes { color: rgba(255,255,255,.88); }
.price-card--featured .price-card__notes .icon { color: var(--accent-on-dark); }
@media (min-width: 1024px) {
  .price-card--featured { flex-direction: row; align-items: flex-end; gap: 4rem; }
  .price-card--featured .price-card__body { flex: 1.3; }
  .price-card--featured .price-card__foot { flex: 1; }
}

.price-help {
  margin-top: 2rem; display: grid; gap: 1.25rem; align-items: center; padding: 1.5rem;
  border-radius: var(--radius-lg); background: var(--mint); border: 1px solid rgba(72,161,81,.2);
}
.price-help > p { font-size: 1.05em; margin: 0; }
@media (min-width: 900px) { .price-help { grid-template-columns: 1fr auto; gap: 2.5rem; padding: 1.75rem 2rem; } .price-help .cta-note { max-width: 330px; } }
.price-card__notes { margin-bottom: 1rem; }
.price-card--featured .link-arrow { color: var(--accent-on-dark); }
.price-card--featured .link-arrow:hover { color: #fff; }

/* =========================================================
   PRICING SUB-PAGES
   ========================================================= */
/* Packages */
.pkg-grid { display: grid; gap: 1.25rem; align-items: stretch; }
@media (min-width: 960px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: center; } }
.pkg-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg-card__tag { align-self: flex-start; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 99px; background: var(--mint); color: var(--accent-btn); margin-bottom: 1rem; min-height: 1.9rem; }
.pkg-card__tag--empty { background: transparent; }
.pkg-card h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.pkg-card__price { margin-bottom: .75rem; color: var(--muted); font-weight: 600; }
.pkg-card__price span { font-family: var(--font-head); font-size: clamp(2.3rem, 2rem + 1vw, 2.9rem); font-weight: 700; color: var(--primary); line-height: 1.1; margin-right: .25rem; }
.pkg-card__tagline { color: var(--text); font-weight: 600; }
.pkg-card__time { display: flex; align-items: center; gap: .45rem; font-size: .95rem; color: var(--muted); padding: .6rem .85rem; background: var(--paper); border-radius: 10px; }
.pkg-card__time .icon { width: 18px; height: 18px; color: var(--accent-btn); }
.pkg-card__label { font-weight: 700; color: var(--ink); margin: .5rem 0 .6rem; }
.pkg-card__list { list-style: none; display: grid; gap: .55rem; margin-bottom: 1.75rem; }
.pkg-card__list li { display: flex; gap: .6rem; align-items: flex-start; line-height: 1.45; }
.pkg-card__list .icon { width: 18px; height: 18px; color: var(--accent-btn); margin-top: .2rem; stroke-width: 2.5; }
.pkg-card__cta { margin-top: auto; }
.pkg-card__cta .cta-note { text-align: center; }
.pkg-card--popular { background: var(--primary); border-color: var(--primary); color: rgba(255,255,255,.88); box-shadow: var(--shadow-lg); }
@media (min-width: 960px) { .pkg-card--popular { padding-block: 2.75rem; } }
.pkg-card--popular h3, .pkg-card--popular strong, .pkg-card--popular .pkg-card__label, .pkg-card--popular .pkg-card__tagline { color: #fff; }
.pkg-card--popular .pkg-card__tag { background: var(--accent); color: var(--ink); }
.pkg-card--popular .pkg-card__price { color: rgba(255,255,255,.75); }
.pkg-card--popular .pkg-card__price span { color: #fff; }
.pkg-card--popular .pkg-card__time { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.pkg-card--popular .pkg-card__time .icon, .pkg-card--popular .pkg-card__list .icon { color: var(--accent-on-dark); }
.pkg-card--popular .cta-note { color: rgba(255,255,255,.75); }
.pkg-card--popular .btn:hover { --btn-bg: #fff; --btn-bd: #fff; color: var(--primary); }

/* Included groups */
.incl-grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .incl-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .incl-grid { grid-template-columns: repeat(4, 1fr); } }
.incl-group { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.incl-group__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.incl-group__head h3 { font-size: 1.15rem; margin: 0; }
.incl-group ul { list-style: none; display: grid; gap: .5rem; }
.incl-group li { display: flex; gap: .55rem; align-items: flex-start; font-size: .96em; line-height: 1.45; }
.incl-group li .icon { width: 17px; height: 17px; color: var(--accent-btn); margin-top: .2rem; stroke-width: 2.5; }

/* Data tables */
.data-table-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.data-table { width: 100%; border-collapse: collapse; font-size: .98em; }
.data-table th, .data-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table thead th { background: var(--primary); color: #fff; font-weight: 700; font-size: .92rem; }
.data-table tbody th { font-weight: 600; color: var(--ink); }
.data-table td { font-weight: 700; color: var(--primary); white-space: nowrap; text-align: right; }
.data-table thead th:last-child { text-align: right; }
.data-table tbody tr:last-child th, .data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:nth-child(even) { background: #FBFBFB; }

/* Feature panel (e.g. Membership Area) */
.feature-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1.2rem + 1vw, 2.25rem); box-shadow: var(--shadow); }
.feature-panel .icon-badge { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1rem; }
.feature-panel h3 { font-size: 1.5rem; }
.feature-panel .pkg-card__list { margin-bottom: 1.25rem; }
.feature-panel__price { padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-weight: 600; margin: 0; }
.feature-panel__price span { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--primary); margin-right: .25rem; }

/* Payment + timeline */
.pay-time { display: grid; gap: 1.5rem; }
.pay-time > * { min-width: 0; }
@media (min-width: 960px) { .pay-time { grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: stretch; } }
.pay-card__title { color: #fff; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
.pay-split--labels div { font-size: .88rem; line-height: 1.4; }
.timeline-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); background: #fff; box-shadow: var(--shadow-sm); }
.timeline-card__title { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
.tl-bars { list-style: none; display: grid; gap: 1.25rem; margin: 1.5rem 0; }
.tl-bars li { display: grid; grid-template-columns: 1fr auto; gap: .45rem 1rem; align-items: center; }
.tl-bars__name { font-weight: 700; color: var(--ink); }
.tl-bars__val { font-weight: 700; color: var(--accent-btn); }
.tl-bars__track { grid-column: 1 / -1; height: 12px; border-radius: 99px; background: var(--mint); overflow: hidden; }
.tl-bars__track span { display: block; height: 100%; width: var(--w); border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--primary-2)); transform-origin: left; transform: scaleX(0); transition: transform 1.2s var(--ease) .2s; }
.is-visible .tl-bars__track span, .no-js .tl-bars__track span { transform: scaleX(1); }
html:not(.js) .tl-bars__track span { transform: scaleX(1); }

/* Conditions */
.conditions { max-width: 900px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.conditions h2 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
.conditions ul { list-style: none; display: grid; gap: .75rem; }
@media (min-width: 800px) { .conditions ul { grid-template-columns: 1fr 1fr; gap: .85rem 2rem; } }
.conditions li { display: flex; gap: .6rem; align-items: flex-start; line-height: 1.5; }
.conditions li .icon { width: 18px; height: 18px; color: var(--accent-btn); margin-top: .2rem; stroke-width: 2.5; flex: none; }
@media (prefers-reduced-motion: reduce) { .tl-bars__track span { transform: scaleX(1); transition: none; } }
@media (max-width: 479px) { .price-trust { flex-direction: column; align-items: center; } }
.data-table thead th:last-child { white-space: nowrap; }

/* =========================================================
   TABS + FEE TABLES (Paid Advertising pricing)
   ========================================================= */
.tabs { max-width: 980px; margin-inline: auto; scroll-margin-top: calc(var(--header-h) + 24px); }
.tab-list {
  display: flex; gap: .35rem; padding: .35rem; margin: 0 auto 2rem; width: fit-content; max-width: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); overflow-x: auto; scrollbar-width: none;
}
.tab-list::-webkit-scrollbar { display: none; }
.tab {
  display: inline-flex; align-items: center; gap: .4rem; min-height: 46px; padding: .6rem 1.2rem; border: 0; border-radius: 999px;
  background: transparent; color: var(--ink); font-weight: 700; font-size: .98rem; cursor: pointer; white-space: nowrap;
  transition: background-color .25s, color .25s;
}
.tab:hover { background: var(--mint); color: var(--primary); }
.tab[aria-selected="true"] { background: var(--primary); color: #fff; }
.tab__badge { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: .15rem .45rem; border-radius: 99px; background: var(--accent); color: var(--ink); }
@media (max-width: 479px) { .tab { padding: .55rem .8rem; font-size: .9rem; } .tab__badge { display: none; } }
.tab-panel[hidden] { display: none; }
.tab-panel { animation: faq-in .4s var(--ease); }
.tab-panel:focus-visible { outline-offset: 6px; border-radius: var(--radius); }
.tab-panel__head { text-align: center; margin-bottom: 1.5rem; }
.tab-panel__head h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem); margin-bottom: .35rem; }
.tab-panel__head p { color: var(--muted); }
html:not(.js) .tab-list { display: none; }
html:not(.js) .tab-panel + .tab-panel { margin-top: 3rem; }

.fee-table td { text-align: right; font-weight: 600; color: var(--text); }
.fee-table thead th:not(:first-child) { text-align: right; }
.fee-table td.is-total { font-weight: 800; color: var(--primary); font-size: 1.05em; }
.fee-table tr.is-custom td { font-weight: 700; color: var(--accent-btn); }
@media (max-width: 699px) {
  .fee-table thead { display: none; }
  .fee-table, .fee-table tbody, .fee-table tr, .fee-table th, .fee-table td { display: block; width: 100%; }
  .fee-table tr { padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
  .fee-table tbody tr:last-child { border-bottom: 0; }
  .fee-table th, .fee-table td { border: 0; padding: .2rem 0; display: flex; justify-content: space-between; gap: 1rem; text-align: right; }
  .fee-table th { font-size: 1.05rem; margin-bottom: .25rem; }
  .fee-table th::before, .fee-table td::before { content: attr(data-label); font-weight: 600; color: var(--muted); text-align: left; font-size: .88rem; }
  .fee-table th::before { content: "Ad spend"; }
}

.setup-fee {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 1.5rem;
  margin-top: 1rem; padding: 1.2rem 1.4rem; border-radius: var(--radius-lg); background: var(--primary); color: rgba(255,255,255,.85);
}
.setup-fee p { margin: 0; }
.setup-fee__label { display: flex; align-items: center; gap: .55rem; font-weight: 700; color: #fff; font-size: 1.05rem; }
.setup-fee__label .icon { width: 20px; height: 20px; color: var(--accent-on-dark); }
.setup-fee__sub { font-size: .9rem; margin-top: .15rem !important; }
.setup-fee__price { font-weight: 600; }
.setup-fee__price span { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #fff; margin-right: .2rem; }
.save-note { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.2rem; margin: 0 0 1rem; border-radius: var(--radius); background: var(--mint); border: 1px solid rgba(72,161,81,.3); }
.save-note .icon { width: 22px; height: 22px; color: var(--accent-btn); flex: none; }
.ads-note { max-width: 980px; margin: 2rem auto 0; display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 1.4rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.ads-note p { margin: 0; }
.ads-note a { font-weight: 700; white-space: nowrap; }
.conditions li > span { flex: 1; }
@media (max-width: 479px) {
  .tab-list { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; border-radius: 18px; }
  .tab { white-space: normal; justify-content: center; text-align: center; border-radius: 14px; padding: .5rem .35rem; line-height: 1.2; }
}
@media (max-width: 699px) { .fee-table tr.is-custom td::before { content: "Price"; } }

/* Setup card (Email + Blog pricing) */
.setup-card {
  display: grid; gap: 2rem; max-width: 1000px; margin-inline: auto; padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  border-radius: var(--radius-lg); background: var(--primary); color: rgba(255,255,255,.86); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.setup-card::after { content: ""; position: absolute; width: 380px; height: 380px; right: -150px; bottom: -150px; border-radius: 50%; border: 56px solid rgba(72,161,81,.14); pointer-events: none; }
.setup-card > * { position: relative; z-index: 1; min-width: 0; }
@media (min-width: 860px) { .setup-card { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; } }
.setup-card h2, .setup-card strong, .setup-card .pkg-card__label { color: #fff; }
.setup-card h2 { font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.4rem); }
.setup-card .price-card__eyebrow { color: var(--accent-on-dark); }
.setup-card .pkg-card__price { color: rgba(255,255,255,.75); }
.setup-card .pkg-card__price span { color: #fff; }
.setup-card .pkg-card__list .icon { color: var(--accent-on-dark); }
.setup-card .pkg-card__list { margin-bottom: 0; }
.setup-card__note { font-size: .95em; padding: .9rem 1rem; border-radius: 12px; background: rgba(255,255,255,.08); }
.setup-card__list { padding: 1.5rem; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }

/* Mini package cards */
.mini-pkg-grid { display: grid; gap: 1.25rem; max-width: 1000px; margin-inline: auto; }
@media (min-width: 700px) { .mini-pkg-grid { grid-template-columns: repeat(3, 1fr); } }
.mini-pkg { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.mini-pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(72,161,81,.4); }
.mini-pkg__icon { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--accent-btn); }
.mini-pkg h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; letter-spacing: 0; }
.mini-pkg__price { margin: 0; color: var(--muted); font-weight: 600; }
.mini-pkg__price span { display: block; font-family: var(--font-head); font-size: clamp(2rem, 1.8rem + 1vw, 2.6rem); font-weight: 700; color: var(--primary); line-height: 1.15; }
.includes-strip { max-width: 1000px; margin: 1.5rem auto 0; padding: 1.5rem 1.75rem; border-radius: var(--radius-lg); background: var(--mint); border: 1px solid rgba(72,161,81,.2); }
.includes-strip__title { font-weight: 700; color: var(--ink); margin-bottom: .75rem; }
.includes-strip__list { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.75rem; }
.includes-strip__list li { display: flex; align-items: center; gap: .45rem; font-weight: 600; }
.includes-strip__list .icon { width: 18px; height: 18px; color: var(--accent-btn); stroke-width: 2.5; }

/* Compact conditions + stage table */
.conditions--compact { max-width: none; margin: 0; }
.conditions--compact ul { grid-template-columns: 1fr !important; }
.pay-time h2 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
.data-table td { white-space: normal; }

/* Blog pricing: two package cards */
.duo-grid { display: grid; gap: 1.5rem; max-width: 1000px; margin-inline: auto; }
@media (min-width: 860px) { .duo-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.pkg-card__perfect { margin: auto 0 0; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .96em; }
.pkg-card--popular .pkg-card__perfect { border-color: rgba(255,255,255,.15); }
.deliv-list { list-style: none; display: grid; margin-bottom: 1.5rem; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); }
.deliv-list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .7rem 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.deliv-list li:last-child { border-bottom: 0; }
.deliv-list li:nth-child(odd) { background: rgba(255,255,255,.05); }
.deliv-list b { font-family: var(--font-head); font-size: 1.3rem; color: #fff; min-width: 1.5rem; text-align: right; }
.deliv-list b .icon { width: 20px; height: 20px; color: var(--accent-on-dark); stroke-width: 3; margin-left: auto; }

/* FAQs page */
.js [data-tabs]:not(.tabs-ready) .tab-panel + .tab-panel { display: none; }
.tabs--faq { max-width: 900px; }
@media (min-width: 480px) and (max-width: 799px) {
  .tabs--faq .tab-list { flex-wrap: wrap; justify-content: center; width: 100%; border-radius: 22px; }
}
.faq-links { display: flex; justify-content: center; gap: .6rem; margin-top: .5rem; font-weight: 700; font-size: .95rem; }
.faq-group-title { font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--primary-2); margin: 2rem 0 .85rem; display: flex; align-items: center; gap: .6rem; }
.faq-group-title::before { content: ""; width: 24px; height: 2px; background: var(--accent); }
.tab-panel .faq-group-title:first-of-type { margin-top: .5rem; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero { background: linear-gradient(180deg, #fff 0%, var(--paper) 100%); }
.contact-grid { display: grid; gap: 2.5rem; position: relative; }
.contact-grid > * { min-width: 0; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; } .contact-grid .form { position: sticky; top: calc(var(--header-h) + 24px); } }
.contact-lead { font-size: 1.1em; }
.contact-results { list-style: none; display: grid; gap: .6rem; margin: 1.5rem 0 2rem; }
.contact-results li { display: flex; gap: .6rem; align-items: flex-start; }
.contact-results .icon { width: 22px; height: 22px; color: var(--accent-btn); flex: none; margin-top: .1rem; }
.contact-cards { list-style: none; display: grid; gap: .75rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.15rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--text);
  transition: border-color .25s, transform .3s var(--ease), box-shadow .3s;
}
a.contact-card:hover { border-color: rgba(72,161,81,.5); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--text); }
.contact-card .icon-badge { width: 48px; height: 48px; border-radius: 14px; }
.contact-card > span:last-child { display: grid; min-width: 0; }
.contact-card small { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-card b { color: var(--ink); font-size: 1.05rem; overflow-wrap: anywhere; }
.contact-card em { font-style: normal; font-size: .92rem; color: var(--muted); }
.contact-person { display: flex; gap: 1rem; align-items: center; margin-top: 1.5rem; padding: 1.1rem 1.25rem; border-radius: var(--radius); background: var(--mint); }
.contact-person img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; flex: none; }
.contact-person p { margin: 0; font-size: .96em; }
.read-first { display: grid; gap: 1.5rem; align-items: center; max-width: 1000px; margin-inline: auto; padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.read-first h2 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.8rem); margin-bottom: .35rem; }
.read-first p { color: var(--muted); margin: 0; }
.read-first__links { list-style: none; display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; }
@media (min-width: 860px) { .read-first { grid-template-columns: 1fr auto; } }
@media (max-width: 479px) {
  .contact-card { gap: .75rem; padding: .9rem; }
  .contact-card .icon-badge { width: 40px; height: 40px; border-radius: 12px; }
  .contact-card b { font-size: .97rem; }
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thanks-hero { background: radial-gradient(60% 60% at 50% 0%, var(--mint), transparent 70%), #fff; }
.thanks-card { max-width: 720px; margin-inline: auto; text-align: center; }
.thanks-tick { width: 88px; height: 88px; margin: 0 auto 1.5rem; }
.thanks-tick svg { width: 100%; height: 100%; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.thanks-tick circle { stroke: var(--accent); fill: var(--mint); stroke-dasharray: 160; stroke-dashoffset: 160; animation: draw .8s var(--ease) forwards; }
.thanks-tick path { stroke: var(--accent-btn); stroke-width: 4; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .5s var(--ease) .6s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .thanks-tick circle, .thanks-tick path { stroke-dashoffset: 0; animation: none; } }
.thanks-lead { font-size: 1.15em; }
.thanks-cta { margin: 2rem 0 1.25rem; }
.thanks-cta .btn svg { width: 18px; height: 18px; }
.thanks-home { justify-content: center; }

.read-grid { display: grid; gap: 1.25rem; max-width: 1000px; margin-inline: auto; }
@media (min-width: 760px) { .read-grid { grid-template-columns: 1fr 1fr; } }
.read-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.5rem; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-decoration: none; color: var(--text);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.read-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(72,161,81,.45); color: var(--text); }
.read-card .icon-badge { width: 52px; height: 52px; border-radius: 14px; }
.read-card__body { flex: 1; display: grid; gap: .2rem; }
.read-card__body b { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink); font-weight: 600; }
.read-card__body span { color: var(--muted); font-size: .96em; }
.read-card__arrow { color: var(--accent-btn); transition: transform .25s var(--ease); }
.read-card:hover .read-card__arrow { transform: translateX(4px); }
.svc-links { max-width: 1000px; margin: 2.5rem auto 0; }
.svc-links h3 { font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--primary-2); margin-bottom: 1rem; text-align: center; }
.svc-links ul { list-style: none; display: grid; gap: .75rem; }
@media (min-width: 760px) { .svc-links ul { grid-template-columns: 1fr 1fr; } }
.svc-link {
  display: grid; grid-template-columns: 1fr auto; gap: .15rem 1rem; align-items: center; padding: 1rem 1.25rem;
  border-radius: var(--radius); background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--text);
  transition: border-color .25s, transform .3s var(--ease);
}
.svc-link:hover { border-color: rgba(72,161,81,.45); transform: translateY(-2px); color: var(--text); }
.svc-link b { color: var(--ink); }
.svc-link span { grid-column: 1; color: var(--muted); font-size: .93em; }
.svc-link .icon { grid-column: 2; grid-row: 1 / span 2; width: 18px; height: 18px; color: var(--accent-btn); }
@media (min-width: 760px) { .svc-links li:last-child:nth-child(odd) { grid-column: 1 / -1; } }
.read-card__body b { line-height: 1.3; }
.thanks-card a[href^="tel"] { white-space: nowrap; }

/* =========================================================
   LEGAL PAGES (Privacy Policy, Terms of Use)
   ========================================================= */
.legal-updated { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 99px; background: var(--mint); font-size: .95rem; color: var(--ink) !important; }
.legal-updated .icon { width: 18px; height: 18px; color: var(--accent-btn); }
.legal-layout { display: grid; gap: 2rem; }
.legal-layout > * { min-width: 0; }
@media (min-width: 1024px) { .legal-layout { grid-template-columns: 280px 1fr; gap: 3.5rem; align-items: start; } .legal-toc { position: sticky; top: calc(var(--header-h) + 24px); } }
.legal-toc details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.25rem; }
.legal-toc summary { cursor: pointer; font-weight: 700; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.legal-toc summary::-webkit-details-marker { display: none; }
.legal-toc summary::after { content: "+"; font-size: 1.3rem; color: var(--accent-btn); }
.legal-toc details[open] summary::after { content: "\2212"; }
.legal-toc ol { list-style: none; display: grid; gap: .15rem; margin-top: .75rem; }
.legal-toc a { display: block; padding: .35rem .6rem; border-radius: 8px; font-size: .93rem; color: var(--text); text-decoration: none; line-height: 1.35; }
.legal-toc a:hover { background: var(--mint); color: var(--primary); }
.legal-body { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2.5vw, 3rem); box-shadow: var(--shadow-sm); max-width: 820px; }
.legal-body h2 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.8rem); margin: 2.5rem 0 .75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 24px); }
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body h3 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; letter-spacing: 0; margin: 1.5rem 0 .6rem; color: var(--primary); }
.legal-body p { margin-bottom: .9em; }
.legal-body a { overflow-wrap: anywhere; }
.legal-list { list-style: none; display: grid; gap: .55rem; margin: 0 0 1.1rem; }
.legal-list li { position: relative; padding-left: 1.4rem; }
.legal-list li::before { content: ""; position: absolute; left: .2rem; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.legal-updated { white-space: nowrap; }
@media (max-width: 479px) { .legal-updated { font-size: .82rem; padding: .45rem .8rem; } }
.page-hero--center p.legal-updated { font-size: .95rem; }
@media (max-width: 479px) { .page-hero--center p.legal-updated { font-size: .8rem; } }
.nf-code { font-family: var(--font-head); font-size: clamp(4rem, 3rem + 5vw, 7rem); font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: .5rem; }
.nf-links { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .25rem 1.75rem; margin-top: 1.5rem; }

/* Benefit card icons (Why Clients Choose Niranoma) */
.benefit-card__icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 1.35rem;
  background: linear-gradient(145deg, var(--mint), #DDEFE0); color: var(--accent-btn);
  box-shadow: inset 0 0 0 1px rgba(72,161,81,.18);
  transition: background .35s var(--ease), color .35s, transform .35s var(--ease);
}
.benefit-card__icon .icon { width: 30px; height: 30px; stroke-width: 1.8; }
@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover .benefit-card__icon { background: var(--primary); color: #fff; transform: rotate(-4deg) scale(1.05); }
}
