/* ============================================================
   FAIRWORK READY — GLOBAL STYLESHEET
   Design system: "Warm Professional"
   ============================================================ */

/* ------------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  --bg:           #f8f6f1;
  --bg-white:     #ffffff;
  --text:         #2c2c2c;
  --text-light:   #666666;
  --text-muted:   #999999;
  --cta:          #2c5f2c;
  --cta-dark:     #1a3a1a;
  --cta-light:    #f0f7f0;
  --gold:         #b8860b;
  --gold-light:   #fdf8ee;
  --border:       #e8e4de;
  --border-dark:  #d4cfc8;
  --max-w:        1120px;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition:   0.18s ease;
}

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--cta);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--cta-dark);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--bg);
}

.section--white {
  background-color: var(--bg-white);
}

.section--gold {
  background-color: var(--gold-light);
  border-top: 1px solid #e8d9aa;
  border-bottom: 1px solid #e8d9aa;
}

.section--dark {
  background-color: #1e2e1e;
  color: #e8f0e8;
}

/* ------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 0.75rem;
  display: block;
}

.label--gold {
  color: var(--gold);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo:hover {
  text-decoration: none;
}

/* Logo */
.logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: baseline;
}

.logo-text--muted {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-left: 2px;
  position: relative;
  top: -1px;
}

.logo-text--muted .logo-dot {
  width: 6px;
  height: 6px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav__links .nav__cta {
  background-color: var(--cta);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color var(--transition);
}

.nav__links .nav__cta:hover {
  background-color: var(--cta-dark);
  color: #fff;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  background-color: var(--bg);
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero__copy {
  max-width: 580px;
}

.hero__copy h1 {
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero__copy .subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero__checklist {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.hero__checklist li::before {
  content: '✓';
  color: var(--cta);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Hero form card */
.hero__form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.hero__form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* ------------------------------------------------------------
   FORM ELEMENTS
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(44, 95, 44, 0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--cta);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(44, 95, 44, 0.3);
  width: 100%;
  padding: 15px 28px;
  font-size: 1.0625rem;
}

.btn--primary:hover {
  background-color: var(--cta-dark);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(44, 95, 44, 0.4);
  transform: translateY(-1px);
}

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

.btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn--large {
  padding: 17px 36px;
  font-size: 1.125rem;
}

.btn--outline {
  background-color: transparent;
  color: var(--cta);
  border: 2px solid var(--cta);
}

.btn--outline:hover {
  background-color: var(--cta);
  color: #fff;
  text-decoration: none;
}

.btn-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   STAT BAR
   ------------------------------------------------------------ */
.stats {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

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

.stats__item {
  text-align: center;
  padding: 24px 32px;
}

.stats__item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stats__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--cta);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.stats__label {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   WHAT'S INCLUDED
   ------------------------------------------------------------ */
.included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Document stack */
.doc-stack {
  position: relative;
  height: 380px;
  max-width: 320px;
  margin: 0 auto;
}

.doc-stack__page {
  position: absolute;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  box-shadow: var(--shadow-md);
}

.doc-stack__page:nth-child(1) {
  width: 240px;
  height: 310px;
  bottom: 0;
  right: 20px;
  transform: rotate(4deg);
  background-color: #f9f7f2;
}

.doc-stack__page:nth-child(2) {
  width: 245px;
  height: 315px;
  bottom: 6px;
  right: 10px;
  transform: rotate(2deg);
  background-color: #fbfaf7;
}

.doc-stack__page:nth-child(3) {
  width: 260px;
  height: 330px;
  bottom: 12px;
  right: 0;
  transform: rotate(0deg);
  background-color: var(--bg-white);
  padding: 20px;
  z-index: 3;
}

.doc-stack__front {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.doc-stack__header {
  border-bottom: 2px solid var(--cta);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.doc-stack__title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta);
  display: block;
  margin-bottom: 4px;
}

.doc-stack__doc-name {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 400;
}

.doc-stack__lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding-left: 28px;
}

.doc-stack__lines::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ffb3b3;
  opacity: 0.5;
}

.doc-stack__line {
  height: 1px;
  background-color: var(--border);
  width: 100%;
}

.doc-stack__line--text {
  height: auto;
  font-size: 0.6rem;
  color: var(--text-light);
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
  padding-bottom: 7px;
}

.doc-stack__line--text.bold-line {
  font-weight: 700;
  color: var(--text);
}

/* Documents list */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.doc-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background-color var(--transition);
}

.doc-list__item:last-child {
  border-bottom: none;
}

.doc-list__item:hover {
  background-color: var(--cta-light);
}

.doc-list__icon {
  width: 36px;
  height: 36px;
  background-color: var(--cta-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.doc-list__text h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
  font-family: var(--font-serif);
  font-weight: 600;
}

.doc-list__text p {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.45;
}

/* ------------------------------------------------------------
   FREE UPDATES CALLOUT
   ------------------------------------------------------------ */
.updates-callout {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.updates-callout__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--gold-light);
  border: 1px solid #e8d9aa;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
   ENFORCEMENT SECTION
   ------------------------------------------------------------ */
.enforcement__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.enforcement__card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.enforcement__card h4 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: #e8f0e8;
  margin-bottom: 8px;
  font-weight: 400;
}

.enforcement__card p {
  font-size: 0.875rem;
  color: #9eba9e;
  line-height: 1.6;
  margin: 0;
}

.enforcement__card .enforcement__icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: block;
}

/* ------------------------------------------------------------
   COMPARISON TABLE
   ------------------------------------------------------------ */
.comparison {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-color: var(--bg-white);
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison table th,
.comparison table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison table th {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1rem;
  padding-top: 24px;
  padding-bottom: 24px;
}

.comparison table td:first-child,
.comparison table th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

.comparison table tr:last-child td {
  border-bottom: none;
  padding-bottom: 24px;
}

.comparison table tr:hover td {
  background-color: #fafaf8;
}

/* Highlighted column */
.comparison .col-highlight {
  background-color: var(--cta-light);
  position: relative;
}

.comparison th.col-highlight {
  color: var(--cta);
  font-weight: 600;
  border-bottom: 2px solid var(--cta);
}

.comparison td.col-highlight {
  font-weight: 500;
  color: var(--cta);
}

.comparison .col-highlight-header {
  background-color: var(--cta);
  color: #fff !important;
  border-radius: var(--radius) var(--radius) 0 0;
  font-weight: 700 !important;
}

.check-yes {
  color: var(--cta);
  font-weight: 700;
  font-size: 1.1rem;
}

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

.price-cell {
  font-family: var(--font-serif);
  font-size: 1.5rem !important;
  font-weight: 400;
}

/* ------------------------------------------------------------
   FAQ ACCORDION
   ------------------------------------------------------------ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq details:first-of-type {
  border-top: 1px solid var(--border);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: color var(--transition);
  gap: 20px;
}

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

.faq summary:hover {
  color: var(--cta);
}

.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cta);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}

.faq details[open] summary::after {
  content: '−';
}

.faq__answer {
  padding-bottom: 24px;
  padding-right: 40px;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq__answer p + p {
  margin-top: 0.75rem;
}

/* ------------------------------------------------------------
   TIMELINE
   ------------------------------------------------------------ */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: var(--border);
}

.timeline__item {
  position: relative;
  margin-bottom: 32px;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -31px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 2px solid var(--border);
}

.timeline__dot--live {
  background-color: var(--cta);
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(44, 95, 44, 0.2);
}

.timeline__dot--coming {
  background-color: var(--gold);
  border-color: var(--gold);
}

.timeline__date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.timeline__date--live {
  color: var(--cta);
}

.timeline__date--coming {
  color: var(--gold);
}

.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ------------------------------------------------------------
   SECTION HEADING BLOCK
   ------------------------------------------------------------ */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading--left {
  text-align: left;
}

.section-heading .subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--left .subtitle {
  margin-left: 0;
}

/* ------------------------------------------------------------
   FINAL CTA SECTION
   ------------------------------------------------------------ */
.cta-final {
  text-align: center;
  padding: 96px 24px;
  background-color: var(--bg);
}

.cta-final h2 {
  margin-bottom: 1rem;
}

.cta-final .subtitle {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------
   TRUST STRIP
   ------------------------------------------------------------ */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.trust-strip__item::before {
  content: '✓';
  color: var(--cta);
  font-weight: 700;
}

/* ------------------------------------------------------------
   GUARANTEE BADGE
   ------------------------------------------------------------ */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin-top: 24px;
  font-size: 0.875rem;
}

.guarantee-badge__icon {
  font-size: 1.5rem;
}

.guarantee-badge__text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
}

.guarantee-badge__text span {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--text);
}

.footer__disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.footer__legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ------------------------------------------------------------
   COOKIE CONSENT BANNER
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #1e2e1e;
  color: #e8f0e8;
  border-top: 3px solid var(--cta);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #c8dac8;
  flex: 1;
  min-width: 250px;
}

.cookie-banner__text a {
  color: #8fc08f;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-banner__accept {
  background-color: var(--cta);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background-color var(--transition);
}

.cookie-banner__accept:hover {
  background-color: var(--cta-dark);
}

.cookie-banner__reject {
  background-color: transparent;
  color: #8fc08f;
  border: 1px solid rgba(143, 192, 143, 0.4);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition);
}

.cookie-banner__reject:hover {
  border-color: #8fc08f;
  color: #e8f0e8;
}

/* ------------------------------------------------------------
   UTILITY CLASSES
   ------------------------------------------------------------ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Highlight callout */
.callout {
  background-color: var(--cta-light);
  border-left: 3px solid var(--cta);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9375rem;
  margin: 24px 0;
}

/* ------------------------------------------------------------
   RESPONSIVE — TABLET (768px)
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__form-card {
    max-width: 540px;
    margin: 0 auto;
  }

  .included__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .doc-stack {
    margin: 0 auto 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stats__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stats__number {
    font-size: 2.25rem;
  }

  .nav__links {
    gap: 20px;
  }

  .nav__links a:not(.nav__cta) {
    display: none;
  }

  .comparison table th,
  .comparison table td {
    padding: 12px 14px;
    font-size: 0.8125rem;
  }

  .comparison .price-cell {
    font-size: 1.1rem !important;
  }

  .cta-final {
    padding: 64px 24px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .enforcement__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero__form-card {
    padding: 24px 20px;
  }

  .enforcement__grid {
    grid-template-columns: 1fr;
  }

  .btn--large {
    padding: 15px 24px;
    font-size: 1rem;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
