/* ==========================================================================
   Grolier Publishers â€” Static Site Stylesheet (light rounded-card theme)
   Palette + layout matched to the live WordPress/Elementor site.
   1) Tokens 2) Reset/base 3) Typography 4) Layout 5) Buttons 6) Header
   7) Hero 8) Circle strip 9) Statement 10) Feature cards (01/02/03)
   11) Marketing 12) Partners 13) Portfolio 14) Page hero 15) Generic grids
   16) Stats 17) Steps 18) Testimonials 19) FAQ 20) Forms 21) Legal
   22) Footer 23) Utilities 24) Responsive
   ========================================================================== */

/* 1) Tokens --------------------------------------------------------------- */
:root {
  --lime: #c2f15e;
  --purple: #8340ee;
  --purple-dark: #6f2ee0;
  --ink: #232323;
  --ink-soft: #4a4a4a;
  --white: #ffffff;
  --bg: #ebebeb;
  --dark: #111010;
  --footer-bg: #050404;
  --border: #d9d9d9;
  --radius-card: 30px;
  --radius-lg: 50px;
  --radius-pill: 100px;
  --container: 1320px;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* 2) Reset / base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, background .25s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* 3) Typography ----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.05; color: var(--ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p { color: var(--ink-soft); }
.eyebrow { display: inline-block; color: var(--purple); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; margin-bottom: 14px; }

/* 4) Layout --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }
.section-head { max-width: 820px; margin: 0 auto 44px; text-align: center; }
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--ink-soft); }

/* number badge like 01 / 02 / 03 */
.num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 92px; padding: 10px 26px; border: 2px solid var(--ink);
  border-radius: var(--radius-pill); font-weight: 700; font-size: 1.5rem; margin-bottom: 24px;
}
.num-badge--light { border-color: rgba(255,255,255,.6); color: #fff; }

/* 5) Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; line-height: 1; cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; opacity: .9; }
.btn:hover { transform: translateY(-3px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--purple); }
.btn--purple { background: var(--purple); color: #fff; }
.btn--purple:hover { background: var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--ink); color: #fff; }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--lime); }
.btn--sm { padding: 12px 22px; font-size: .9rem; }
.btn--sm::after { width: 7px; height: 7px; }

/* 6) Header --------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--bg); }
.site-header > .container { max-width: 1400px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 84px; }
.site-logo img {height: auto;width: 150px;}
.main-nav__list { display: flex; align-items: center; gap: 6px; }
.main-nav__link { font-weight: 500; font-size: .95rem; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: var(--radius-pill); }
.main-nav__link:hover { color: var(--purple); }
.main-nav__item.is-active > .main-nav__link { background: var(--lime); color: var(--ink); font-weight: 600; }
.main-nav__item { position: relative; }
.has-dropdown > .main-nav__link::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: #fff; border-radius: 16px; padding: 10px; box-shadow: 0 20px 45px rgba(0,0,0,.12); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s, transform .25s, visibility .25s; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 10px; font-size: .92rem; color: var(--ink); }
.dropdown a:hover { background: var(--lime); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.call-btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; color: #fff; background: var(--purple); padding: 12px 22px; border-radius: var(--radius-pill); }
.call-btn:hover { background: var(--ink); color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; flex-direction: column; justify-content: center; gap: 6px; border-radius: 50%; background: var(--ink); align-items: center; }
.menu-toggle span { display: block; height: 2px; width: 22px; background: #fff; transition: .3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* 7) Hero ----------------------------------------------------------------- */
.hero { padding: 10px 0 40px; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hero__card { background: var(--lime); border-radius: var(--radius-card); padding: 56px 50px; display: flex; flex-direction: column; justify-content: center; }
.hero__title { font-size: clamp(3rem, 6.4vw, 6rem); margin-bottom: 24px; }
.hero__stat { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.hero__stat img { width: 120px; height: auto; }
.hero__stat strong { font-size: 2rem; font-weight: 800; line-height: 1; }
.hero__stat span { font-size: .95rem; color: var(--ink); font-weight: 500; }
.hero__text { font-size: 1.05rem; color: var(--ink); margin-bottom: 30px; max-width: 420px; font-weight: 500; }
.hero__media { position: relative; border-radius: var(--radius-card); overflow: hidden; min-height: 460px; background: #f3a7ae; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }

/* 8) Circle strip (full-bleed auto-scrolling carousel) -------------------- */
.circle-strip { padding: 30px 0; overflow: hidden; }
.circle-strip__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 45s linear infinite; }
.circle-strip:hover .circle-strip__track { animation-play-state: paused; }
.circle-strip__item { flex: 0 0 auto; width: 216px; height: 216px; border-radius: 50%; overflow: hidden; background: var(--lime); }
.circle-strip__item img { width: 100%; height: 100%; object-fit: cover; }
.circle-strip__item--lime { display: grid; place-items: center; background: var(--lime); }
.circle-strip__item--lime img { width: 60%; height: auto; }

/* 9) Statement ------------------------------------------------------------ */
.statement { padding: 60px 0 40px; }
.statement__text { font-size: clamp(1.6rem, 3.6vw, 3rem); font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; max-width: 1040px; }
.hl { padding: 2px 14px; border-radius: var(--radius-pill); display: inline; -webkit-box-decoration-break: clone; box-decoration-break: clone; line-height: 1.9; }
.hl--purple { background: var(--purple); color: #fff; }
.hl--lime { background: var(--lime); color: var(--ink); }
.rule { height: 1px; background: #c9c9c9; margin: 30px 0 0; }

/* 10) Feature cards (01 / 02) --------------------------------------------- */
.feature { border-radius: var(--radius-lg); padding: 64px 60px; margin-bottom: 24px; }
.feature--white { background: #fff; }
.feature--purple { background: var(--purple); color: #fff; }
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature--purple h2, .feature--purple .feature__body p { color: #fff; }
.feature__title { font-size: clamp(2.4rem, 4.6vw, 4.2rem); margin-bottom: 20px; }
.feature__body p { font-size: 1.02rem; margin-bottom: 28px; max-width: 420px; }
.feature__media { position: relative; display: flex; justify-content: center; align-items: center; }
.feature__media img { max-width: 100%; }
.feature__media--circle { position: relative; }
.feature__circle { width: 340px; height: 340px; border-radius: 50%; overflow: hidden; border: 6px solid #f0a860; margin: 0 auto; }
.feature__circle img { width: 100%; height: 100%; object-fit: cover; }
/* 500+ badge */
.badge-circle { position: absolute; top: 6%; left: 46%; width: 118px; height: 118px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; text-align: center; font-weight: 800; line-height: 1.05; z-index: 3; padding: 10px; }
.badge-circle strong { font-size: 1.7rem; display: block; }
.badge-circle span { font-size: .82rem; font-weight: 600; }

/* 11) Marketing (03) ------------------------------------------------------ */
.marketing { background: var(--lime); border-radius: var(--radius-lg); padding: 64px 50px; text-align: center; }
.marketing__title { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin-bottom: 44px; }
.marketing__grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 30px; align-items: center; text-align: left; }
.marketing__media { text-align: center; }
.marketing__media img { margin: 0 auto; max-width: 100%; }
.mk-item { margin-bottom: 34px; }
.mk-item:last-child { margin-bottom: 0; }
.mk-item h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 2px solid var(--ink); display: inline-block; }
.mk-item p { font-size: .92rem; color: #2f3d16; }
.marketing__col--right { text-align: right; }
.marketing__col--right .mk-item h4 { }

/* --- Phone mockup --- */
.phone-mock { position: relative; width: 300px; max-width: 100%; margin: 0 auto; padding: 12px; border: 2px solid rgba(17,16,16,.55); border-radius: 42px; background: rgba(17,16,16,.03); }
.phone-mock__panel { background: var(--ink); color: #fff; border-radius: 26px; padding: 14px 16px 16px; }
.phone-mock__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pm-grid { color: #fff; opacity: .85; }
.pm-actions { display: flex; gap: 8px; }
.pm-ico { width: 30px; height: 30px; border-radius: 50%; background: #3a3a3a; color: #fff; display: grid; place-items: center; }
.pm-ico--on { background: #fff; color: var(--ink); }
.phone-mock__stories { display: flex; gap: 10px; }
.pm-story { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 0; }
.pm-story small { font-size: .58rem; color: #d6d6d6; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pm-add { width: 46px; height: 46px; border-radius: 50%; background: #3a3a3a; color: #fff; display: grid; place-items: center; font-size: 1.3rem; font-weight: 400; }
.pm-ava { width: 46px; height: 46px; border-radius: 50%; padding: 2px; background: linear-gradient(135deg, var(--purple), var(--lime)); display: block; }
.pm-ava img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; border: 2px solid var(--ink); }
.phone-mock__photo { margin: 12px 0; border-radius: 22px; overflow: hidden; aspect-ratio: 1 / 1; background: #1c1c1c; }
.phone-mock__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 32% 42%; display: block; margin: 0; max-width: none; }
.phone-mock__nav { position: relative; display: flex; align-items: center; justify-content: space-between; background: #fff; border-radius: var(--radius-pill); padding: 12px 22px; box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.pm-nav-ico { color: #6b6b6b; display: grid; place-items: center; }
.pm-nav-ico:first-child { color: var(--purple); }
.pm-nav-ava { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; }
.pm-nav-ava img { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; }
.pm-fab { position: absolute; left: 50%; top: -18px; transform: translateX(-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 1.5rem; font-weight: 400; box-shadow: 0 8px 18px rgba(0,0,0,.28); }

/* 12) Partners ------------------------------------------------------------ */
.partners { padding: 20px 0 40px; }
.marquee { overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 26px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-chip { flex: 0 0 auto; height: 108px; min-width: 230px; padding: 0 40px; border: 1px solid #cfcfcf; border-radius: var(--radius-pill); background: #fff; display: grid; place-items: center; }
.partner-chip img { max-height: 46px; width: auto; }

/* 13) Portfolio ----------------------------------------------------------- */
.portfolio { padding: 40px 0 70px; text-align: center; }
.portfolio__eyebrow { font-size: 1rem; font-weight: 600; margin-bottom: 14px; }
.portfolio__eyebrow .hl--lime { padding: 1px 10px; }
.portfolio__title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 900px; margin: 0 auto 50px; }
.portfolio__row { display: flex; justify-content: center; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.book { width: 220px; text-align: center; margin: 0 auto; }
.book img { width: 100%; border-radius: 10px; box-shadow: 0 18px 30px rgba(0,0,0,.18); }
.book__author { display: inline-block; margin-top: 16px; background: var(--lime); color: var(--ink); font-weight: 600; font-size: .85rem; padding: 7px 18px; border-radius: var(--radius-pill); }
/* homepage portfolio carousel â€” images are self-contained cards (bg + author pill baked in) */
.portfolio-slider { margin-top: 10px; }
.portfolio-slider .slider__slide { width: 240px; }
.portfolio-slider .slider__track { padding: 6px 0 10px; }
.portfolio-slider .book { width: 240px; }
.portfolio-slider .book img { border-radius: 0; box-shadow: none; }

/* 14) Page hero (inner pages) --------------------------------------------- */
.page-hero { padding: 50px 0; }
.page-hero__card { background: var(--lime); border-radius: var(--radius-card); padding: 60px; text-align: center; }
.page-hero h1 { margin-bottom: 12px; }
.breadcrumb { color: var(--ink); font-weight: 500; font-size: .95rem; }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb span { color: var(--purple); }
/* split hero for service pages */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.split__media img { border-radius: var(--radius-card); width: 100%; }
.split--reverse .split__media { order: -1; }

/* 15) Generic grids / cards ----------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border-radius: var(--radius-card); padding: 34px; transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(0,0,0,.10); }
.card__icon { width: 62px; height: 62px; border-radius: 16px; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin-bottom: 20px; font-size: 1.6rem; }
.card__icon img { width: 34px; height: 34px; }
.card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.card p { font-size: .95rem; }
.card__tag { display: inline-block; margin-top: 16px; color: var(--purple); font-weight: 600; font-size: .88rem; }
.media-card { background: #fff; border-radius: var(--radius-card); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.media-card:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(0,0,0,.10); }
.media-card img { width: 100%; height: 220px; object-fit: cover; }
.media-card__body { padding: 26px; }
.media-card__body h3 { margin-bottom: 10px; }
.media-card__body p { font-size: .93rem; }

/* feature-row (alternating text/image) for service pages */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 50px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__media { order: -1; }
.feature-row__media img { border-radius: var(--radius-card); width: 100%; }
.feature-row__body h3 { margin-bottom: 14px; font-size: clamp(1.6rem, 2.8vw, 2.4rem); }

.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { padding: 10px 20px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--border); color: var(--ink); font-size: .9rem; font-weight: 500; }

/* 16) Stats --------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { background: #fff; border-radius: var(--radius-card); padding: 34px 16px; }
.stat__number { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--purple); line-height: 1; }
.stat__label { margin-top: 10px; color: var(--ink-soft); font-size: .95rem; }

/* 17) Steps --------------------------------------------------------------- */
.steps { display: grid; gap: 22px; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.step { background: #fff; border-radius: var(--radius-card); padding: 32px 28px; }
.step__num { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--purple); color: #fff; font-weight: 700; margin-bottom: 18px; }
.step h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step p { font-size: .93rem; }

/* 18) Testimonials -------------------------------------------------------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border-radius: var(--radius-card); padding: 32px; position: relative; }
.testimonial-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 22px; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-card__author strong { display: block; font-size: .98rem; }
.testimonial-card__author span { color: var(--purple); font-size: .82rem; }
.stars { color: #f5b301; margin-bottom: 14px; letter-spacing: 2px; }

/* 19) FAQ ----------------------------------------------------------------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { background: #fff; border-radius: 18px; margin-bottom: 14px; overflow: hidden; }
.faq__question { width: 100%; text-align: left; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq__question::after { content: "+"; font-size: 1.6rem; color: var(--purple); transition: transform .3s; line-height: 1; }
.faq__item.is-open .faq__question::after { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__answer p { padding: 0 26px 22px; color: var(--ink-soft); font-size: .95rem; }

/* tabs + gallery + before/after (portfolio) */
.tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }
.tab-btn { padding: 12px 24px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--border); font-weight: 500; font-size: .92rem; }
.tab-btn.is-active { background: var(--purple); color: #fff; border-color: var(--purple); }
.tab-panel { display: none; } .tab-panel.is-active { display: block; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.gallery img { border-radius: 12px; width: 100%; aspect-ratio: 2/3; object-fit: cover; box-shadow: 0 12px 24px rgba(0,0,0,.12); }
.beforeafter { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.beforeafter__pair { background: #fff; border-radius: var(--radius-card); padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.beforeafter__pair img { border-radius: 12px; }
.beforeafter__pair figcaption { text-align: center; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); margin-top: 8px; }

/* portfolio slider (book carousel) */
.slider { position: relative; }
.slider__viewport { overflow: hidden; }
.slider__track { display: flex; gap: 24px; transition: transform .5s ease; }
.slider__slide { flex: 0 0 auto; }
.book-card { border-radius: 12px; overflow: hidden; box-shadow: 0 18px 30px rgba(0,0,0,.15); }
.book-card img { width: 220px; aspect-ratio: 2/3; object-fit: cover; }
/* self-contained showcase cards (image already has bg + author pill) â€” no crop/shadow */
.book-card--full { box-shadow: none; border-radius: 0; overflow: visible; }
.book-card--full img { width: 240px; aspect-ratio: auto; height: auto; object-fit: contain; }
.slider__nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.slider__btn { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; font-size: 1.2rem; transition: .25s; }
.slider__btn:hover { background: var(--purple); color: #fff; }

/* 20) Forms --------------------------------------------------------------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info__item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-info__item .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--lime); color: var(--ink); display: grid; place-items: center; flex: 0 0 auto; }
.contact-info__item strong { display: block; margin-bottom: 2px; }
.contact-info__item span, .contact-info__item a { color: var(--ink-soft); font-size: .95rem; }
.contact-form { background: #fff; border-radius: var(--radius-card); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-size: .9rem; font-weight: 500; }
.form-control { width: 100%; padding: 14px 18px; border-radius: 14px; background: var(--bg); border: 1px solid var(--border); font-size: .95rem; color: var(--ink); }
.form-control::placeholder { color: #8a8a8a; }
.form-control:focus { outline: none; border-color: var(--purple); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 10px; }

/* 21) Legal / prose ------------------------------------------------------- */
.legal { max-width: 880px; margin: 0 auto; background: #fff; border-radius: var(--radius-card); padding: 46px; }
.legal > p:first-child { font-size: 1.05rem; color: var(--ink); margin-bottom: 24px; }
.legal h2 { margin: 36px 0 12px; font-size: 1.4rem; }
.legal h3 { margin: 22px 0 10px; font-size: 1.1rem; color: var(--purple); }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 24px; margin: 0 0 18px; }
.legal li { color: var(--ink-soft); margin-bottom: 7px; }
.legal a { color: var(--purple); }
.checklist { display: grid; gap: 12px; margin-top: 10px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.checklist li::before { content: "\2713"; color: var(--purple); font-weight: 700; }

/* 21b) Colorful component variants (inner pages) -------------------------- */
:root { --gold: #f0b429; --coral: #e98363; }

/* page-hero card color variants */
.page-hero__card--gold { background: var(--gold); }
.page-hero__card--lime { background: var(--lime); }
.page-hero__card--purple { background: var(--purple); }
.page-hero__card--purple h1, .page-hero__card--purple .breadcrumb, .page-hero__card--purple .breadcrumb span { color: #fff; }
.page-hero__card--coral { background: var(--coral); }
.page-hero__card--coral h1 { color: #fff; }

/* Service hero banner (full-width colored card, text + image) */
.hero-banner { border-radius: var(--radius-lg); padding: 60px; color: #fff; }
.hero-banner--purple { background: var(--purple); }
.hero-banner--coral { background: var(--coral); }
.hero-banner--gold { background: var(--gold); color: var(--ink); }
.hero-banner__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-banner h1 { color: inherit; font-size: clamp(2.4rem, 5vw, 4.4rem); margin-bottom: 18px; }
.hero-banner p { color: inherit; opacity: .92; font-size: 1.05rem; margin-bottom: 26px; max-width: 460px; }
.hero-banner__media img { border-radius: var(--radius-card); width: 100%; }

/* Colored cards (services / benefits) */
.card--purple { background: var(--purple); color: #fff; }
.card--coral { background: var(--coral); color: #fff; }
.card--gold { background: var(--gold); color: var(--ink); }
.card--lime { background: var(--lime); color: var(--ink); }
.card--purple h3, .card--coral h3 { color: #fff; }
.card--gold h3, .card--lime h3 { color: var(--ink); }
.card--purple p, .card--coral p { color: rgba(255,255,255,.9); }
.card--gold p, .card--lime p { color: #33321f; }
.card--purple .card__tag, .card--coral .card__tag { color: var(--lime); }
.card--gold .card__tag, .card--lime .card__tag { color: var(--purple); }
/* colored card with image on top */
.info-card { border-radius: var(--radius-card); overflow: hidden; }
.info-card > img { width: 100%; height: 190px; object-fit: cover; }
.info-card__body { padding: 26px; }
.info-card--purple { background: var(--purple); color: #fff; }
.info-card--gold { background: var(--gold); color: var(--ink); }
.info-card--coral { background: var(--coral); color: #fff; }
.info-card--lime { background: var(--lime); color: var(--ink); }
.info-card h3 { color: inherit; margin-bottom: 10px; font-size: 1.25rem; }
.info-card p { color: inherit; opacity: .92; font-size: .93rem; }
.info-card small { display: block; margin-top: 14px; font-weight: 600; opacity: .95; }

/* showcase card: image fill + label pill at bottom (About difference) */
.showcase-card { position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 3/4; }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.showcase-card span { position: absolute; left: 14px; right: 14px; bottom: 14px; background: #fff; color: var(--ink); font-weight: 600; font-size: .9rem; padding: 12px 16px; border-radius: 14px; }

/* feature block extra colors */
.feature--coral { background: var(--coral); color: #fff; }
.feature--gold { background: var(--gold); color: var(--ink); }
.feature--coral h2, .feature--coral .feature__body p { color: #fff; }
.feature--gold h2, .feature--gold .feature__body p { color: var(--ink); }

/* quote/stat band (gold block with big centered text) */
.quote-band { background: var(--gold); border-radius: var(--radius-lg); padding: 70px 50px; text-align: center; }
.quote-band .eyebrow { color: var(--ink); }
.quote-band h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); max-width: 900px; margin: 0 auto; }

/* stats with dividers (service pages) */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-row .stat { background: transparent; border-radius: 0; border-left: 1px solid var(--border); padding: 20px 24px; text-align: left; }
.stats-row .stat:first-child { border-left: none; }

/* process image cards (photo + caption bubble) */
.process-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-cards img { border-radius: var(--radius-card); width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* 22) Footer -------------------------------------------------------------- */
.site-footer { background: var(--footer-bg); color: #fff; border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin-top: 20px; padding: 70px 0 0; }
.footer-cta { text-align: left; margin-bottom: 50px; }
.footer-cta h2 { color: var(--lime); font-size: clamp(2.4rem, 5vw, 4.6rem); margin-bottom: 16px; }
.footer-cta p { color: #cfcfcf; max-width: 520px; margin-bottom: 24px; }
.footer-cta .pill-link { display: inline-flex; align-items: center; gap: 10px; background: #1b1a1a; color: #fff; padding: 14px 26px; border-radius: var(--radius-pill); font-weight: 500; }
.footer-cta .pill-link:hover { background: var(--purple); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 46px; }
.footer-brand img { height: 34px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { color: #b8b8b8; font-size: .92rem; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-weight: 600; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #b8b8b8; font-size: .93rem; }
.footer-links a:hover { color: var(--lime); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { display: inline-flex; align-items: center; gap: 8px; background: #1b1a1a; color: #fff; padding: 10px 16px; border-radius: var(--radius-pill); font-size: .82rem; }
.social-links a:hover { background: var(--purple); }
.footer-subscribe .form-control { background: #1b1a1a; border-color: #2a2929; color: #fff; margin-bottom: 12px; }
.footer-subscribe .form-control::placeholder { color: #8a8a8a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .88rem; color: #b8b8b8; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: #b8b8b8; font-size: .88rem; }
.footer-bottom a:hover { color: var(--lime); }

/* 23) Utilities ----------------------------------------------------------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* 24) Responsive ---------------------------------------------------------- */
@media (max-width: 992px) {
  .hero__grid, .feature__grid, .split, .contact-wrap, .feature-row, .feature-row--reverse { grid-template-columns: 1fr; }
  .feature-row__media, .split--reverse .split__media { order: 0; }
  .marketing__grid { grid-template-columns: 1fr; }
  .marketing__col--right { text-align: left; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .steps--3, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats, .stats-row, .process-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat { border-left: none; }
  .hero-banner__grid { grid-template-columns: 1fr; }
  .hero-banner, .quote-band { padding: 44px 30px; }
  .beforeafter { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__card { padding: 40px 32px; }
  .feature { padding: 44px 32px; }
  .feature__circle { width: 280px; height: 280px; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-nav { position: fixed; inset: 84px 0 0 auto; width: min(320px, 86%); height: calc(100vh - 84px); background: #fff; padding: 24px; transform: translateX(100%); transition: transform .35s ease; overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,.12); }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav__item { width: 100%; }
  .main-nav__link { width: 100%; padding: 14px 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 8px 14px; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .has-dropdown.is-open .dropdown { max-height: 400px; }
  .call-btn span { display: none; }
  .circle-strip__item { width: 120px; height: 120px; }
  .footer-cta h2 { font-size: 2.6rem; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4, .steps--3, .testimonials-grid, .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn { width: 100%; justify-content: center; }
  .hero__title { font-size: 2.8rem; }
  .hero__card { padding: 32px 24px; }
  .hero__text { max-width: 100%; }
  .statement { padding: 40px 0 20px; }
  .statement__text { font-size: 1.5rem; }
  .feature, .marketing, .quote-band, .page-hero__card { padding-left: 24px; padding-right: 24px; }
  .num-badge { font-size: 1.2rem; min-width: 76px; padding: 8px 20px; }
  .book:nth-child(odd) { transform: none; }
}
 