/* ============================================================
   UK Business Sites — Stylesheet
   Fonts: Fraunces (display) + DM Sans (body)
   ============================================================ */

:root {
  --forest:      #2D6A4F;
  --forest-dark: #1B4332;
  --sage:        #52B788;
  --mint:        #B7E4C7;
  --mist:        #D8F3DC;
  --sky:         #48CAE4;
  --sky-pale:    #E0F7FC;
  --cream:       #F9F8F3;
  --ink:         #1C2B1E;
  --slate:       #4A5E4C;
  --muted:       #7A9B7D;
  --white:       #FFFFFF;
  --red-light:   #FFF5F5;
  --red-border:  #FECACA;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 10px rgba(29, 75, 55, 0.07);
  --shadow-md: 0 8px 28px rgba(29, 75, 55, 0.11);
  --shadow-lg: 0 20px 56px rgba(29, 75, 55, 0.14);

  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 740px; }

/* ── Wordmark ── */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark__uk {
  color: var(--forest);
  font-style: italic;
}
.wordmark__rest {
  font-weight: 500;
  color: var(--ink);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.65em 1.6em;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(45,106,79,0.28);
}
.btn--primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,106,79,0.38);
}
.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn--outline:hover { background: var(--mist); }
.btn--lg { font-size: 1rem; padding: 0.85em 2.2em; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,248,243,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45,106,79,0.08);
  padding: 0.85rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
}
.nav__link:hover,
.nav__link--active { color: var(--forest); }
.nav__link--active { font-weight: 600; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}
.nav__mobile { display: none; }
.nav__mobile.is-open {
  display: block;
  padding: 0.75rem 0;
  border-top: 1px solid var(--mist);
  margin-top: 0.85rem;
}
.nav__mobile .nav__link { display: block; padding: 0.55rem 0; font-size: 1rem; }

/* ── Shared section labels ── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.section-title em { font-style: italic; color: var(--forest); }
.section-lead {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 560px;
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 5rem 0 0;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -200px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle at 50% 50%, var(--mist) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--mist);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.hero__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: breathe 2s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero__title em { font-style: italic; color: var(--forest); }
.hero__sub {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__spots {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 500;
}
.spots-pip {
  display: inline-flex;
  gap: 3px;
}
.spots-pip span {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
}
.spots-pip span.on { background: var(--forest); }

/* CSS Browser Mockup */
.mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(45,106,79,0.07);
}
.mockup__chrome {
  background: #EDEDED;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.mockup__dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup__dot:nth-child(1) { background: #FF6059; }
.mockup__dot:nth-child(2) { background: #FEBC2E; }
.mockup__dot:nth-child(3) { background: #28C840; }
.mockup__address {
  flex: 1;
  background: var(--white);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: #AAA;
}
.mockup__sitenav {
  background: var(--forest);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup__sitelogo { width: 72px; height: 9px; background: rgba(255,255,255,0.35); border-radius: 4px; }
.mockup__sitelinks { display: flex; gap: 7px; }
.mockup__sitelink { width: 28px; height: 7px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.mockup__hero-area { background: var(--cream); padding: 22px 16px 18px; }
.mockup__bar { height: 13px; border-radius: 4px; background: var(--ink); margin-bottom: 7px; }
.mockup__bar--short  { width: 60%; opacity: 0.5; }
.mockup__bar--xshort { width: 38%; opacity: 0.32; margin-bottom: 12px; }
.mockup__line { height: 5px; border-radius: 3px; background: var(--slate); opacity: 0.2; margin-bottom: 5px; }
.mockup__line--short { width: 72%; }
.mockup__sitebtn { width: 78px; height: 20px; background: var(--forest); border-radius: 100px; margin-top: 13px; }
.mockup__cards { background: var(--white); padding: 14px 12px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mockup__card { background: var(--cream); border-radius: 8px; padding: 9px; }
.mockup__card-icon { width: 18px; height: 18px; background: var(--mint); border-radius: 5px; margin-bottom: 6px; }
.mockup__card-line { height: 4px; border-radius: 3px; background: #CCC; margin-bottom: 4px; }
.mockup__card-line:last-child { width: 50%; }
.mockup__footer-strip { background: var(--ink); height: 22px; }

/* Wave dividers */
.wave { display: block; width: 100%; line-height: 0; }

/* ── DIFFERENCE ── */
.difference { padding: 6rem 0; background: var(--white); }
.difference__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.comparison { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.comparison__col { padding: 1.5rem; border-radius: var(--radius-lg); }
.comparison__col--them { background: var(--red-light); border: 1.5px solid var(--red-border); }
.comparison__col--us   { background: var(--mist);      border: 1.5px solid var(--mint); }
.comparison__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.4em;
}
.comparison__col--them .comparison__label { color: #DC2626; }
.comparison__col--us  .comparison__label { color: var(--forest); }
.comparison__list { list-style: none; }
.comparison__item {
  display: flex; gap: 0.6em; align-items: flex-start;
  padding: 0.32em 0; font-size: 0.875rem; color: var(--slate); line-height: 1.45;
}
.comparison__icon {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; margin-top: 1px;
}
.comparison__col--them .comparison__icon { background: #FECACA; color: #DC2626; }
.comparison__col--us  .comparison__icon { background: var(--mint); color: var(--forest); }

/* ── HOW IT WORKS ── */
.how { padding: 6rem 0; background: var(--cream); }
.how__steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.5rem; position: relative;
}
.how__connector {
  position: absolute; top: 26px;
  left: calc(33.33% - 16px); right: calc(33.33% - 16px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--mint) 0, var(--mint) 8px, transparent 8px, transparent 18px);
  z-index: 0;
}
.step {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem;
  position: relative; z-index: 1; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: var(--white);
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.step__desc  { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }
.step__badge {
  display: inline-block; margin-top: 0.85rem;
  font-size: 0.72rem; font-weight: 600; color: var(--forest);
  background: var(--mist); padding: 0.28em 0.8em; border-radius: var(--radius-pill);
}

/* ── WHAT YOU GET ── */
.get { padding: 6rem 0; background: var(--white); }
.get__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.get__list { list-style: none; margin-top: 2rem; }
.get__item { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.85rem 0; border-bottom: 1px solid var(--mist); }
.get__item:last-child { border-bottom: none; }
.get__check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--mist); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.get__text { font-size: 0.9rem; color: var(--slate); line-height: 1.5; }
.get__text strong { display: block; color: var(--ink); font-weight: 600; }
.get__visual {
  position: sticky; top: 100px;
  background: var(--mist); border-radius: var(--radius-xl); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.get__stat {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
}
.get__stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--forest); line-height: 1; margin-bottom: 0.2rem; }
.get__stat-label { font-size: 0.78rem; color: var(--slate); }
.get__delivery {
  background: var(--forest); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  color: var(--white); font-size: 0.875rem; line-height: 1.55;
}
.get__delivery strong { display: block; font-size: 1rem; margin-bottom: 0.3rem; }

/* ── QUALIFY ── */
.qualify { padding: 6rem 0; background: var(--forest); color: var(--white); }
.qualify .section-tag  { color: var(--mint); }
.qualify .section-title { color: var(--white); }
.qualify .section-lead  { color: rgba(255,255,255,0.72); }
.qualify__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.qualify__card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg); padding: 1.75rem; transition: background var(--transition);
}
.qualify__card:hover { background: rgba(255,255,255,0.11); }
.qualify__icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.qualify__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.qualify__desc  { font-size: 0.85rem; color: rgba(255,255,255,0.68); line-height: 1.6; }
.qualify__note {
  margin-top: 2.5rem; background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.72);
  border-left: 3px solid var(--mint); line-height: 1.6;
}

/* ── HOSTING ── */
.hosting { padding: 6rem 0; background: var(--sky-pale); }
.hosting__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hosting__eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #2DA5C8; margin-bottom: 0.6rem; }
.hosting__title { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 0.5rem; }
.hosting__sub { font-size: 1rem; color: var(--slate); line-height: 1.65; margin-bottom: 1.5rem; }
.hosting__features { list-style: none; margin-bottom: 1.5rem; }
.hosting__feature { display: flex; gap: 0.7em; align-items: flex-start; padding: 0.5em 0; font-size: 0.875rem; color: var(--slate); border-bottom: 1px solid rgba(0,0,0,0.05); line-height: 1.45; }
.hosting__feature:last-child { border-bottom: none; }
.hosting__feature-tick { width: 18px; height: 18px; border-radius: 50%; background: var(--sky); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.hosting__note { font-size: 0.78rem; color: var(--muted); font-style: italic; line-height: 1.5; }
.hosting__card {
  background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md); text-align: center;
}
.hosting__card-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.4rem; }
.hosting__card-price { font-family: var(--font-display); font-size: 4.2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.hosting__card-period { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.5rem; }
.hosting__card-features { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.hosting__card-feature { display: flex; gap: 0.6em; padding: 0.45em 0; font-size: 0.85rem; color: var(--slate); border-bottom: 1px solid var(--mist); }
.hosting__card-feature:last-child { border-bottom: none; }
.hosting__card-feature::before { content: '✓'; color: var(--forest); font-weight: 700; flex-shrink: 0; }
.hosting__card-note { font-size: 0.72rem; color: var(--muted); line-height: 1.5; margin-top: 0.75rem; }

/* ── APPLY ── */
.apply { padding: 6rem 0; background: var(--white); }
.apply__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start; }
.apply__intro { position: sticky; top: 100px; }
.apply__promise { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.apply__promise-item { display: flex; align-items: center; gap: 0.6em; font-size: 0.875rem; color: var(--slate); }
.apply__promise-item::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.form { background: var(--cream); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--mist); }
.form__section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin: 1.4rem 0 0.85rem; display: block; }
.form__group { margin-bottom: 0.9rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form__label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--slate); letter-spacing: 0.02em; margin-bottom: 0.35em; }
.form__req { color: var(--sage); }
.form__input,
.form__select,
.form__textarea {
  width: 100%; padding: 0.7em 1em; border-radius: var(--radius-md);
  border: 1.5px solid #D0E8D5; background: var(--white);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(82,183,136,0.15); }
.form__input::placeholder,
.form__textarea::placeholder { color: #B5CDB8; }
.form__textarea { resize: vertical; min-height: 80px; }
.form__hint { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 0.3em; line-height: 1.45; }
.form__radio-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form__radio { display: flex; align-items: center; gap: 0.6em; font-size: 0.875rem; color: var(--slate); cursor: pointer; }
.form__radio input { accent-color: var(--forest); width: 15px; height: 15px; cursor: pointer; }
.form__submit {
  width: 100%; background: var(--forest); color: var(--white);
  font-size: 1rem; font-weight: 600; padding: 0.9em 2em;
  border-radius: var(--radius-pill); border: none; cursor: pointer;
  transition: all var(--transition); box-shadow: 0 4px 18px rgba(45,106,79,0.28);
  margin-top: 1.5rem;
}
.form__submit:hover { background: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45,106,79,0.38); }
.form__disclaimer { font-size: 0.72rem; color: var(--muted); line-height: 1.5; margin-top: 0.85rem; text-align: center; }

/* ── FOOTER ── */
.footer { background: var(--ink); padding: 4rem 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer .wordmark { color: var(--white); font-size: 1.1rem; }
.footer .wordmark__uk { color: var(--mint); }
.footer .wordmark__rest { color: rgba(255,255,255,0.8); }
.footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.42); margin-top: 0.6rem; line-height: 1.55; max-width: 220px; }
.footer__col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 0.85rem; }
.footer__links { list-style: none; }
.footer__link { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.52); padding: 0.28em 0; transition: color var(--transition); }
.footer__link:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ── PAGE HERO (About / FAQ) ── */
.page-hero { background: var(--cream); padding: 5rem 0 4rem; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 1rem; }
.page-hero__title em { font-style: italic; color: var(--forest); }
.page-hero__sub { font-size: 1.05rem; color: var(--slate); line-height: 1.7; max-width: 580px; }

/* ── PROSE (About) ── */
.page-body { padding: 5rem 0; }
.prose { font-size: 1.02rem; line-height: 1.8; color: var(--slate); }
.prose h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin: 2.5rem 0 0.85rem; letter-spacing: -0.02em; }
.prose p { margin-bottom: 1.25rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--forest); }
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.5rem; }
.value { background: var(--mist); border-radius: var(--radius-lg); padding: 1.25rem; }
.value__title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.value__desc { font-size: 0.85rem; color: var(--slate); line-height: 1.5; }

/* ── FAQ ── */
.faq-section { padding: 5rem 0; }
.faq-category { margin-bottom: 3rem; }
.faq-category__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--forest); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--mist); }
details.faq-item { border-bottom: 1px solid var(--mist); }
details.faq-item summary { cursor: pointer; padding: 1.1rem 0; font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; user-select: none; line-height: 1.4; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--sage); flex-shrink: 0; font-weight: 300; transition: transform 0.2s ease; }
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__answer { padding: 0 0 1.1rem; font-size: 0.92rem; color: var(--slate); line-height: 1.75; }
.faq-item__answer p { margin-bottom: 0.75rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer strong { color: var(--ink); }
.faq-cta { background: var(--mist); border-radius: var(--radius-xl); padding: 2.5rem; margin-top: 2rem; text-align: center; }
.faq-cta__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.faq-cta__sub { font-size: 0.95rem; color: var(--slate); margin-bottom: 1.25rem; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__inner, .difference__inner, .get__inner,
  .hosting__inner, .apply__inner, .qualify__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .how__connector { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner > :first-child { grid-column: 1 / -1; }
  .get__visual, .apply__intro { position: static; }
  .mockup { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .hero { padding-top: 3rem; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .difference, .how, .get, .qualify, .hosting, .apply { padding: 4rem 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
