/* ===== Growth Mango — styles ===== */
:root {
  --bg: #fbf7ef;
  --bg-2: #f5f0e4;
  --surface: #ffffff;
  --surface-2: #fffdf6;
  --border: #ece2cf;
  --border-2: #ddd0b6;
  --text: #1b1813;
  --text-soft: #3d362a;
  --muted: #6b6357;
  --muted-2: #928a7a;
  --mango: #c96a00;
  --mango-2: #ff7a1a;
  --grad: linear-gradient(135deg, #ffae00 0%, #ff6a00 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,174,0,.12), rgba(255,106,0,.12));
  --chip: linear-gradient(135deg, rgba(255,174,0,.18), rgba(255,106,0,.18));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(40,25,5,.04), 0 4px 12px rgba(40,25,5,.05);
  --shadow: 0 2px 8px rgba(60,40,10,.05), 0 18px 44px rgba(60,40,10,.09);
  --shadow-lg: 0 24px 70px rgba(60,40,10,.16);
  --maxw: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --font: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --display: 'Plus Jakarta Sans', var(--font);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.05; margin: 0 0 .5em; letter-spacing: -.025em; font-weight: 700; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 820px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--mango); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 12px; top: 12px; }
::selection { background: rgba(255,122,26,.22); color: var(--text); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--primary { background: var(--grad); color: #1a1205; box-shadow: 0 6px 18px rgba(255,106,0,.32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,106,0,.45); }
.btn--ghost { background: var(--surface); border-color: var(--border-2); color: var(--text); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--mango); background: var(--surface-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--glow { animation: pulse 3s var(--ease) infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(255,106,0,.32); }
  50% { box-shadow: 0 6px 34px rgba(255,106,0,.6); }
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(16px);
  background: rgba(251,247,239,.78);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 400; font-size: 18px; letter-spacing: -.02em; }
.brand__logo { height: 44px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); border-radius: 2px; transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Eyebrow / section heads ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--mango); margin: 0 0 18px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(255,106,0,.16); }
.section { padding: 108px 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--border); }
.section--dark { background: radial-gradient(120% 90% at 50% 0%, #ffe9be 0%, var(--bg) 62%); }
.section__head { max-width: 760px; margin: 0 0 56px; }
.section__title { font-size: clamp(30px, 4.6vw, 50px); }
.section__sub { color: var(--muted); font-size: 18px; max-width: 640px; margin-top: 6px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 88px 0 80px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 55% at 78% 6%, rgba(255,122,26,.20), transparent 60%),
    radial-gradient(42% 42% at 12% 14%, rgba(255,174,0,.18), transparent 60%),
    var(--bg);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(60,40,10,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 40%, #000 25%, transparent 82%);
          mask-image: radial-gradient(75% 65% at 50% 40%, #000 25%, transparent 82%);
  opacity: .6;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__content { max-width: 600px; }
.hero__title { font-size: clamp(34px, 5.4vw, 64px); margin: 4px 0 22px; letter-spacing: -.03em; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(17px, 2vw, 20px); color: var(--text-soft); max-width: 560px; }
.hero__sub strong { color: var(--text); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 16px; }
.hero__note { color: var(--muted); font-size: 14px; max-width: 520px; }
.trustbar { display: flex; align-items: center; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.trustbar__stars { color: #00b67a; font-size: 19px; letter-spacing: 2px; line-height: 1; }
.trustbar__label { font-size: 14.5px; color: var(--muted); }
.trustbar__label strong { color: var(--text); }

/* ===== Hero visual ===== */
.hero__visual { position: relative; min-height: 420px; }
.mock { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; }
.mock__bar { display: flex; align-items: center; gap: 6px; padding: 14px 16px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.mock__bar i { width: 11px; height: 11px; border-radius: 50%; }
.mock__bar i:nth-child(1) { background: #ff5f57; }
.mock__bar i:nth-child(2) { background: #febc2e; }
.mock__bar i:nth-child(3) { background: #28c840; }
.mock__url { margin-left: 12px; font-size: 12px; color: var(--muted-2); background: var(--surface); padding: 4px 12px; border-radius: 6px; border: 1px solid var(--border); }
.mock__body { padding: 26px; }
.mock__row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.mock__line--xl { width: 58%; height: 22px; border-radius: 7px; background: linear-gradient(90deg, #2b2520, #4a4036); }
.mock__line--sm { width: 26px; height: 26px; border-radius: 50%; background: var(--grad); }
.mock__chip { margin-left: auto; height: 30px; width: 90px; border-radius: 8px; background: var(--chip); border: 1px solid rgba(255,106,0,.25); }
.mock__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mock__col { height: 96px; border-radius: 12px; background: linear-gradient(160deg, var(--bg-2), var(--surface)); border: 1px solid var(--border); position: relative; }
.mock__col::after { content: ""; position: absolute; top: 14px; left: 14px; right: 14px; height: 8px; border-radius: 4px; background: var(--border-2); width: 60%; }

.float {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 16px 12px 14px; box-shadow: var(--shadow-lg);
  animation: floaty 6s ease-in-out infinite;
}
.float__icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.float__icon--star { background: linear-gradient(135deg, #ffd560, #ffb800); color: #fff; }
.float__icon--phone { background: linear-gradient(135deg, #6dd0a0, #2bb673); color: #fff; }
.float__icon--send { background: var(--grad); color: #fff; }
.float__text { display: flex; flex-direction: column; line-height: 1.3; }
.float__text strong { font-size: 13.5px; color: var(--text); }
.float__text span { font-size: 12px; color: var(--muted); }
.float--review { top: 8px; right: -18px; animation-delay: 0s; }
.float--call { bottom: 70px; left: -26px; animation-delay: 1.2s; }
.float--deal { bottom: -10px; right: 10px; animation-delay: 2.4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== Belief strip ===== */
.belief { padding: 64px 0; background: var(--bg-2); border-block: 1px solid var(--border); }
.belief__inner { max-width: 920px; text-align: center; }
.belief p { font-family: var(--display); font-size: clamp(19px, 2.6vw, 26px); line-height: 1.45; margin: 0; color: #2c281f; }

/* ===== Grids & cards ===== */
.grid { display: grid; gap: 20px; }
.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 {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: rgba(255,106,0,.35); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--chip); color: var(--mango); display: grid; place-items: center; margin-bottom: 18px; border: 1px solid rgba(255,106,0,.18); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 20px; }
.card p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* ===== Features ===== */
.feature {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; overflow: hidden;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(255,106,0,.35); box-shadow: var(--shadow); }
.feature__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.feature__icon { width: 46px; height: 46px; border-radius: 13px; background: var(--chip); color: var(--mango); display: grid; place-items: center; border: 1px solid rgba(255,106,0,.18); }
.feature__icon svg { width: 22px; height: 22px; }
.feature__num { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--muted-2); letter-spacing: .08em; }
.feature h3 { font-size: 22px; }
.feature p { color: var(--muted); }
.feature__list { margin-top: 18px; display: grid; gap: 9px; }
.feature__list li { position: relative; padding-left: 28px; color: var(--text-soft); font-size: 14.5px; }
.feature__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--mango); font-weight: 700; }
.feature--accent { background: linear-gradient(150deg, #fff4d6 0%, #ffe9be 100%); border-color: rgba(255,106,0,.3); display: flex; flex-direction: column; gap: 16px; }
.feature--accent .feature__icon { background: var(--grad); color: #fff; border-color: transparent; }
.feature--accent .feature__num { color: var(--mango); }
.feature--accent p { color: #4a3a1a; }
.feature--accent .btn { align-self: flex-start; margin-top: auto; }

/* ===== Trustpilot ===== */
.trustpilot { margin-bottom: 32px; }
.trustpilot__placeholder {
  text-align: center; padding: 64px 24px; border: 1.5px dashed var(--border-2);
  border-radius: var(--radius); background: var(--surface); color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.trustpilot__stars { color: #00b67a; font-size: 32px; letter-spacing: 3px; margin-bottom: 14px; }
.trustpilot__placeholder p { margin: 6px 0; color: var(--muted); }
.trustpilot__placeholder strong { color: var(--text); font-size: 18px; }
.trustpilot__hint { font-size: 14px; }
.trustpilot__hint code { background: var(--bg-2); padding: 2px 7px; border-radius: 6px; border: 1px solid var(--border); color: var(--mango); }
.reviews-static { margin-top: 24px; }
.quote {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; margin: 0; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.quote:hover { transform: translateY(-6px); border-color: rgba(255,106,0,.35); box-shadow: var(--shadow); }
.quote__stars { color: #00b67a; letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.quote blockquote { margin: 0 0 16px; font-size: 16px; line-height: 1.55; color: var(--text-soft); }
.quote figcaption { color: var(--muted); font-size: 14px; font-weight: 600; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--mango); letter-spacing: .08em; margin-bottom: 14px; }
.step__num::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); margin-right: 10px; vertical-align: middle; }
.step h3 { font-size: 20px; }
.step h3 span { color: var(--muted); font-weight: 500; font-size: 14px; font-family: var(--font); }
.step p { color: var(--muted); margin: 0; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 24px; box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: rgba(255,106,0,.4); box-shadow: var(--shadow); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--display);
  font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--mango); font-size: 24px; font-weight: 400; transition: transform .25s var(--ease); flex-shrink: 0; }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--muted); margin: 0 0 20px; max-width: 680px; }

/* ===== Book CTA ===== */
.cta { position: relative; padding: 108px 0; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 70% at 50% 40%, rgba(255,122,26,.22), transparent 60%), var(--bg);
}
.cta__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta__title { font-size: clamp(34px, 5.5vw, 58px); margin-bottom: 14px; }
.cta__sub { color: var(--muted); font-size: 18px; margin-bottom: 30px; }
.cta .btn--lg { margin-bottom: 16px; }
.cta__note { color: var(--muted-2); font-size: 14px; margin: 0; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 0 44px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer__brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 400; font-size: 20px; }
.footer__tag { color: var(--muted); max-width: 540px; margin: 0; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.footer__links a:hover { color: var(--mango); }
.footer__copy { color: var(--muted-2); font-size: 13px; margin: 8px 0 0; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--glow, .float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { min-height: 360px; max-width: 460px; }
}
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .hero { padding: 64px 0 56px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 4px; position: absolute;
    top: 74px; left: 0; right: 0; background: var(--surface);
    border-bottom: 1px solid var(--border); padding: 16px 28px 24px; box-shadow: var(--shadow);
  }
  .nav__links.open a { padding: 12px 0; font-size: 17px; }
  .nav__links.open a::after { display: none; }
  .nav__cta.open { display: inline-flex; margin: 8px 0 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .belief { padding: 48px 0; }
  .float--review { right: 8px; }
  .float--call { left: 8px; }
  .container { padding: 0 20px; }
}


