/* ============================================================
   PRESIDA — Premium reputation response service
   Palette: deep navy / warm ivory / muted brass
   ============================================================ */

:root {
  --navy-900: #0c1726;
  --navy-800: #11203a;
  --navy-700: #16294a;
  --navy-600: #1e3a63;
  --navy-100: #dce4f0;
  --ivory: #faf7f1;
  --ivory-2: #f3eee4;
  --white: #ffffff;
  --brass: #b6925a;
  --brass-dark: #9a7740;
  --brass-light: #d9c39c;
  --ink: #1c2433;
  --ink-soft: #4b576b;
  --ink-faint: #7b8699;
  --red-soft: #b04a4a;
  --green-soft: #3e7d5c;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(12, 23, 38, 0.06);
  --shadow-md: 0 10px 40px rgba(12, 23, 38, 0.10);
  --shadow-lg: 0 24px 70px rgba(12, 23, 38, 0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

::selection { background: rgba(182, 146, 90, 0.32); color: var(--navy-900); }

@supports (scrollbar-width: thin) {
  html { scrollbar-width: thin; scrollbar-color: rgba(182, 146, 90, 0.55) var(--ivory-2); }
}
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ivory-2); }
::-webkit-scrollbar-thumb { background: rgba(182, 146, 90, 0.55); border-radius: 6px; border: 2px solid var(--ivory-2); }
::-webkit-scrollbar-thumb:hover { background: var(--brass-dark); }

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.14;
  color: var(--navy-900);
  letter-spacing: -0.018em;
  text-wrap: balance;
  font-optical-sizing: auto;
  font-feature-settings: "ss01" on;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.32rem; line-height: 1.3; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--brass);
}

.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 640px; }

.section { padding: 104px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0) scale(0.985); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.btn-primary {
  background: var(--navy-800);
  color: var(--ivory);
  box-shadow: 0 8px 24px rgba(12, 23, 38, 0.22);
}
.btn-primary:hover {
  background: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(12, 23, 38, 0.28);
}

.btn-brass {
  background: var(--brass);
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(182, 146, 90, 0.35);
}
.btn-brass:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(12, 23, 38, 0.22);
}
.btn-ghost:hover { border-color: var(--navy-800); background: rgba(12, 23, 38, 0.04); }

.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 247, 241, 0.34);
}
.btn-ghost-light:hover { border-color: var(--ivory); background: rgba(250, 247, 241, 0.08); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(12, 23, 38, 0.08);
  padding: 13px 0;
}
.site-header.scrolled .logo, .site-header.scrolled .nav-links a { color: var(--navy-900); }
.site-header.scrolled .logo-mark { color: var(--brass-dark); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ivory);
  transition: color 0.3s ease;
}
.logo-mark { color: var(--brass); display: flex; transition: color 0.3s ease, transform 0.4s var(--ease); }
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.06); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 530;
  color: rgba(250, 247, 241, 0.86);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: var(--brass);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brass-light); }
.site-header.scrolled .nav-links a.active { color: var(--brass-dark); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  position: relative;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ivory);
  margin: 5px auto;
  transition: all 0.3s ease;
}
.site-header.scrolled .nav-toggle span, .nav-open .nav-toggle span { background: var(--navy-900); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
  padding: 150px 0 110px;
}
.hero-bg {
  position: absolute; inset: -4%;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  animation: heroDrift 26s var(--ease) both;
}
@keyframes heroDrift {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 18% 42%, rgba(12, 23, 38, 0.32), transparent 70%),
    linear-gradient(100deg, rgba(12, 23, 38, 0.94) 28%, rgba(12, 23, 38, 0.52) 68%, rgba(17, 32, 58, 0.8) 100%);
}
.hero .grain {
  position: absolute; inset: 0;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 720px; }
.hero-content > * {
  opacity: 0;
  transform: translateY(26px);
  animation: heroRise 1s var(--ease-out) forwards;
}
.hero-content > .hero-badge { animation-delay: 0.15s; }
.hero-content > h1 { animation-delay: 0.3s; }
.hero-content > .lead { animation-delay: 0.48s; }
.hero-content > .hero-actions { animation-delay: 0.64s; }
.hero-content > .hero-assurance { animation-delay: 0.82s; }
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 { color: var(--ivory); margin: 0 0 26px; }
.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}
.hero .lead { color: rgba(250, 247, 241, 0.82); font-size: 1.2rem; margin-bottom: 38px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(217, 195, 156, 0.36);
  border-radius: 100px;
  padding: 9px 18px;
  margin-bottom: 30px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 146, 90, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(182, 146, 90, 0); }
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: 0.9rem;
  color: rgba(250, 247, 241, 0.62);
}
.hero-assurance span { display: inline-flex; align-items: center; gap: 8px; }
.hero-assurance svg { color: var(--brass); flex-shrink: 0; }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problem-card {
  background: var(--white);
  border: 1px solid rgba(12, 23, 38, 0.07);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(182, 146, 90, 0.4); }
.problem-card .num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brass-dark);
  margin-bottom: 14px;
  display: block;
}
.problem-card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.problem-card p { font-size: 0.95rem; color: var(--ink-soft); }

.problem-note {
  margin-top: 48px;
  padding: 44px 52px 44px 92px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-lg);
  color: rgba(250, 247, 241, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.problem-note::before {
  content: "\201C";
  position: absolute;
  top: 8px; left: 28px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.85;
}
.problem-note::after {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 146, 90, 0.14), transparent 65%);
  pointer-events: none;
}
.problem-note strong { color: var(--brass-light); font-weight: 580; }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 1.1s var(--ease-out);
}
.split-img { overflow: hidden; }
.split-img:hover img { transform: scale(1.025); }
.split-img::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 23, 38, 0.08);
  pointer-events: none;
}
.img-frame { position: relative; }
.img-frame::before {
  content: "";
  position: absolute;
  top: 22px; left: -22px; right: 22px; bottom: -22px;
  border: 1.5px solid rgba(182, 146, 90, 0.45);
  border-radius: var(--radius-lg);
  pointer-events: none;
  transition: transform 0.6s var(--ease);
}
.img-frame:hover::before { transform: translate(5px, -5px); }
.img-frame.frame-right::before { left: 22px; right: -22px; }
.img-frame.frame-right:hover::before { transform: translate(-5px, -5px); }

.check-list { list-style: none; margin-top: 26px; display: grid; gap: 15px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); }
.check-list svg { flex-shrink: 0; margin-top: 4px; color: var(--brass-dark); }
.check-list strong { color: var(--ink); font-weight: 600; }

/* ---------- Who it's for ---------- */
.audience-strip {
  background: var(--navy-900);
  color: var(--ivory);
}
.audience-strip .eyebrow { color: var(--brass-light); }
.audience-strip h2 { color: var(--ivory); }
.audience-strip .lead { color: rgba(250, 247, 241, 0.74); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.audience-card {
  border: 1px solid rgba(250, 247, 241, 0.14);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.audience-card:hover {
  border-color: rgba(217, 195, 156, 0.5);
  background: rgba(250, 247, 241, 0.04);
  transform: translateY(-4px);
}
.audience-card .icon { color: var(--brass-light); margin-bottom: 16px; }
.audience-card h3 { color: var(--ivory); font-size: 1.05rem; margin-bottom: 8px; }
.audience-card p { font-size: 0.88rem; color: rgba(250, 247, 241, 0.62); }

.audience-foot {
  margin-top: 40px;
  font-size: 0.98rem;
  color: rgba(250, 247, 241, 0.72);
  max-width: 700px;
}

/* ---------- How it works ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  margin-top: 10px;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(12, 23, 38, 0.09);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  counter-increment: step;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brass-dark);
  box-shadow: var(--shadow-sm);
}
.step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: 8px; font-size: 1.18rem; }
.step p { color: var(--ink-soft); font-size: 0.98rem; max-width: 620px; }
.step .tag {
  display: inline-block;
  margin-left: 12px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-dark);
  background: rgba(182, 146, 90, 0.14);
  padding: 4px 12px;
  border-radius: 100px;
  vertical-align: middle;
}

/* ---------- Standard ---------- */
.standard {
  background: var(--ivory-2);
}
.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.standard-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--brass);
  box-shadow: var(--shadow-sm);
}
.standard-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.standard-card p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- Samples ---------- */
.samples { background: var(--navy-900); }
.samples .eyebrow { color: var(--brass-light); }
.samples h2 { color: var(--ivory); }
.samples .lead { color: rgba(250, 247, 241, 0.74); }

.sample-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 48px 0 36px;
}
.sample-tab {
  background: transparent;
  border: 1px solid rgba(250, 247, 241, 0.22);
  color: rgba(250, 247, 241, 0.78);
  border-radius: 100px;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 560;
  cursor: pointer;
  transition: all 0.22s ease;
}
.sample-tab:hover { border-color: rgba(217, 195, 156, 0.6); color: var(--ivory); }
.sample-tab.active {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--navy-900);
}

.sample-panel { display: none; animation: fadeUp 0.45s ease; }
.sample-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.sample-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card .review-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-700);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-weight: 640; font-size: 0.97rem; color: var(--ink); }
.stars { color: #e2a93b; font-size: 0.85rem; letter-spacing: 2px; }
.stars .off { color: #d8d3c8; }
.review-text { font-size: 0.97rem; color: var(--ink-soft); font-style: italic; }

.reply-block { margin-top: 22px; padding-top: 22px; border-top: 1px dashed rgba(12, 23, 38, 0.14); }
.reply-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 13px;
  border-radius: 100px;
}
.reply-label.weak { color: var(--red-soft); background: rgba(176, 74, 74, 0.1); }
.reply-label.presida { color: var(--brass-dark); background: rgba(182, 146, 90, 0.15); }
.reply-text { font-size: 0.95rem; color: var(--ink-soft); }
.reply-text p + p { margin-top: 10px; }

.sample-why {
  margin-top: 24px;
  background: rgba(250, 247, 241, 0.05);
  border: 1px solid rgba(217, 195, 156, 0.26);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
}
.sample-why h4 {
  font-family: var(--font-display);
  color: var(--brass-light);
  font-size: 1.06rem;
  margin-bottom: 12px;
  font-weight: 560;
}
.sample-why ul { list-style: none; display: grid; gap: 9px; }
.sample-why li {
  font-size: 0.93rem;
  color: rgba(250, 247, 241, 0.78);
  padding-left: 24px;
  position: relative;
}
.sample-why li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--brass);
}
.sample-followup {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(250, 247, 241, 0.62);
  border-left: 2px solid var(--brass);
  padding-left: 16px;
  font-style: italic;
}
.samples-disclaimer {
  margin-top: 36px;
  font-size: 0.84rem;
  color: rgba(250, 247, 241, 0.45);
  text-align: center;
}

/* ---------- Difference ---------- */
.diff-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 10px;
}
.diff-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.diff-card.tools {
  background: var(--white);
  border: 1px solid rgba(12, 23, 38, 0.09);
}
.diff-card.presida {
  background: var(--navy-800);
  color: var(--ivory);
  box-shadow: var(--shadow-lg);
}
.diff-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.diff-card.presida h3 { color: var(--ivory); }
.diff-card .sub { font-size: 0.92rem; margin-bottom: 24px; }
.diff-card.tools .sub { color: var(--ink-faint); }
.diff-card.presida .sub { color: var(--brass-light); }
.diff-card ul { list-style: none; display: grid; gap: 13px; }
.diff-card li { display: flex; gap: 12px; font-size: 0.96rem; align-items: flex-start; }
.diff-card.tools li { color: var(--ink-soft); }
.diff-card.presida li { color: rgba(250, 247, 241, 0.86); }
.diff-card li svg { flex-shrink: 0; margin-top: 4px; }
.diff-card.tools li svg { color: var(--ink-faint); }
.diff-card.presida li svg { color: var(--brass); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(12, 23, 38, 0.07);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(182, 146, 90, 0.12);
  color: var(--brass-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- Pricing ---------- */
.pricing { background: var(--ivory-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 42px;
  border: 1px solid rgba(12, 23, 38, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(160deg, var(--navy-800) 55%, var(--navy-700));
  color: rgba(250, 247, 241, 0.84);
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding-top: 72px;
}
.price-card.featured::before {
  content: "";
  position: absolute;
  top: -140px; right: -140px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 146, 90, 0.16), transparent 65%);
  pointer-events: none;
}
.price-card .plan-flag {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-900); margin-bottom: 6px; }
.price-card.featured .plan-name { color: var(--ivory); }
.plan-tagline { font-size: 0.92rem; color: var(--ink-faint); margin-bottom: 26px; }
.price-card.featured .plan-tagline { color: rgba(250, 247, 241, 0.6); }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 30px; }
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 560;
  color: var(--navy-900);
  line-height: 1;
}
.price-card.featured .plan-price .amount { color: var(--brass-light); }
.plan-price .per { font-size: 0.95rem; color: var(--ink-faint); }
.price-card.featured .plan-price .per { color: rgba(250, 247, 241, 0.55); }

.plan-features { list-style: none; display: grid; gap: 12px; margin-bottom: 36px; flex-grow: 1; }
.plan-features li { display: flex; gap: 11px; font-size: 0.93rem; align-items: flex-start; }
.plan-features svg { flex-shrink: 0; margin-top: 4px; color: var(--brass-dark); }
.price-card.featured .plan-features svg { color: var(--brass); }
.plan-best {
  font-size: 0.86rem;
  color: var(--ink-faint);
  border-top: 1px solid rgba(12, 23, 38, 0.09);
  padding-top: 20px;
  margin-bottom: 28px;
}
.price-card.featured .plan-best { color: rgba(250, 247, 241, 0.55); border-color: rgba(250, 247, 241, 0.14); }

.cleanup-pack {
  max-width: 920px;
  margin: 28px auto 0;
  background: var(--white);
  border: 1.5px dashed rgba(182, 146, 90, 0.5);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cleanup-pack h3 { margin-bottom: 8px; }
.cleanup-pack p { font-size: 0.94rem; color: var(--ink-soft); max-width: 540px; }
.cleanup-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--brass-dark);
  white-space: nowrap;
}
.cleanup-price small { display: block; font-family: var(--font-body); font-size: 0.78rem; color: var(--ink-faint); text-align: center; }

.pricing-note {
  text-align: center;
  margin-top: 42px;
  font-size: 0.94rem;
  color: var(--ink-faint);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
}
.trust-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(12, 23, 38, 0.07);
  border-radius: var(--radius);
  padding: 26px 28px;
  align-items: flex-start;
}
.trust-item svg { flex-shrink: 0; color: var(--brass-dark); margin-top: 3px; }
.trust-item h3 { font-size: 1.04rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.91rem; color: var(--ink-soft); }

.trust-boundary {
  margin-top: 36px;
  background: var(--ivory-2);
  border-radius: var(--radius-lg);
  padding: 36px 42px;
}
.trust-boundary h3 { margin-bottom: 14px; }
.trust-boundary p { font-size: 0.95rem; color: var(--ink-soft); max-width: 880px; }
.trust-boundary p + p { margin-top: 12px; }

/* ---------- About ---------- */
.about { background: var(--ivory-2); }
.about .split-img img { aspect-ratio: 4 / 4.6; }
.about-sign {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-sign .sig-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy-900); }
.about-sign .sig-role { font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(12, 23, 38, 0.08);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 620;
  font-size: 1.02rem;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--brass-dark);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item summary:hover { color: var(--brass-dark); }
.faq-item .faq-body { padding: 0 28px 26px; font-size: 0.96rem; color: var(--ink-soft); }
.faq-item[open] .faq-body { animation: faqOpen 0.45s var(--ease-out); }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-item .faq-body p + p { margin-top: 10px; }

/* ---------- Contact / Final CTA ---------- */
.contact { background: var(--navy-900); position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 146, 90, 0.13), transparent 65%);
}
.contact .container { position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact .eyebrow { color: var(--brass-light); }
.contact h2 { color: var(--ivory); }
.contact .lead { color: rgba(250, 247, 241, 0.74); margin-top: 18px; }

.contact-points { list-style: none; margin-top: 34px; display: grid; gap: 17px; }
.contact-points li { display: flex; gap: 13px; color: rgba(250, 247, 241, 0.8); font-size: 0.96rem; align-items: flex-start; }
.contact-points svg { flex-shrink: 0; color: var(--brass); margin-top: 4px; }

.contact-email {
  margin-top: 38px;
  font-size: 0.95rem;
  color: rgba(250, 247, 241, 0.6);
}
.contact-email a { color: var(--brass-light); font-weight: 600; border-bottom: 1px solid rgba(217, 195, 156, 0.4); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { margin-bottom: 6px; }
.form-card .form-sub { font-size: 0.9rem; color: var(--ink-faint); margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 620; color: var(--ink); }
.form-field label .opt { font-weight: 450; color: var(--ink-faint); }
.form-field input, .form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border: 1.5px solid rgba(12, 23, 38, 0.14);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(182, 146, 90, 0.16);
  background: var(--white);
}
.form-submit { margin-top: 24px; width: 100%; justify-content: center; }
.form-submit.is-loading,
.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}
.form-micro {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.55;
}
.form-success {
  display: none;
  margin-top: 18px;
  background: rgba(62, 125, 92, 0.1);
  border: 1px solid rgba(62, 125, 92, 0.3);
  color: var(--green-soft);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
}
.form-success.show { display: block; }
.form-success.is-error {
  background: rgba(144, 70, 54, 0.1);
  border-color: rgba(144, 70, 54, 0.22);
  color: #8f4436;
}
body.modal-open { overflow: hidden; }

.success-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1200;
}
.success-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 23, 38, 0.6);
  backdrop-filter: blur(4px);
}
.success-modal-card {
  position: relative;
  width: min(100%, 520px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.success-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 23, 38, 0.06);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}
.success-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
}
.success-modal-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-soft);
}
.success-modal-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
}
.success-modal-card p {
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.success-modal-action {
  min-width: 140px;
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1320;
  color: rgba(250, 247, 241, 0.6);
  padding: 70px 0 36px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.1);
}
.footer-brand .logo { font-size: 1.35rem; margin-bottom: 16px; }
.footer-brand p { max-width: 380px; font-size: 0.88rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.85);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--brass-light); }

.footer-disclaimer {
  padding: 32px 0 24px;
  font-size: 0.8rem;
  color: rgba(250, 247, 241, 0.4);
  line-height: 1.7;
  border-bottom: 1px solid rgba(250, 247, 241, 0.08);
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(250, 247, 241, 0.4);
}
.footer-bottom a:hover { color: var(--brass-light); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 160px 0 100px; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 2.4rem; margin-bottom: 10px; }
.legal-page .updated { color: var(--ink-faint); font-size: 0.9rem; margin-bottom: 44px; }
.legal-page h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 0.98rem; }
.legal-page p + p { margin-top: 12px; }
.legal-page ul { margin: 12px 0 12px 22px; display: grid; gap: 8px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-content > * { animation: none; opacity: 1; transform: none; }
  .hero-bg { animation: none; }
  .btn::after { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .problem-grid, .standard-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-img { order: -1; max-height: 440px; }
  .about .split-img img { aspect-ratio: auto; }
}

@media (max-width: 768px) {
  .section { padding: 76px 0; }
  body { font-size: 16px; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 101;
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links a { color: var(--navy-900) !important; font-size: 1.2rem; }
  .nav-toggle { display: block; }

  .hero { padding: 130px 0 80px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .problem-grid, .standard-grid, .services-grid, .audience-grid,
  .sample-cols, .diff-cols, .pricing-grid, .trust-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .form-card { padding: 32px 24px; }
  .success-modal-card { padding: 30px 22px 24px; }
  .success-modal-action { width: 100%; }
  .problem-note { padding: 64px 28px 34px; }
  .problem-note::before { top: 12px; left: 24px; font-size: 4rem; }
  .img-frame::before { display: none; }
  .step { grid-template-columns: 48px 1fr; gap: 18px; }
  .step-num { width: 44px; height: 44px; font-size: 1.05rem; }
  .cleanup-pack { padding: 30px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .diff-card { padding: 34px 28px; }
  .trust-boundary { padding: 28px 26px; }
}
