/* ============================================================
   doneforyou.ie — Main Stylesheet
   Mobile-first, warm & professional
   Brand: #2D5A3D (green) · #7BAE8A (sage) · #C8842B (gold) · #F7F3ED (cream)
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────────── */
:root {
  --green:       #2D5A3D;
  --green-dark:  #1e3f2b;
  --green-light: #3a7050;
  --sage:        #7BAE8A;
  --sage-light:  #D4E8D8;
  --gold:        #C8842B;
  --gold-light:  #e09840;
  --cream:       #F7F3ED;
  --cream-dark:  #efe9e0;
  --earth:       #A8916F;
  --white:       #FAFAF8;
  --near-black:  #1C1C1E;
  --warm-dark:   #3A3530;
  --text-muted:  #6B6B5F;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-quote:  'Lora', Georgia, serif;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;

  --shadow-sm:   0 2px 8px rgba(45,90,61,0.08);
  --shadow:      0 4px 20px rgba(45,90,61,0.12);
  --shadow-lg:   0 8px 40px rgba(45,90,61,0.18);

  --transition:  0.3s ease;
  --max-width:   1160px;
  --nav-h:       70px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--near-black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--green); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-family: var(--font-body); font-size: 1.375rem; font-weight: 600; }
h4 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--warm-dark); }
p:last-child { margin-bottom: 0; }
strong { color: var(--near-black); }

/* ── Layout ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: 1.25rem; }
.section    { padding-block: 5rem; }
.section--cream { background: var(--cream); }
.section--green { background: var(--green); color: var(--white); }
.section--green h2, .section--green h3 { color: var(--sage-light); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-intro {
  max-width: 640px;
  margin-inline: auto;
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  border: 2px solid transparent;
}
.btn--primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn--lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--sage-light);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.nav__logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; flex-shrink: 0; }
.nav__logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav__logo-text { font-family: var(--font-head); font-size: 1.125rem; font-weight: 700; color: var(--green); line-height: 1; }
.nav__logo-text span { color: var(--gold); }

.nav__links { display: none; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.9375rem; font-weight: 500; color: var(--warm-dark); transition: color var(--transition); position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform var(--transition); }
.nav__links a:hover, .nav__links a.active { color: var(--green); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { display: none; }

.nav__hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0.5rem; cursor: pointer; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--green); transition: var(--transition); border-radius: 2px; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); flex-direction: column; padding: 2rem 1.5rem;
  gap: 0; overflow-y: auto; z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: 1.125rem; font-weight: 500; color: var(--warm-dark); padding: 1rem 0; border-bottom: 1px solid var(--cream-dark); transition: color var(--transition); }
.nav__mobile a:hover { color: var(--green); }
.nav__mobile .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta   { display: inline-flex; }
  .nav__hamburger { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 60%, #4a8562 100%);
  color: var(--white);
  padding-block: 5rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(200,132,43,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(123,174,138,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(123,174,138,0.08); pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,132,43,0.2); border: 1px solid rgba(200,132,43,0.4);
  color: #f0b060; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 0.375rem 0.875rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.05; margin-bottom: 1.5rem; }
.hero h1 .accent { color: #f0c070; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.175rem); color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 580px; line-height: 1.7; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__note { font-size: 0.8125rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero__note span { display: flex; align-items: center; gap: 0.3rem; }

.hero__quote {
  margin-top: 2.5rem; padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.1); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; max-width: 520px;
}
.hero__quote p { font-family: var(--font-quote); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.92); margin-bottom: 0.5rem; }
.hero__quote cite { font-size: 0.8125rem; font-style: normal; color: rgba(255,255,255,0.65); font-family: var(--font-body); }

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar { background: var(--green-dark); padding: 1.75rem 0; }
.trust-bar__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
@media (min-width: 640px) { .trust-bar__inner { grid-template-columns: repeat(4, 1fr); } }

.trust-badge { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.trust-badge__icon {
  width: 44px; height: 44px; background: rgba(200,132,43,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.trust-badge__value { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: #f0c070; line-height: 1; display: block; }
.trust-badge__label { font-size: 0.75rem; color: rgba(255,255,255,0.7); line-height: 1.3; display: block; }

/* ── Benefit Blocks ──────────────────────────────────────────── */
.benefits-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--sage-light); transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-card__icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.benefit-card h3 { color: var(--green); margin-bottom: 0.75rem; }

/* ── How It Works ────────────────────────────────────────────── */
.steps { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; align-items: start; }
@media (min-width: 768px) { .step { grid-template-columns: 1fr; } }

.step__num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: var(--white);
  font-family: var(--font-head); font-size: 1.375rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .step__num { margin-bottom: 0.75rem; } }
.step__content h3 { color: var(--green); margin-bottom: 0.5rem; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--sage-light); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 0.75rem; right: 1.25rem;
  font-family: var(--font-head); font-size: 4rem; color: var(--sage-light); line-height: 1;
}
.testimonial-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; display: block; }
.testimonial-card__text { font-family: var(--font-quote); font-style: italic; font-size: 1rem; color: var(--warm-dark); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-card__author { font-weight: 600; color: var(--green); font-size: 0.9375rem; }
.testimonial-card__grant { font-size: 0.8125rem; color: var(--gold); font-weight: 600; }

/* ── Grant Table ─────────────────────────────────────────────── */
.grant-table-wrap { overflow-x: auto; margin-top: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.grant-table { width: 100%; border-collapse: collapse; background: var(--white); }
.grant-table th, .grant-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--cream-dark); }
.grant-table th { background: var(--green); color: var(--white); font-family: var(--font-body); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.grant-table td:first-child { font-weight: 500; }
.grant-table td:last-child { font-weight: 700; color: var(--green); white-space: nowrap; }
.grant-table tr:last-child td { border-bottom: none; }
.grant-table tr:hover td { background: var(--cream); }
.grant-table__total td { background: var(--cream); font-weight: 700; color: var(--green); font-size: 1.0625rem; }

/* ── Pricing Cards ───────────────────────────────────────────── */
.pricing-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border: 2px solid var(--cream-dark); display: flex; flex-direction: column; position: relative; transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow); border-color: var(--sage); }
.pricing-card--featured { border-color: var(--green); box-shadow: var(--shadow); }
.pricing-card--waitlist { border-color: var(--earth); background: var(--cream); }

.pricing-card__badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1.25rem; width: fit-content;
}
.badge--open     { background: #dcf0e3; color: #1e6b3a; }
.badge--popular  { background: var(--green); color: var(--white); }
.badge--waitlist { background: #f5e8d8; color: #8a5a20; }
.badge--booked   { background: var(--cream-dark); color: var(--warm-dark); }

.pricing-card__name { font-family: var(--font-head); font-size: 1.375rem; font-weight: 700; color: var(--green); margin-bottom: 0.25rem; }
.pricing-card__tagline { font-size: 0.9375rem; font-style: italic; color: var(--text-muted); margin-bottom: 1.25rem; font-family: var(--font-quote); }
.pricing-card__price { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 0.25rem; }
.pricing-card__price sup { font-size: 1.25rem; vertical-align: super; font-weight: 400; }
.pricing-card__price-note { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card__divider { height: 1px; background: var(--cream-dark); margin-block: 1.5rem; }
.pricing-card__features { flex: 1; display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.75rem; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: var(--warm-dark); }
.pricing-card__feature .check { color: var(--sage); font-weight: 700; flex-shrink: 0; }
.pricing-card__cta { margin-top: auto; width: 100%; justify-content: center; }

.waitlist-notice {
  background: #fef8ef; border: 1px solid #f0d5a0; border-radius: var(--radius-sm); padding: 1.25rem; margin-bottom: 1.25rem;
}
.waitlist-notice p { font-size: 0.875rem; color: var(--warm-dark); margin-bottom: 0.5rem; }
.waitlist-notice strong { color: var(--gold); }

/* Comparison Table */
.comparison-wrap { overflow-x: auto; margin-top: 3rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 600px; }
.comparison-table th, .comparison-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--cream-dark); text-align: center; font-size: 0.875rem; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--warm-dark); min-width: 160px; }
.comparison-table thead th { background: var(--green); color: var(--white); font-weight: 600; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) td { background: var(--cream); }
.tick { color: var(--sage); font-weight: 700; }
.cross { color: #ccc; }
.partial { color: var(--gold); font-size: 0.8rem; font-weight: 600; }

/* ── About Page ──────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); padding-block: 5rem 3rem; color: var(--white); }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.85); }

.about-story { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .about-story { grid-template-columns: 320px 1fr; } }

.about-image-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  text-align: center; border: 3px solid var(--sage-light); position: relative;
}
.about-image-card__avatar {
  width: 120px; height: 120px; border-radius: 50%; background: var(--sage-light);
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
  margin: 0 auto 1.25rem; border: 4px solid var(--white); box-shadow: var(--shadow);
}
.about-image-card__name { font-family: var(--font-head); font-size: 1.375rem; color: var(--green); margin-bottom: 0.25rem; }
.about-image-card__title { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.about-image-card__placeholder { font-size: 0.75rem; color: var(--earth); font-style: italic; }

.aria-quote { background: var(--green); color: var(--white); border-radius: var(--radius); padding: 1.75rem; margin-top: 1.5rem; }
.aria-quote p { font-family: var(--font-quote); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.92); line-height: 1.7; margin-bottom: 0.5rem; }
.aria-quote cite { font-size: 0.8125rem; font-style: normal; color: rgba(255,255,255,0.65); font-family: var(--font-body); }

.values-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  border-left: 4px solid var(--green); box-shadow: var(--shadow-sm);
}
.value-card__icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.value-card h3 { color: var(--green); margin-bottom: 0.5rem; }

.credentials-list { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .credentials-list { grid-template-columns: repeat(2, 1fr); } }
.credential-item { display: flex; align-items: center; gap: 0.75rem; background: var(--white); padding: 0.875rem 1.25rem; border-radius: var(--radius-sm); border: 1px solid var(--sage-light); font-weight: 500; color: var(--warm-dark); }
.credential-item .check { color: var(--sage); font-size: 1.125rem; font-weight: 700; }

.services-offered-list { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 640px) { .services-offered-list { grid-template-columns: repeat(2, 1fr); } }
.service-item { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start; }
.service-item__icon { width: 48px; height: 48px; background: var(--sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.service-item h4 { margin-bottom: 0.25rem; color: var(--green); }
.service-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ── FAQ Accordion ────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--cream-dark); overflow: hidden; }
.faq-item__question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; color: var(--near-black);
  font-size: 1rem; transition: background var(--transition); background: none; border: none; width: 100%; text-align: left;
}
.faq-item__question:hover { background: var(--cream); }
.faq-item__icon { width: 24px; height: 24px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; flex-shrink: 0; color: var(--green); font-weight: 700; transition: var(--transition); }
.faq-item.open .faq-item__icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-item.open .faq-item__question { color: var(--green); }
.faq-item__answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--warm-dark); line-height: 1.7; font-size: 0.9375rem; }
.faq-item.open .faq-item__answer { display: block; }

/* ── Grant Checker Page ───────────────────────────────────────── */
.quiz-section { padding-block: 3rem 5rem; background: var(--cream); min-height: 60vh; }
.quiz-wrap { max-width: 720px; margin-inline: auto; }

.quiz-progress { margin-bottom: 2rem; }
.quiz-progress__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.625rem; }
.quiz-progress__label { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.quiz-progress__count { font-size: 0.8125rem; font-weight: 600; color: var(--green); }
.quiz-progress__bar { height: 6px; background: var(--cream-dark); border-radius: 100px; overflow: hidden; }
.quiz-progress__fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--sage)); border-radius: 100px; transition: width 0.4s ease; }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeSlideIn 0.35s ease; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }

.quiz-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.quiz-card__q-num { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.quiz-card h2 { font-size: clamp(1.25rem, 3vw, 1.625rem); color: var(--green); margin-bottom: 0.5rem; }
.quiz-card__why { font-size: 0.875rem; color: var(--text-muted); background: var(--cream); border-radius: var(--radius-sm); padding: 0.75rem 1rem; margin-bottom: 1.75rem; border-left: 3px solid var(--sage); }

.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-options--grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (max-width: 480px) { .quiz-options--grid { grid-template-columns: 1fr; } }

.quiz-option {
  display: flex; align-items: center; gap: 0.875rem; padding: 1rem 1.25rem;
  background: var(--cream); border: 2px solid var(--cream-dark); border-radius: var(--radius-sm);
  cursor: pointer; font-size: 0.9375rem; font-weight: 500; color: var(--warm-dark);
  transition: var(--transition); text-align: left; width: 100%; font-family: var(--font-body); line-height: 1.4;
}
.quiz-option:hover { border-color: var(--sage); background: var(--white); color: var(--green); }
.quiz-option.selected { border-color: var(--green); background: #e8f3eb; color: var(--green); font-weight: 600; }
.quiz-option__emoji { font-size: 1.25rem; flex-shrink: 0; width: 28px; text-align: center; }

.quiz-option--check { position: relative; }
.quiz-option--check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-custom { width: 20px; height: 20px; border: 2px solid var(--cream-dark); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--white); font-size: 0.75rem; font-weight: 700; }
.quiz-option--check.selected .checkbox-custom { background: var(--green); border-color: var(--green); }
.quiz-option--check.selected .checkbox-custom::after { content: '✓'; }

.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.75rem; gap: 1rem; }
.quiz-nav .btn { min-width: 120px; }
.quiz-back {
  background: none; border: 2px solid var(--cream-dark); color: var(--text-muted);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.quiz-back:hover { border-color: var(--earth); color: var(--warm-dark); }

/* ── Results ─────────────────────────────────────────────────── */
.quiz-results { display: none; }
.quiz-results.active { display: block; animation: fadeSlideIn 0.4s ease; }

.results-header { text-align: center; margin-bottom: 2rem; }
.results-header h2 { color: var(--green); margin-bottom: 0.75rem; }
.results-total {
  display: inline-block; background: var(--green); color: var(--white);
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 700;
  padding: 0.75rem 2rem; border-radius: var(--radius); margin: 1rem 0;
}
.results-total-label { font-size: 0.875rem; color: var(--text-muted); display: block; margin-top: 0.5rem; }
.results-disclaimer { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.5rem; font-style: italic; }

.results-grants { margin-top: 1.5rem; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.result-grant-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--cream-dark); background: var(--white); }
.result-grant-row:last-child { border-bottom: none; }
.result-grant-row__label { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; color: var(--warm-dark); font-size: 0.9375rem; }
.result-grant-row__value { font-weight: 700; color: var(--green); font-size: 1rem; white-space: nowrap; }
.result-grant-row--total { background: var(--cream); }
.result-grant-row--total .result-grant-row__label { font-weight: 700; color: var(--green); font-size: 1rem; }
.result-grant-row--total .result-grant-row__value { font-size: 1.125rem; color: var(--green); }

.warmer-homes-notice {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white); border-radius: var(--radius); padding: 1.75rem; margin-top: 1.5rem; text-align: center;
}
.warmer-homes-notice h3 { color: #f0c070; margin-bottom: 0.75rem; font-family: var(--font-body); }
.warmer-homes-notice p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

.results-recommendation {
  background: var(--cream); border-radius: var(--radius); padding: 1.75rem; margin-top: 1.5rem; border: 2px solid var(--sage-light);
}
.results-recommendation h3 { color: var(--green); margin-bottom: 0.5rem; font-family: var(--font-body); }
.results-recommendation__package {
  background: var(--green); color: var(--white); border-radius: var(--radius-sm);
  padding: 1.25rem; margin: 1rem 0; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.results-recommendation__package-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; }
.results-recommendation__package-price { font-size: 1.25rem; font-weight: 700; color: #f0c070; }
.results-recommendation__ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-top: 0.5rem; }

.results-email-capture {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem; margin-top: 1.5rem; border: 1px solid var(--cream-dark); text-align: center;
}
.results-email-capture h3 { color: var(--green); margin-bottom: 0.5rem; font-family: var(--font-body); }
.results-email-capture p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.email-form { display: flex; flex-direction: column; gap: 0.875rem; max-width: 480px; margin-inline: auto; }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; text-align: left; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--warm-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.875rem 1rem; border: 2px solid var(--cream-dark); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--near-black);
  background: var(--white); transition: border-color var(--transition); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 360px 1fr; } }

.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method {
  display: flex; gap: 1.25rem; align-items: flex-start; background: var(--white);
  border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--sage-light); box-shadow: var(--shadow-sm);
}
.contact-method__icon { width: 50px; height: 50px; background: var(--sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; flex-shrink: 0; }
.contact-method h4 { color: var(--green); margin-bottom: 0.25rem; }
.contact-method__detail { font-size: 1.0625rem; font-weight: 600; color: var(--near-black); margin-bottom: 0.25rem; }
.contact-method__meta { font-size: 0.8125rem; color: var(--text-muted); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-dark); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.privacy-note { font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.privacy-note a { color: var(--green); text-decoration: underline; }

.office-hours { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--cream-dark); margin-top: 1.25rem; }
.office-hours h4 { color: var(--green); margin-bottom: 1rem; }
.office-hours table { width: 100%; border-collapse: collapse; }
.office-hours td { padding: 0.625rem 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.9375rem; color: var(--warm-dark); }
.office-hours td:last-child { text-align: right; font-weight: 500; color: var(--green); }
.office-hours tr:last-child td { border-bottom: none; }

.aria-contact-note {
  background: rgba(255,255,255,0.1); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem; margin-bottom: 2rem;
}
.aria-contact-note p { font-family: var(--font-quote); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.92); margin-bottom: 0.25rem; }
.aria-contact-note cite { font-size: 0.8125rem; font-style: normal; color: rgba(255,255,255,0.65); font-family: var(--font-body); }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding-block: 5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(123,174,138,0.12); pointer-events: none;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.0625rem; max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }
.cta-section__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-note { margin-top: 1.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ── Pricing Note (Aria quote on services) ────────────────────── */
.aria-note-box {
  background: var(--cream); border-radius: var(--radius); padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold); margin-bottom: 3rem;
}
.aria-note-box p { font-family: var(--font-quote); font-style: italic; font-size: 1rem; color: var(--warm-dark); margin-bottom: 0; }
.aria-note-box cite { display: block; margin-top: 0.5rem; font-size: 0.875rem; font-style: normal; color: var(--text-muted); font-family: var(--font-body); }

/* ── Footer ───────────────────────────────────────────────────── */
footer { background: var(--near-black); color: var(--white); padding-block: 4rem 2rem; }
.footer__top { display: grid; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer__logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.75rem; text-decoration: none; }
.footer__logo-text { font-family: var(--font-head); font-size: 1.125rem; font-weight: 700; color: var(--white); }
.footer__logo-text span { color: var(--gold); }
.footer__tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.65); font-style: italic; font-family: var(--font-quote); margin-bottom: 0.75rem; }
.footer__irish { font-size: 0.8125rem; color: var(--sage); }
.footer__nav h4 { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer__nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__nav ul a { font-size: 0.9375rem; color: rgba(255,255,255,0.72); transition: color var(--transition); }
.footer__nav ul a:hover { color: var(--gold); }
.footer__contact-item { display: flex; align-items: center; gap: 0.625rem; color: rgba(255,255,255,0.72); font-size: 0.9375rem; margin-bottom: 0.75rem; }

.footer__bottom { padding-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: space-between; align-items: flex-start; }
.footer__disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.4); max-width: 560px; line-height: 1.6; }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer__legal-links a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__legal-links a:hover { color: rgba(255,255,255,0.7); }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 1.25rem; width: 100%; }

/* ── WhatsApp Floating Button ─────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: var(--transition); text-decoration: none;
}
.whatsapp-btn:hover { background: #1da851; transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,0.25); }
.whatsapp-btn svg { width: 32px; height: 32px; fill: var(--white); }
.whatsapp-btn::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 3px solid #25D366; animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.55); opacity: 0; } }

.whatsapp-btn__tooltip {
  position: absolute; right: calc(100% + 12px); background: var(--near-black);
  color: var(--white); font-size: 0.8125rem; font-weight: 500; white-space: nowrap;
  padding: 0.5rem 0.875rem; border-radius: var(--radius-sm); opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.whatsapp-btn__tooltip::after {
  content: ''; position: absolute; top: 50%; left: 100%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--near-black);
}
.whatsapp-btn:hover .whatsapp-btn__tooltip { opacity: 1; }

/* ── Scroll Animations ───────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in--d1 { transition-delay: 0.1s; }
.fade-in--d2 { transition-delay: 0.2s; }
.fade-in--d3 { transition-delay: 0.3s; }
.fade-in--d4 { transition-delay: 0.4s; }

/* ── Pricing Philosophy ───────────────────────────────────────── */
.not-sure-box {
  background: var(--cream); border-radius: var(--radius); padding: 2.5rem; text-align: center; margin-top: 3rem;
}
.not-sure-box h3 { color: var(--green); margin-bottom: 0.75rem; }
.not-sure-box p { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 500px; margin-inline: auto; }
.not-sure-box__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Form success state */
.form-success {
  text-align: center; padding: 2rem; background: #e8f3eb; border-radius: var(--radius);
  border: 1px solid var(--sage); display: none;
}
.form-success h3 { color: var(--green); margin-bottom: 0.5rem; }
.form-success p  { color: var(--warm-dark); margin-bottom: 0; }
