/* ============ Tokens ============ */
:root {
  --navy-900: #0a2d5a;
  --navy-800: #11305f;
  --navy-700: #1a3f7a;
  --navy-600: #2a528f;
  --navy-100: #dde6f4;
  --navy-50: #eef1f6;

  --lime-700: #3f8417;
  --lime-600: #54a51f;
  --lime-500: #6ABE3F;
  --lime-400: #82d055;
  --lime-100: #e3f3d6;

  --sand-50: #fbf8f3;
  --sand-100: #f4ede0;
  --sand-200: #ece1cc;

  --ink-900: #14181a;
  --ink-700: #2c3338;
  --ink-500: #5a6469;
  --ink-400: #7a848a;
  --ink-200: #d8dde0;
  --ink-100: #ecf0f1;

  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(10, 45, 90, 0.06), 0 1px 0 rgba(10, 45, 90, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 45, 90, 0.08), 0 2px 6px rgba(10, 45, 90, 0.05);
  --shadow-lg: 0 20px 50px rgba(10, 45, 90, 0.18), 0 6px 18px rgba(10, 45, 90, 0.08);

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 28px);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", "Inter", ui-serif, Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--sand-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

/* ============ Typography ============ */
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--navy-900);
}

.h1__accent {
  color: var(--lime-600);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.6rem;
  color: var(--navy-900);
}

.lede {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  color: var(--ink-700);
  max-width: 560px;
  margin: 0 0 1.6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime-600);
  background: rgba(106, 190, 63, 0.1);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.eyebrow--dark {
  color: var(--navy-700);
  background: var(--navy-100);
}

/* ============ Buttons ============ */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

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

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

.btn--primary {
  --btn-bg: var(--lime-500);
  --btn-fg: var(--navy-900);
  border-color: var(--lime-500);
  box-shadow: 0 6px 16px rgba(106, 190, 63, 0.28);
}
.btn--primary:hover {
  --btn-bg: var(--lime-600);
  border-color: var(--lime-600);
}

.btn--accent {
  --btn-bg: var(--lime-500);
  --btn-fg: var(--navy-900);
  border-color: var(--lime-500);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-900);
  border-color: rgba(10, 45, 90, 0.2);
}
.btn--ghost:hover {
  --btn-bg: rgba(10, 45, 90, 0.05);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  --btn-bg: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--lg {
  font-size: 1rem;
  padding: 0.95rem 1.4rem;
}

.btn--sm {
  font-size: 0.85rem;
  padding: 0.55rem 0.9rem;
}

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

/* ============ Announce bar ============ */
.announce {
  background: var(--navy-900);
  color: var(--sand-100);
  font-size: 0.85rem;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  text-align: center;
  flex-wrap: wrap;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .announce__cta { display: none; }
}
.announce__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-500);
  box-shadow: 0 0 0 4px rgba(106, 190, 63, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.announce__cta {
  font-weight: 700;
  color: var(--lime-400);
}
.announce__cta:hover { color: var(--lime-500); }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(10, 45, 90, 0.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.logo__mark {
  display: grid;
  place-items: center;
}
.logo__accent {
  color: var(--lime-500);
}
.logo--footer {
  color: var(--sand-50);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.logo--footer .logo__accent { color: var(--lime-400); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-700);
  transition: color 0.15s ease;
}
.nav a:hover {
  color: var(--navy-700);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
}
.phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.phone:hover { color: var(--lime-600); }

@media (max-width: 1040px) {
  .nav { display: none; }
}
@media (max-width: 560px) {
  .header__cta .phone { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(40px, 7vw, 88px) 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--sand-50) 0%, #f7efe1 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #e3f3d6 0%, transparent 70%);
  top: -120px;
  right: -120px;
}
.hero__blob--2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #cfdcef 0%, transparent 70%);
  bottom: -160px;
  left: -100px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.hero__copy {
  padding-top: clamp(4px, 1vw, 16px);
}

.hero__cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tagline {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  color: var(--lime-600);
  margin: -0.5rem 0 1.1rem;
  letter-spacing: -0.005em;
  position: relative;
}
.tagline::before {
  content: "“";
  color: var(--lime-400);
  margin-right: 0.1em;
  opacity: 0.7;
}
.tagline::after {
  content: "”";
  color: var(--lime-400);
  margin-left: 0.05em;
  opacity: 0.7;
}

.hero__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  box-shadow:
    0 3px 8px rgba(106, 190, 63, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}
.hero__feature-text {
  font-size: 1rem;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.35;
}
.hero__feature-text strong {
  color: var(--lime-700);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}

/* ============ Quote card ============ */
.quote-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 45, 90, 0.05);
}

.quote-card__badge {
  position: absolute;
  top: -26px;
  right: 22px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  border: 3px solid var(--white);
  box-shadow:
    0 6px 18px rgba(10, 45, 90, 0.22),
    0 2px 4px rgba(10, 45, 90, 0.1),
    inset 0 0 0 2px rgba(10, 45, 90, 0.85);
  transform: rotate(-8deg);
}
.quote-card__badge-top {
  font-size: 1.45rem;
  display: block;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.quote-card__badge-bot {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  margin-top: 5px;
  display: block;
  font-weight: 800;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .quote-card__badge {
    width: 82px;
    height: 82px;
    top: -18px;
    right: 14px;
    border-width: 2.5px;
    box-shadow:
      0 4px 12px rgba(10, 45, 90, 0.22),
      0 2px 3px rgba(10, 45, 90, 0.1),
      inset 0 0 0 1.5px rgba(10, 45, 90, 0.85);
  }
  .quote-card__badge-top { font-size: 1.1rem; }
  .quote-card__badge-bot { font-size: 0.46rem; margin-top: 3px; letter-spacing: 0.12em; }
}

.quote-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy-900);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.quote-card__sub {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin: 0 0 1.2rem;
}

/* ============ Form ============ */
.form {
  display: grid;
  gap: 0.85rem;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .form__row { grid-template-columns: 1fr; }
}

.field {
  display: grid;
  gap: 0.3rem;
}
.field__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
}
.field__opt {
  font-weight: 400;
  color: var(--ink-400);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink-900);
  background: var(--sand-50);
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  resize: vertical;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--ink-400);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(106, 190, 63, 0.12);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235a6469' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}

.check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-500);
  line-height: 1.5;
  margin-top: 0.1rem;
}
.check input {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  accent-color: var(--navy-700);
}

.form__fine {
  font-size: 0.78rem;
  color: var(--ink-400);
  text-align: center;
  margin: 0.3rem 0 0;
}

.form__success {
  text-align: center;
  padding: 1rem 0.4rem 0.5rem;
}
.form__success svg {
  margin: 0 auto 0.7rem;
}
.form__success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-900);
  margin: 0 0 0.4rem;
}
.form__success p {
  color: var(--ink-500);
  margin: 0;
}

/* ============ Trust bar ============ */
.trustbar {
  background: var(--navy-900);
  color: var(--sand-100);
  padding: 28px 0;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 720px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
}
.trustbar__item {
  display: grid;
  gap: 0.15rem;
}
.trustbar__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--lime-400);
  line-height: 1;
}
.trustbar__num span {
  font-size: 0.55em;
  margin-left: 0.2em;
  color: var(--sand-200);
  font-weight: 700;
}
.trustbar__lbl {
  font-size: 0.85rem;
  color: var(--sand-200);
  letter-spacing: 0.01em;
}

/* ============ Sections ============ */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section--alt {
  background: linear-gradient(180deg, var(--navy-50) 0%, var(--sand-50) 100%);
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.8rem;
}
.section__head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 680px;
}
.section__lede {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin: 0.5rem 0 0;
}

/* ============ Cards ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 45, 90, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--white);
}
.card__icon--green { background: var(--navy-700); }
.card__icon--orange { background: var(--lime-500); color: var(--navy-900); }
.card__icon--blue { background: #2d6e8c; }
.card__icon--leaf { background: #4d7c0f; }

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--navy-900);
}
.card__body {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.95rem;
}

/* ============ Compare ============ */
.compare {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(10, 45, 90, 0.05);
  max-width: 880px;
  margin: 0 auto;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--ink-100);
}
.compare__row:last-child { border-bottom: none; }
.compare__row--head {
  background: var(--sand-100);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.compare__feat {
  padding: 0.95rem 1.2rem;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.compare__col {
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-700);
}
.compare__col--us {
  background: rgba(106, 190, 63, 0.06);
  color: var(--navy-900);
  font-weight: 600;
}
.compare__col--them {
  color: var(--ink-500);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--good { background: var(--lime-500); }
.dot--meh { background: #d6a23a; }
.dot--bad { background: #b8442a; }

@media (max-width: 640px) {
  .compare__row {
    grid-template-columns: 1fr 1fr;
  }
  .compare__feat {
    grid-column: 1 / -1;
    background: var(--sand-100);
    padding-bottom: 0.5rem;
    padding-top: 0.75rem;
  }
  .compare__row--head { display: none; }
  .compare__col--us::before { content: "TickDudes —"; font-weight: 700; margin-right: 0.2rem; color: var(--navy-700); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.15rem; width: 100%; }
  .compare__col--them::before { content: "DIY —"; font-weight: 700; margin-right: 0.2rem; color: var(--ink-400); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.15rem; width: 100%; }
  .compare__col { flex-wrap: wrap; align-items: flex-start; padding-top: 0.5rem; padding-bottom: 0.95rem; }
}

/* ============ Steps ============ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  background: var(--white);
  padding: 2rem 1.6rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 45, 90, 0.07);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step__num {
  position: absolute;
  top: -22px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--lime-400);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: var(--shadow-md);
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-900);
  margin: 0.3rem 0 0.5rem;
  font-weight: 800;
}
.step__body {
  color: var(--ink-500);
  margin: 0;
  font-size: 0.95rem;
}

/* ============ PSA ============ */
.psa {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--navy-900);
  color: var(--sand-100);
}
.psa__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 900px) {
  .psa__grid { grid-template-columns: 1fr; }
}
.psa .h2 { color: var(--white); }
.psa .eyebrow--dark { color: var(--lime-400); background: rgba(106, 190, 63, 0.14); }
.psa p { color: rgba(244, 237, 224, 0.85); }
.psa strong { color: var(--white); }
.psa__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.6rem;
}
.psa__list li {
  padding-left: 1.4rem;
  position: relative;
  color: rgba(244, 237, 224, 0.85);
}
.psa__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-500);
}

.psa__art-inner {
  display: grid;
  gap: 0.85rem;
}
.psa__stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: center;
}
.psa__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--lime-400);
  line-height: 1;
}
.psa__stat-lbl {
  font-size: 0.92rem;
  color: rgba(244, 237, 224, 0.85);
}

/* ============ Reviews ============ */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
@media (max-width: 720px) {
  .reviews { grid-template-columns: 1fr; }
}
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 45, 90, 0.06);
}
.stars {
  color: #f5a524;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.review__body {
  font-size: 1.02rem;
  color: var(--ink-700);
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.4;
}
.review__who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
}
.avatar--a { background: linear-gradient(135deg, #82d055, #54a51f); }
.avatar--b { background: linear-gradient(135deg, #4d7c0f, #2a528f); }
.avatar--c { background: linear-gradient(135deg, #2d6e8c, #11305f); }
.avatar--d { background: linear-gradient(135deg, #b8442a, #6ABE3F); }
.review__name {
  font-weight: 700;
  color: var(--navy-900);
}
.review__loc {
  color: var(--ink-400);
  font-size: 0.85rem;
}

/* ============ Final CTA ============ */
.cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: clamp(48px, 7vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 190, 63, 0.18) 0%, transparent 70%);
  top: -120px;
  right: -120px;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
}
@media (max-width: 820px) {
  .cta__inner { grid-template-columns: 1fr; }
}
.cta__title {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta__sub {
  color: rgba(244, 237, 224, 0.85);
  margin: 0;
  font-size: 1.05rem;
  max-width: 520px;
}
.cta__buttons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* ============ FAQ ============ */
.faq-wrap {
  max-width: 820px;
}
.faq {
  display: grid;
  gap: 0.6rem;
}
.faq details {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 45, 90, 0.08);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--lime-500);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-500);
}

/* ============ Footer ============ */
.footer {
  background: var(--navy-900);
  color: var(--sand-200);
  padding-top: clamp(48px, 6vw, 72px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
.footer__about {
  color: rgba(236, 225, 204, 0.7);
  max-width: 320px;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.footer__contact a {
  color: var(--sand-100);
  font-weight: 600;
}
.footer__contact a:hover { color: var(--lime-400); }
.footer__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand-100);
  margin-bottom: 0.85rem;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.footer__list a {
  color: rgba(236, 225, 204, 0.75);
  font-size: 0.95rem;
}
.footer__list a:hover { color: var(--lime-400); }
.footer__list li { font-size: 0.95rem; color: rgba(236, 225, 204, 0.75); }

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  font-size: 0.85rem;
  color: rgba(236, 225, 204, 0.55);
}
.footer__base-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__legal {
  display: flex;
  gap: 1.2rem;
}
.footer__legal a {
  color: rgba(236, 225, 204, 0.7);
}
.footer__legal a:hover {
  color: var(--lime-400);
}

/* ============ Legal / Doc pages ============ */
.doc {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 88px);
  background: var(--sand-50);
}
.doc__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.doc__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime-600);
  margin-bottom: 0.6rem;
}
.doc h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 0.5rem;
}
.doc__meta {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin: 0 0 2.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--ink-100);
}
.doc h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy-900);
  margin: 2.4rem 0 0.6rem;
  letter-spacing: -0.01em;
}
.doc h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
  margin: 1.4rem 0 0.4rem;
}
.doc p,
.doc li {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.65;
}
.doc p { margin: 0 0 1rem; }
.doc ul,
.doc ol {
  margin: 0 0 1.2rem;
  padding-left: 1.4rem;
}
.doc li { margin-bottom: 0.4rem; }
.doc a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.doc a:hover { color: var(--lime-600); }
.doc strong { color: var(--navy-900); }
.doc__notice {
  background: var(--navy-100);
  border: 1px solid rgba(106, 190, 63, 0.18);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 0 0 1.6rem;
  font-size: 0.92rem;
  color: var(--navy-900);
}
.doc__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: none !important;
  margin-bottom: 1.4rem;
}
.doc__back:hover { color: var(--lime-600); }

/* ============ Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
