/* ===================================================================
   Murkins Systems — stylesheet
   Light theme, warm orange accent, modern contractor-marketing site
   =================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --bg:        #ffffff;
  --bg-alt:    #f3f6fc;
  --ink:       #15233f;
  --ink-soft:  #5c6a82;
  --line:      #e1e7f2;
  --accent:    #2b5fd6;
  --accent-dk: #1d49ab;
  --accent-sf: #eaf0fe;
  --accent-lt: #7aa2ff;
  --gold:      #f5a623;
  --dark:      #16243f;
  --darker:    #101c33;
  --navy:      #16243f;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 40px -22px rgba(20, 17, 14, .35);
  --shadow-sm: 0 6px 18px -10px rgba(20, 17, 14, .3);
  --maxw:      1140px;
  --sans: "Sora", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: "Sora", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 780px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font: 600 .95rem/1 var(--sans);
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px -12px var(--accent); }
.btn--primary:hover { background: var(--accent-dk); transform: translateY(-2px); }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost { color: var(--ink); background: transparent; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ===== Top bar ===== */
.topbar {
  background: var(--dark);
  color: #f3ede4;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: .55rem 1rem;
}
.topbar span { opacity: .92; }
.topbar__inner { display: inline-flex; align-items: center; gap: .5rem; opacity: 1; }
.topbar__inner svg { flex: none; background: #fff; border-radius: 3px; padding: 1px; }
.topbar__stars { color: #fbbc05; letter-spacing: .06em; }
.topbar__inner strong { font-weight: 600; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand__name {
  font-size: 1.55rem; font-weight: 800; letter-spacing: -.025em; color: var(--ink);
}
.brand__tag {
  font-size: .82rem; font-weight: 500; letter-spacing: .005em; color: var(--ink-soft);
}
.brand--light .brand__name { color: #fff; }
.brand--light .brand__tag { color: #aeb9cf; }

.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links > a { font-size: .94rem; font-weight: 500; color: var(--ink-soft); transition: color .15s ease; }
.nav__links > a:hover { color: var(--ink); }
.nav__links > a.is-active { color: var(--accent); font-weight: 700; }
/* ===== Products mega-menu ===== */
.nav__item--has-mega { position: relative; display: flex; align-items: center; }
.nav__megabtn {
  display: inline-flex; align-items: center; gap: .3rem;
  background: none; border: none; cursor: pointer;
  font: 500 .94rem var(--sans); color: var(--ink-soft);
  padding: 0; transition: color .15s ease;
}
.nav__megabtn:hover { color: var(--ink); }
.nav__item--has-mega.is-current .nav__megabtn { color: var(--accent); font-weight: 700; }
.nav__megabtn .chev { width: 15px; height: 15px; transition: transform .2s ease; }
.nav__item--has-mega.is-open .nav__megabtn .chev { transform: rotate(180deg); }

.mega {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(720px, 92vw);
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow); padding: 1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav__item--has-mega.is-open .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media (min-width: 761px) {
  .nav__item--has-mega:hover .mega {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.mega__head {
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-soft); padding: .3rem .8rem .7rem;
}
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; }
.mega__card {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .75rem .8rem; border-radius: 12px;
  transition: background .15s ease;
}
.mega__card:hover { background: var(--bg-alt); }
.mega__icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-sf); color: var(--accent-dk);
}
.mega__icon svg { width: 20px; height: 20px; }
.mega__text strong { display: block; font-size: .9rem; color: var(--ink); line-height: 1.25; }
.mega__text span { display: block; font-size: .79rem; color: var(--ink-soft); line-height: 1.35; margin-top: .12rem; }

.nav__cta { display: flex; align-items: center; gap: 1.1rem; }
.nav__login { font-size: .94rem; font-weight: 600; color: var(--ink); }
.nav__cta-mobile { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero (dark, two-column, text left) ===== */
.hero {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(55% 60% at 88% 8%, rgba(43,95,214,.34) 0%, transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(122,162,255,.16) 0%, transparent 60%);
  color: #fff;
  padding: 76px 0 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.hero__content { text-align: left; }
.eyebrow {
  display: inline-block;
  font-weight: 600; font-size: .85rem; letter-spacing: .01em;
  color: #cdd3e6;
  border-left: 3px solid var(--accent);
  padding: .1rem 0 .1rem .85rem;
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero__title .accent { color: var(--accent-lt); display: block; }
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: #b9c0d6;
  max-width: 520px; margin: 0 0 2rem;
}
.hero__actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; margin-bottom: 2.4rem; }

.avatars { display: flex; }
.avatars span {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .74rem; font-weight: 700; color: #fff;
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 1px rgba(255,255,255,.25);
  margin-left: -12px;
  background: hsl(calc(208 + var(--i) * 12), 55%, 52%);
}
.avatars span:first-child { margin-left: 0; }

.ratings { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.ratings--dark .rating strong { color: #cdd3e6; }
.rating { display: flex; flex-direction: column; gap: .2rem; }
.rating strong { font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 1rem; }

/* ----- Hero visual: animated product mockup ----- */
.hero__visual { position: relative; min-height: 380px; }
.mockup {
  position: relative;
  background: #fff; border-radius: 16px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
  overflow: hidden;
  transform: rotate(-1.5deg);
}
.mockup__bar {
  display: flex; gap: 7px; align-items: center;
  padding: 12px 14px; background: #f1eee9; border-bottom: 1px solid var(--line);
}
.mockup__bar span { width: 11px; height: 11px; border-radius: 50%; background: #d6cfc4; }
.mockup__bar span:nth-child(1) { background: #ff5f57; }
.mockup__bar span:nth-child(2) { background: #febc2e; }
.mockup__bar span:nth-child(3) { background: #28c840; }
.mockup__body { padding: 22px 22px 26px; }
.mockup__hero { height: 92px; border-radius: 10px; background: linear-gradient(120deg, var(--navy), #2c365c); margin-bottom: 14px; }
.mockup__row { height: 13px; border-radius: 6px; background: #ece7df; margin-bottom: 10px; }
.mockup__row.short { width: 60%; }
.mockup__btn {
  display: inline-block; margin-top: 10px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .85rem;
  padding: .6rem 1.1rem; border-radius: 8px;
}
.float {
  position: absolute;
  background: #fff; border-radius: 14px;
  box-shadow: var(--shadow);
  padding: .8rem 1rem; font-size: .82rem; color: var(--ink);
  display: flex; flex-direction: column; gap: .15rem;
  animation: floaty 4.5s ease-in-out infinite;
}
.float--reviews { top: -18px; right: -10px; color: var(--gold); font-weight: 700; }
.float--reviews span { color: var(--ink-soft); font-weight: 600; }
.float--call { bottom: -20px; left: -16px; animation-delay: 1.5s; }
.float--call strong { color: var(--ink); }
.float--call span { color: var(--accent-dk); font-weight: 600; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .float { animation: none; } }

/* ===== Inner-page hero ===== */
.page-hero {
  padding: 70px 0 56px;
  text-align: center;
  background:
    radial-gradient(60% 60% at 80% 0%, var(--accent-sf) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 20%, #eef3fd 0%, transparent 55%);
}
.page-hero__inner { max-width: 760px; margin-inline: auto; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.page-hero p { color: var(--ink-soft); font-size: 1.15rem; max-width: 600px; margin-inline: auto; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--accent); font-weight: 600; }

/* ===== Marquee ===== */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 1.1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: scroll 32s linear infinite;
}
.marquee__track span {
  font-weight: 700; color: #9aa6bd; font-size: 1.05rem; white-space: nowrap;
  letter-spacing: -.01em;
}
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* marquee anchored to the bottom of the dark hero */
.marquee--hero {
  margin-top: 3.2rem;
  background: transparent;
  border-block: none;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.3rem 0 1.5rem;
}
.marquee--hero .marquee__track span { color: #7f8cab; }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 660px; margin: 0 auto 3rem; text-align: center; }
.kicker {
  font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .7rem;
}
.section__head h2 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.1; letter-spacing: -.02em;
}
.section__lead { margin-top: 1rem; color: var(--ink-soft); font-size: 1.1rem; }
.center-cta { text-align: center; margin-top: 2.6rem; }
.prose { max-width: 720px; margin-inline: auto; color: var(--ink-soft); font-size: 1.08rem; }
.prose p { margin-bottom: 1.1rem; }

/* ===== Grids / cards ===== */
.grid { display: grid; gap: 1.4rem; }
.grid--features { grid-template-columns: repeat(3, 1fr); }
.grid--quotes { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #ddd5ca; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.6rem;
  background: var(--accent-sf); margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.22rem; margin-bottom: .55rem; letter-spacing: -.01em; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ===== Stats ===== */
.stats { background: var(--dark); color: #fff; padding: 60px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; line-height: 1; }
.stat__plus { color: var(--accent); font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-top: .2rem; }
.stat p { color: #aab4ca; font-size: .92rem; margin-top: .5rem; }

/* ===== Steps ===== */
.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem;
}
.step__num {
  font-family: var(--serif); font-weight: 700; font-size: 2.2rem;
  color: var(--accent);
  display: block; margin-bottom: .6rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.step h3 em { font-style: normal; font-weight: 500; color: var(--ink-soft); font-size: .9rem; }
.step p { color: var(--ink-soft); font-size: .97rem; }

/* ===== Tags / industries ===== */
.tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
}
.tags li {
  background: #fff; border: 1px solid var(--line);
  padding: .6rem 1.1rem; border-radius: 999px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.tags li:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===== Quotes ===== */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: 1rem;
}
.quote .stars { font-size: 1.05rem; }
.quote blockquote { font-size: 1.05rem; line-height: 1.5; flex: 1; }
.quote figcaption strong { display: block; }
.quote figcaption span { color: var(--ink-soft); font-size: .88rem; }

/* ===== Pricing ===== */
.pricing { display: flex; justify-content: center; }
.pricing__card {
  position: relative;
  width: 100%; max-width: 460px;
  background: #fff; border: 2px solid var(--accent);
  border-radius: 24px; padding: 2.6rem 2.2rem 2.2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.pricing__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 999px;
}
.pricing__card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.pricing__price { font-family: var(--serif); font-size: 3.6rem; font-weight: 700; line-height: 1; }
.pricing__price span { font-size: 1.4rem; vertical-align: top; }
.pricing__per { color: var(--ink-soft); font-family: var(--sans); font-weight: 500; }
.pricing__note { color: var(--ink-soft); font-size: .92rem; margin: .6rem 0 1.4rem; }
.pricing__list { list-style: none; text-align: left; display: grid; gap: .65rem; margin-bottom: 1.6rem; }
.pricing__list li { position: relative; padding-left: 1.8rem; font-size: .98rem; }
.pricing__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
}
.pricing__fine { font-size: .76rem; color: #9aa6bd; margin-top: 1rem; }

/* ===== FAQ ===== */
.faq { display: grid; gap: .8rem; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.4rem;
}
.faq__item summary {
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.05rem;
  padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--accent); font-weight: 400;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--ink-soft); padding-bottom: 1.3rem; margin-top: -.2rem; }

/* ===== CTA ===== */
.cta {
  background: var(--dark);
  background-image:
    radial-gradient(60% 80% at 85% 0%, rgba(43,95,214,.40) 0%, transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(122,162,255,.18) 0%, transparent 60%);
  color: #fff; text-align: center;
  padding: 92px 0;
}
.cta__inner { max-width: 640px; margin-inline: auto; }
.cta h2 { font-family: var(--serif); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.02em; }
.cta p { color: #c2cbe0; font-size: 1.12rem; margin: 1rem 0 2rem; }
.cta__form { display: grid; gap: .7rem; grid-template-columns: 1fr 1fr; max-width: 520px; margin: 0 auto; }
.cta__form input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: .95rem 1.1rem; border-radius: 12px; font: 400 1rem var(--sans);
}
.cta__form input::placeholder { color: #8e99b3; }
.cta__form input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.cta__form input[name="trade"] { grid-column: 1 / -1; }
.cta__form button { grid-column: 1 / -1; }
.cta__fine { font-size: .82rem; color: #8e99b3 !important; margin-top: 1rem !important; }

/* ===== Contact form ===== */
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem; box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.contact-form label { font-weight: 600; font-size: .9rem; }
.contact-form input,
.contact-form textarea {
  font: 400 1rem var(--sans);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink); resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-sf); }
.contact-form button { grid-column: 1 / -1; }
.contact-form .cta__fine { grid-column: 1 / -1; }
@media (max-width: 560px) { .contact-form { grid-template-columns: 1fr; padding: 1.6rem; } }

/* ===== Footer ===== */
.footer { background: var(--darker); color: #b9c0d6; padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 3rem; padding-bottom: 48px; }
.footer__brand p { margin: 1rem 0 1.4rem; font-size: .95rem; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__cols h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer__cols a { display: block; color: #97a2b9; font-size: .92rem; padding: .3rem 0; transition: color .15s ease; }
.footer__cols a:hover { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: #7e8aa3; flex-wrap: wrap; gap: .8rem; }
.footer__legal a { margin-left: 1.2rem; }
.footer__legal a:hover { color: #fff; }

/* ===== Per-product page ===== */
.prod-hero { background: var(--bg-alt); padding: 64px 0 52px; text-align: center; }
.prod-hero h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -.02em; line-height: 1.08;
}
.prod-hero p { color: var(--ink-soft); max-width: 620px; margin: 1rem auto 0; font-size: 1.15rem; }
.prod-hero .breadcrumb { margin-bottom: 1rem; }

.prod-demo { display: grid; grid-template-columns: .9fr 1.35fr; gap: 1.8rem; align-items: start; }
.prod-stats { display: grid; gap: 1.1rem; }
.prod-stat {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.5rem 1.5rem; box-shadow: var(--shadow-sm);
}
.prod-stat__num {
  display: block; font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 2.8rem); color: var(--accent); line-height: 1;
}
.prod-stat p { margin-top: .55rem; color: var(--ink-soft); font-size: .98rem; }

.prod-media {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 1.8rem; box-shadow: var(--shadow);
}
.prod-media h3 { text-align: center; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 1.3rem; }
.prod-video {
  position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #2c365c 100%);
  display: grid; place-items: center;
}
.prod-video::after {
  content: "Demo video"; position: absolute; bottom: 12px; left: 16px;
  color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 600;
}
.prod-video.has-video { background: #000; }
.prod-video.has-video::after { content: none; }
.prod-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-video .play {
  width: 70px; height: 70px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--accent); color: #fff; font-size: 1.5rem;
  display: grid; place-items: center; padding-left: 5px;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.5);
  transition: transform .15s ease;
}
.prod-video .play:hover { transform: scale(1.08); }
.prod-feats { list-style: none; display: grid; gap: .7rem; margin-top: 1.6rem; }
.prod-feats li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.prod-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ===== Packages / pricing tiers ===== */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; align-items: stretch; }
.pkg-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 2rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg-card.is-featured { border: 2px solid var(--accent); box-shadow: var(--shadow); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; white-space: nowrap;
}
.pkg-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; }
.pkg-tagline { color: var(--ink-soft); font-size: .88rem; margin-top: .35rem; min-height: 3.4em; }
.pkg-price { font-family: var(--serif); font-weight: 800; font-size: 2.7rem; line-height: 1; margin-top: .6rem; }
.pkg-price small { font-size: 1rem; font-weight: 500; color: var(--ink-soft); font-family: var(--sans); }
.pkg-weekly { color: var(--ink-soft); font-size: .9rem; margin-top: .35rem; }
.pkg-setup {
  font-size: .82rem; margin-top: .7rem; padding: .4rem .7rem; align-self: flex-start;
  background: var(--accent-sf); color: var(--accent-dk); border-radius: 8px; font-weight: 700;
}
.pkg-card .btn { margin: 1.3rem 0; }
.pkg-list { list-style: none; display: grid; gap: .55rem; }
.pkg-list li { position: relative; padding-left: 1.55rem; font-size: .9rem; color: var(--ink); }
.pkg-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }
.pkg-list li.pkg-head {
  padding-left: 0; font-weight: 700; color: var(--ink-soft); font-size: .76rem;
  text-transform: uppercase; letter-spacing: .05em; margin-top: .5rem;
}
.pkg-list li.pkg-head::before { content: ""; }
.pkg-note { text-align: center; color: var(--ink-soft); font-size: .85rem; margin-top: 1.6rem; }

/* comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare th, .compare td { padding: .85rem 1rem; text-align: center; border-bottom: 1px solid var(--line); font-size: .9rem; }
.compare thead th { background: var(--navy); color: #fff; font-weight: 700; }
.compare thead th:first-child { text-align: left; }
.compare thead th small { display: block; font-weight: 500; font-size: .72rem; color: #aeb9cf; }
.compare tbody th { text-align: left; font-weight: 600; color: var(--ink); background: var(--bg-alt); white-space: nowrap; }
.compare td .yes { color: var(--accent); font-weight: 800; }
.compare td .no { color: #c2c8d4; }
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: none; }
.compare tbody tr:hover td, .compare tbody tr:hover th { background: var(--accent-sf); }

/* guarantee strip */
.guarantee { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; text-align: center; }
.guarantee div { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; }
.guarantee .g-ico { color: var(--accent); font-size: 1.25rem; }

/* ===== Google-style reviews ===== */
.rev-badge {
  display: inline-flex; align-items: center; gap: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem 1.5rem; box-shadow: var(--shadow-sm); text-align: left;
}
.rev-badge__g { width: 38px; height: 38px; flex: none; }
.rev-badge__score { font-family: var(--serif); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--ink); }
.rev-badge__stars { color: #fbbc05; font-size: 1.05rem; letter-spacing: .06em; }
.rev-badge__sub { font-size: .85rem; color: var(--ink-soft); margin-top: .2rem; }
.rev-badge__sub strong { color: var(--ink); }
.rev-badge__divider { width: 1px; align-self: stretch; background: var(--line); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.review {
  position: relative; display: flex; flex-direction: column; gap: .75rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.review:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review__head { display: flex; align-items: center; gap: .75rem; padding-right: 2rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.15rem;
}
.review__name { font-weight: 600; font-size: .98rem; color: #202124; line-height: 1.2; }
.review__meta { font-size: .78rem; color: #70757a; margin-top: .1rem; }
.review__g { position: absolute; top: 1.4rem; right: 1.4rem; width: 18px; height: 18px; }
.review__rating { display: flex; align-items: center; gap: .6rem; }
.review__stars { color: #fbbc05; font-size: 1rem; letter-spacing: .05em; }
.review__time { font-size: .8rem; color: #70757a; }
.review__text { color: #3c4043; font-size: .93rem; line-height: 1.55; }
.review__foot {
  margin-top: auto; padding-top: .4rem; display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: #70757a;
}
.review__foot svg { width: 13px; height: 13px; }

@media (max-width: 920px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .reviews { grid-template-columns: 1fr; }
  .rev-badge { flex-wrap: wrap; justify-content: center; text-align: center; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 920px) {
  .grid--features, .grid--quotes, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero__content { text-align: center; }
  .hero__content .eyebrow { border-left: none; padding-left: 0; }
  .hero__sub { margin-inline: auto; }
  .hero__actions, .ratings { justify-content: center; }
  .hero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .prod-demo { grid-template-columns: 1fr; gap: 1.4rem; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-tagline { min-height: 0; }
}

@media (max-width: 760px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 340px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 28px 28px;
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.3);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links > a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__cta-mobile { display: grid; gap: .7rem; margin-top: 1.4rem; }
  .nav__cta-mobile .btn { width: 100%; }

  /* mega-menu becomes an inline accordion on mobile */
  .nav__item--has-mega { flex-direction: column; align-items: stretch; }
  .nav__megabtn {
    width: 100%; justify-content: space-between;
    padding: 1rem 0; border-bottom: 1px solid var(--line);
    font-size: 1.05rem; color: var(--ink); font-weight: 500;
  }
  .mega {
    position: static; transform: none; width: 100%;
    border: none; border-radius: 0; box-shadow: none; padding: 0;
    opacity: 1; visibility: hidden; height: 0; overflow: hidden;
    transition: none;
  }
  .nav__item--has-mega.is-open .mega {
    visibility: visible; height: auto; transform: none;
    padding: .4rem 0 .8rem;
  }
  .mega::before { display: none; }
  .mega__head { padding: .6rem .2rem .4rem; }
  .mega__grid { grid-template-columns: 1fr; gap: 0; }
  .mega__card { padding: .7rem .2rem; }
  .mega__icon { width: 36px; height: 36px; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .grid--features, .grid--quotes, .steps { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 0; }
  .marquee--hero { margin-top: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: center; gap: 1.2rem; }
  .ratings { gap: 1.4rem; justify-content: center; }
  .cta__form { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}
