/* ==========================================================================
   StorefrontGrowth — shared styles for service (and future) pages
   Reuses the homepage visual language: beige surface, forest green, orange
   accent, DM Sans / Manrope, rounded pills, soft cards.
   ========================================================================== */
:root {
  --ink: #161714;
  --muted: #696b62;
  --paper: #f6f2e9;
  --paper-2: #eee8db;
  --white: #fffdf8;
  --green: #4f6f52;
  --green-dark: #29412e;
  --lime: #dbea8b;
  --orange: #ed8154;
  --yellow: #f5c85d;
  --line: rgba(22, 23, 20, 0.12);
  --shadow: 0 20px 60px rgba(45, 42, 31, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(219, 234, 139, 0.34), transparent 26rem),
    radial-gradient(circle at 96% 6%, rgba(237, 129, 84, 0.16), transparent 24rem),
    var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--lime); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: "Manrope", sans-serif; line-height: 1.08; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); margin-bottom: 10px; }
p { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-dark);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(237, 129, 84, 0.15); }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; cursor: pointer; text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 13px 30px rgba(22, 23, 20, 0.2); }
.btn-primary:hover { box-shadow: 0 18px 36px rgba(22, 23, 20, 0.26); }
.btn-accent { background: var(--orange); color: #fff; box-shadow: 0 13px 30px rgba(237, 129, 84, 0.28); }
.btn-accent:hover { box-shadow: 0 18px 38px rgba(237, 129, 84, 0.34); }
.btn-secondary { border-color: var(--line); background: rgba(255, 253, 248, 0.62); backdrop-filter: blur(14px); }
.btn-arrow { width: 18px; transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Header / nav ------------------------------------------------------------ */
.header-wrap { position: fixed; inset: 18px 0 auto; z-index: 50; pointer-events: none; }
.nav {
  width: var(--container); min-height: 70px; margin-inline: auto;
  padding: 10px 11px 10px 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border: 1px solid rgba(255,255,255,0.7); border-radius: 22px; background: rgba(246, 242, 233, 0.78);
  box-shadow: 0 12px 40px rgba(33, 32, 26, 0.08); backdrop-filter: blur(18px); pointer-events: auto;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled { background: rgba(255, 253, 248, 0.94); box-shadow: 0 14px 45px rgba(33, 32, 26, 0.14); }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.94rem; font-weight: 600; }
.nav-links > a, .nav-dd > button { position: relative; color: #4f514a; background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.nav-links > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--orange); transition: right 0.25s ease; }
.nav-links > a:hover::after { right: 0; }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd > button svg { width: 12px; transition: transform 0.2s ease; }
.nav-dd:hover > button svg, .nav-dd.open > button svg { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 300px; padding: 10px; display: grid; gap: 2px; opacity: 0; visibility: hidden;
  border: 1px solid var(--line); border-radius: 18px; background: var(--white);
  box-shadow: 0 24px 60px rgba(31,29,23,0.16); transition: opacity 0.2s ease, transform 0.2s ease; z-index: 60;
}
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a { display: block; padding: 9px 12px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; color: #3c3e38; }
.nav-dd-menu a:hover { background: var(--paper); color: var(--green-dark); }
.menu-btn { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--ink); color: white; cursor: pointer; place-items: center; }

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 45; padding: 110px 25px 40px;
  align-content: start; gap: 6px; background: var(--paper); overflow-y: auto;
  transform: translateY(-105%); transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.nav-mobile.open { transform: none; }
.nav-mobile > a, .nav-mobile .m-head { padding: 12px 0; font: 700 1.7rem "Manrope", sans-serif; letter-spacing: -0.04em; border-bottom: 1px solid var(--line); }
.nav-mobile .m-sub { display: grid; padding: 6px 0 14px; border-bottom: 1px solid var(--line); }
.nav-mobile .m-sub a { padding: 8px 0 8px 14px; font-size: 1rem; font-weight: 600; color: #3c3e38; }
.nav-mobile .btn { margin-top: 22px; font-size: 1rem; }

/* Page hero --------------------------------------------------------------- */
.page-hero { padding: 150px 0 70px; }
.page-hero .inner { max-width: 820px; }
.page-hero .crumbs { font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 18px; }
.page-hero .crumbs a:hover { color: var(--green-dark); }
.page-hero p.lede { font-size: clamp(1.08rem, 1.5vw, 1.3rem); max-width: 640px; margin: 0 0 30px; }

/* Intro block ------------------------------------------------------------- */
.intro-block { max-width: 760px; }
.intro-block h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.intro-block p { font-size: 1.08rem; }
.intro-block .pull { margin-top: 18px; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em; color: var(--green-dark); }

/* Covered cards ----------------------------------------------------------- */
.covered-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.covered-card {
  padding: 24px 22px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: rgba(255,253,248,0.7); display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.covered-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--white); }
.covered-card .ic { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--lime); color: var(--green-dark); flex: none; }
.covered-card .ic svg { width: 22px; }
.covered-card strong { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--ink); }
.covered-card small { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* Benefits list ("What you get") ------------------------------------------ */
.benefits {
  background: var(--green-dark); color: var(--white); border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
}
.benefits h2 { color: var(--white); }
.benefits .sub { color: #c9d6c4; max-width: 620px; margin-bottom: 30px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 34px; }
.benefit-item { display: flex; gap: 13px; align-items: flex-start; padding: 6px 0; }
.benefit-item .tick { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--green-dark); margin-top: 2px; }
.benefit-item .tick svg { width: 15px; }
.benefit-item span { color: #eef1e8; font-weight: 500; }

/* Without-it section ------------------------------------------------------ */
.without {
  border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.5); padding: clamp(28px, 4vw, 44px); max-width: 820px;
}
.without h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.without p { font-size: 1.08rem; color: #55534b; }
.without p + p { margin-top: 14px; }
.without .pull { margin-top: 20px; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em; color: var(--ink); }

/* Final CTA --------------------------------------------------------------- */
.cta-band { padding: 30px 0 20px; }
.cta-card {
  position: relative; overflow: hidden; border-radius: 40px; background: var(--orange); color: var(--ink);
  padding: clamp(40px, 7vw, 80px); display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.cta-card h2 { color: var(--ink); font-size: clamp(2.2rem, 5vw, 4rem); max-width: 780px; position: relative; z-index: 2; }
.cta-card p { color: #4a3227; font-size: 1.1rem; max-width: 560px; position: relative; z-index: 2; margin-bottom: 10px; }
.cta-card .btn { position: relative; z-index: 2; }
.cta-shape { position: absolute; border-radius: 50%; border: 55px solid rgba(255,255,255,0.2); }
.cta-shape.one { width: 360px; aspect-ratio: 1; right: -80px; top: -110px; }
.cta-shape.two { width: 220px; aspect-ratio: 1; right: 20%; bottom: -120px; border-width: 38px; }

/* FAQ --------------------------------------------------------------------- */
.faqs { max-width: 820px; }
.faqs details { border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,253,248,0.7); padding: 0 22px; margin-bottom: 12px; }
.faqs summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: "Manrope", sans-serif; font-weight: 700; letter-spacing: -0.02em; font-size: 1.05rem; color: var(--ink); }
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after { content: "+"; font-size: 1.6rem; line-height: 1; color: var(--orange); transition: transform 0.2s ease; flex: none; }
.faqs details[open] summary::after { transform: rotate(45deg); }
.faqs details p { padding: 0 0 22px; margin: 0; max-width: 680px; }

/* Related services -------------------------------------------------------- */
.related h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.related-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,253,248,0.7); display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: "Manrope", sans-serif; font-weight: 700; letter-spacing: -0.02em; transition: 0.25s ease; }
.related-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.related-card svg { width: 18px; flex: none; color: var(--orange); }

/* Footer ------------------------------------------------------------------ */
footer { padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 0.75fr); gap: 35px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer-brand .brand-logo { height: 30px; }
.footer-brand p { max-width: 360px; margin: 18px 0 0; }
.footer-col h4 { margin-bottom: 16px; font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; color: var(--muted); }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 0.84rem; }

/* Modal ------------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(18,18,15,0.64); backdrop-filter: blur(12px); }
.modal.open { display: grid; }
.modal-card { width: min(620px, 100%); max-height: 90vh; overflow-y: auto; padding: clamp(25px, 5vw, 42px); position: relative; border-radius: 30px; background: var(--white); box-shadow: 0 30px 90px rgba(0,0,0,0.28); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--paper-2); cursor: pointer; }
.modal-card h3 { font-size: 2.1rem; padding-right: 35px; }
.contact-form { display: grid; gap: 15px; margin-top: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 7px; font-size: 0.82rem; font-weight: 700; }
.contact-form input, .contact-form select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; outline: none; background: var(--paper); }
.contact-form input:focus, .contact-form select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(79,111,82,0.12); }
.form-success { display: none; padding: 15px; border-radius: 13px; background: rgba(219,234,139,0.5); color: var(--green-dark); font-weight: 700; }
.form-success.show { display: block; }

/* Reveal ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 940px) {
  .nav-links, .nav > .btn-primary:not(.menu-btn) { display: none; }
  .nav .btn-primary.js-open-modal { display: none; }
  .menu-btn { display: grid; }
  .covered-grid { grid-template-columns: 1fr 1fr; }
  .related-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .page-hero { padding: 120px 0 52px; }
  .covered-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .nav-mobile .btn { width: 100%; }
}
