/*
Theme Name: Scalify Theme
Theme URI: https://scalify.marketing/
Author: Antigravity
Author URI: https://gemini.google.com
Description: WordPress theme converted from Scalify marketing static HTML pages. Fully Elementor ready.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scalifytheme
*/

:root {
  --ink: #15130E;
  --ink-soft: #2A271F;
  --paper: #F7F2E7;
  --paper-2: #EFE7D5;
  --lemon: #FFE92E;
  --lemon-soft: #FFF59B;
  --white: #FFFFFF;
  --line: rgba(21, 19, 14, .12);
  --shadow: 0 18px 50px -18px rgba(21, 19, 14, .45);
  --r: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, .display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .94;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}

nav.scrolled {
  background: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .5);
  padding: 12px 28px;
}

.brand {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: .02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lemon);
  display: inline-block;
}

nav.scrolled .brand,
nav.scrolled .nav-links a {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .01em;
  opacity: .9;
  transition: opacity .2s;
}

.nav-links a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--lemon);
  transition: transform .2s ease, background .2s, color .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.lemon {
  background: var(--lemon);
  color: var(--ink);
  border-color: var(--ink);
}

.btn.lemon:hover {
  background: var(--ink);
  color: var(--lemon);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.btn.ghost:hover {
  background: var(--ink);
  color: var(--lemon);
}

nav .btn {
  padding: 11px 22px;
}

/* Hero Section */
.hero {
  background: var(--lemon);
  padding: 120px 0 74px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lemon-soft) 0%, rgba(255, 245, 155, 0) 70%);
  top: -200px;
  right: -160px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Claim Page Hero grid Gap adjustment */
.template-claim-page .hero-grid {
  gap: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--lemon);
  padding: 9px 18px;
  border-radius: 100px;
  width: fit-content;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 100px);
  max-width: 18ch;
}

.template-claim-page .hero h1 {
  max-width: none;
}

.hero h1 .hl {
  background: var(--ink);
  color: var(--lemon);
  padding: 0 .12em;
  display: inline-block;
  transform: rotate(-1.2deg);
}

.hero p.lead {
  font-size: clamp(17px, 2vw, 21px);
  max-width: 660px;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero p.lead b {
  font-weight: 800;
  color: var(--ink);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--ink);
}

.sticker {
  position: absolute;
  top: 96px;
  right: 64px;
  width: 252px;
  height: 252px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lemon);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: 'Anton';
  font-size: 23px;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transform: rotate(-12deg);
  animation: spinwob 7s ease-in-out infinite;
  box-shadow: var(--shadow), inset 0 0 0 7px var(--ink), inset 0 0 0 9px var(--lemon);
  z-index: 3;
  transition: scale .3s ease, box-shadow .3s ease;
}

.sticker:hover {
  animation-play-state: paused;
  scale: 1.06;
  box-shadow: 0 28px 60px -22px rgba(21, 19, 14, .6), inset 0 0 0 7px var(--ink), inset 0 0 0 9px var(--lemon);
}

@keyframes spinwob {
  0%, 100% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(6deg);
  }
}

/* Sections */
section {
  padding: 96px 0;
  position: relative;
}

.template-claim-page section {
  padding: 84px 0;
}

.tag {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lemon);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.sec-h {
  font-size: clamp(34px, 5.2vw, 68px);
  max-width: 16ch;
}

.template-claim-page .sec-h {
  font-size: clamp(34px, 5.2vw, 62px);
  max-width: 18ch;
}

#book .sec-h {
  max-width: none;
  white-space: nowrap;
}

.sec-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 64ch;
  margin-top: 20px;
}

.template-claim-page .sec-sub {
  margin-top: 18px;
}

.dark {
  background: var(--ink);
  color: var(--white);
}

.dark .tag {
  background: var(--lemon);
}

.dark .sec-h {
  color: var(--white);
}

.dark .sec-h .lem,
.lem {
  color: var(--lemon);
}

.intro-p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  max-width: 70ch;
  margin-top: 22px;
}

.intro-p b {
  color: var(--lemon);
  font-weight: 800;
}

/* Data wall */
.datawall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.dstat {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 32px;
}

.dstat .n {
  font-family: 'Anton';
  font-size: clamp(46px, 6vw, 72px);
  color: var(--lemon);
  line-height: 1;
}

.dstat .l {
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  font-size: 15.5px;
  margin-top: 12px;
}

.dstat .src {
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .4);
  margin-top: 16px;
  text-transform: uppercase;
}

/* Problems Grid */
.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.prob-copy p {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 8px;
}

.queries {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.query {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 15px;
  width: fit-content;
  max-width: 100%;
}

.query svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.prob-illo {
  display: flex;
  justify-content: center;
}

.prob-illo svg {
  width: 100%;
  max-width: 430px;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(21, 19, 14, .16));
}

.prob-illo .float {
  animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.si-row {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.prob-illo.in .si-row {
  opacity: 1;
  transform: none;
}

.prob-illo.in .si-row.r1 {
  transition-delay: .15s;
}

.prob-illo.in .si-row.r2 {
  transition-delay: .3s;
}

.prob-illo.in .si-row.r3 {
  transition-delay: .42s;
}

.si-cursor {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease .75s, transform .45s cubic-bezier(.34, 1.56, .64, 1) .75s;
}

.prob-illo.in .si-cursor {
  opacity: 1;
  transform: none;
}

/* Reasons Section */
.reasons {
  background: var(--paper-2);
}

.card-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.rcard {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r);
  padding: 34px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.rcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.rcard .ic {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: var(--lemon);
  display: grid;
  place-content: center;
  margin-bottom: 22px;
}

.rcard .ic svg {
  width: 48px;
  height: 48px;
  transform-box: fill-box;
  transform-origin: center;
}

.rcard.in .ic svg {
  animation: drawpop .6s cubic-bezier(.34, 1.56, .64, 1) both;
}

.rcard h3 {
  font-size: 23px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.rcard p {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.rcard .stat {
  display: block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--lemon);
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.35;
}

.illo-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes drawpop {
  0% {
    opacity: 0;
    transform: scale(.3) rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.hand {
  transform-box: view-box;
  transform-origin: 20px 22px;
  animation: spin-hand 6s linear infinite;
}

@keyframes spin-hand {
  to {
    transform: rotate(360deg);
  }
}

/* Difference Section */
.diff-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.dcard {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform .25s;
}

.dcard:hover {
  transform: translateY(-6px);
}

.dcard .ck-i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--ink);
  display: grid;
  place-content: center;
  font-family: 'Anton';
  font-size: 23px;
  margin-bottom: 16px;
}

.dcard h3 {
  font-size: 19px;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 8px;
}

.dcard p {
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
}

.photo {
  border-radius: var(--r);
  background: linear-gradient(160deg, var(--lemon), var(--lemon-soft));
  position: relative;
  overflow: hidden;
  padding: 7%;
}

.about-illo svg {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.diff-intro .photo {
  justify-self: end;
  max-width: 470px;
  width: 100%;
}

.about-illo .float {
  animation: floaty 6s ease-in-out infinite;
}

.gline,
.gline2 {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s ease;
}

.about-illo.in .gline {
  transition-delay: .45s;
  stroke-dashoffset: 0;
}

.about-illo.in .gline2 {
  transition-delay: 1.25s;
  stroke-dashoffset: 0;
}

.gtarget {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1) .7s;
}

.about-illo.in .gtarget {
  transform: scale(1);
}

.spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 2.6s ease-in-out infinite;
}

.spark.s2 {
  animation-delay: 1s;
}

@keyframes twinkle {
  0%, 100% {
    transform: scale(.5);
    opacity: .35;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.garea {
  opacity: 0;
  transition: opacity .8s ease .35s;
}

.about-illo.in .garea {
  opacity: 1;
}

.gdot {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse-dot 2.1s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}

/* Process Section */
.how {
  background: var(--paper);
}

.how-list {
  margin-top: 46px;
  border-top: 2px solid var(--ink);
}

.how-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 30px 4px;
  border-bottom: 2px solid var(--ink);
  align-items: start;
}

.how-item .n {
  font-family: 'Anton';
  font-size: 54px;
  line-height: .85;
}

.how-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.how-item p {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 74ch;
}

/* Services Section */
.services {
  background: var(--paper-2);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.svc {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r);
  padding: 32px;
  transition: transform .25s, box-shadow .25s;
}

.svc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.svc .ic {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: var(--lemon);
  display: grid;
  place-content: center;
  margin-bottom: 20px;
}

.svc .ic svg {
  width: 42px;
  height: 42px;
  transform-box: fill-box;
  transform-origin: center;
}

.svc.in .ic svg {
  animation: drawpop .6s cubic-bezier(.34, 1.56, .64, 1) both;
}

.svc h3 {
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.svc p {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* Testimonials / Quotes */
.quotes {
  background: var(--paper);
}

.q-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.qcard {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qcard .stars {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 4px;
}

.qcard>p {
  font-weight: 600;
  font-size: 16.5px;
  line-height: 1.45;
}

.qcard .who {
  font-weight: 800;
  font-size: 14px;
  border-top: 2px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}

.qcard .who span {
  display: block;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 3px;
}

/* No lock section */
.nolock {
  background: var(--ink);
  color: var(--white);
}

.nolock .tag {
  background: var(--lemon);
}

.nolock .sec-h {
  color: var(--white);
}

.nolock p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  max-width: 66ch;
  margin-top: 18px;
}

.nolock-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.nolock-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: start;
}

#problem .nolock-head {
  align-items: start;
}

.nolock-lead {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  max-width: 48ch;
  margin: 0 0 6px;
}

.nolock .sec-h {
  max-width: none;
  font-size: clamp(28px, 3.8vw, 50px);
}

.nolock-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.nolock-item .no {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--ink);
  display: grid;
  place-content: center;
  font-family: 'Anton';
  font-size: 20px;
}

/* Final CTA Section */
.final {
  background: var(--lemon);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lemon-soft), transparent 70%);
  top: -220px;
  left: -120px;
}

.final h2 {
  font-size: clamp(40px, 7vw, 96px);
  position: relative;
}

.final p {
  font-size: 19px;
  font-weight: 600;
  max-width: 56ch;
  margin: 22px auto 30px;
  position: relative;
}

.final .note {
  font-size: 14px;
  font-weight: 800;
  margin-top: 26px;
  letter-spacing: .02em;
  opacity: .75;
}

/* Footer styling */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 40px;
}

.template-claim-page footer {
  color: #B9B3A6;
  padding: 54px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 46px;
  margin-bottom: 46px;
}

footer .brand {
  color: var(--white);
  margin-bottom: 18px;
}

.template-claim-page footer .brand {
  margin-bottom: 14px;
}

footer .brand .dot {
  background: var(--lemon);
}

footer p {
  font-weight: 500;
  font-size: 15px;
  max-width: 46ch;
}

.template-claim-page footer p {
  font-size: 14px;
  line-height: 1.7;
}

footer a.lk {
  color: var(--lemon);
}

footer h4 {
  font-family: 'Anton';
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .04em;
  margin-bottom: 18px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 11px;
}

footer li a {
  font-weight: 600;
  font-size: 15px;
  transition: color .2s;
}

footer li a:hover {
  color: var(--lemon);
}

.foot-bot {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
}

/* Claim Page specific footer overrides */
.template-claim-page footer .fgrid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.template-claim-page footer .fcol h4 {
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.template-claim-page footer .fcol a {
  display: block;
  color: #B9B3A6;
  font-size: 14px;
  padding: 4px 0;
}

.template-claim-page footer .copy {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 12.5px;
  color: #6F695B;
}

/* Booking grid CSS (Claim Page) */
.book-grid {
  display: grid;
  grid-template-columns: 1.55fr .95fr;
  gap: 26px;
  margin-top: 40px;
  align-items: start;
}

.cal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cal-head {
  background: var(--ink);
  color: var(--white);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cal-head .t {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: .01em;
}

.cal-head .pill {
  background: var(--lemon);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px;
}

.cal-body {
  padding: 14px 16px 8px;
}

#my-cal-inline-60-days-of-free-google-ads-management {
  min-height: 560px;
}

.cal-note {
  padding: 6px 22px 20px;
  font-size: 13px;
  color: #6F695B;
}

.side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 233, 46, .16) 0%, rgba(255, 233, 46, 0) 70%);
  top: -120px;
  right: -90px;
}

.offer .eyebrow2 {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lemon);
  margin-bottom: 12px;
}

.offer .big {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  line-height: .98;
  letter-spacing: .005em;
}

.offer .big .lem {
  color: var(--lemon);
}

.offer .sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .75);
  margin-top: 12px;
  line-height: 1.6;
}

.offer .price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}

.offer .price .now {
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  color: var(--lemon);
  line-height: 1;
}

.offer .price .was {
  font-size: 18px;
  color: rgba(255, 255, 255, .45);
  text-decoration: line-through;
}

.offer .price .unit {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

.facts {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px 22px;
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.fact:last-child {
  border-bottom: none;
}

.fact .ic {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--ink);
  display: grid;
  place-content: center;
  font-weight: 900;
  font-size: 14px;
  margin-top: 1px;
}

.fact .ft {
  font-size: 14.5px;
  line-height: 1.5;
}

.fact .ft b {
  display: block;
  font-weight: 800;
  color: var(--ink);
}

.fact .ft span {
  color: var(--ink-soft);
}

/* Reveal effects */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.template-claim-page .reveal {
  transform: translateY(30px);
}

/* Media Queries */
@media(max-width: 960px) {
  .nav-links {
    display: none;
  }
  .diff-intro,
  .prob-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .diff-intro .photo {
    justify-self: center;
  }
  .datawall,
  .card-3,
  .cases .case-grid {
    grid-template-columns: 1fr;
  }
  .svc-grid,
  .q-grid,
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nolock-list {
    grid-template-columns: 1fr;
  }
  .nolock-head {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  .nolock-lead {
    margin-bottom: 0;
  }
  .prob-illo {
    order: -1;
  }
  .sticker {
    position: static;
    order: 9;
    justify-self: center;
    top: auto;
    right: auto;
    margin-top: 8px;
    width: 164px;
    height: 164px;
    font-size: 16px;
    transform: rotate(-8deg);
  }
}

@media(max-width: 900px) {
  .book-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media(max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }
  nav {
    padding: 14px 18px;
  }
  .svc-grid,
  .q-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .how-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .sticker {
    width: 150px;
    height: 150px;
    font-size: 15px;
  }
  #book .sec-h {
    white-space: normal;
  }
}

/* ===== embedded quiz ===== */
#scalify-quiz .sq-card {
  text-align: left;
}

#scalify-quiz {
  --ink: #15130E;
  --ink-soft: #2A271F;
  --paper: #F7F2E7;
  --paper-2: #EFE7D5;
  --lemon: #FFE92E;
  --lemon-soft: #FFF59B;
  --white: #FFFFFF;
  --muted: #6A6253;
  --line: rgba(21, 19, 14, .14);
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto;
}

#scalify-quiz * {
  box-sizing: border-box;
}

#scalify-quiz .sq-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 38px 38px 34px;
  box-shadow: 0 30px 70px -40px rgba(21, 19, 14, .5);
  overflow: hidden;
}

#scalify-quiz .sq-progress {
  height: 8px;
  background: var(--paper-2);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 30px;
}

#scalify-quiz .sq-progress-fill {
  height: 100%;
  width: 0;
  background: var(--lemon);
  border-radius: 100px;
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

#scalify-quiz .sq-screen {
  animation: sqIn .4s ease both;
}

@keyframes sqIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

#scalify-quiz .sq-eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--lemon);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

#scalify-quiz .sq-q {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(26px, 4.4vw, 40px);
  letter-spacing: -.01em;
  margin: 0 0 10px;
}

#scalify-quiz .sq-q .req {
  color: var(--lemon);
  -webkit-text-stroke: 1px var(--ink);
}

#scalify-quiz .sq-sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 52ch;
}

#scalify-quiz .sq-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}

#scalify-quiz .sq-opt {
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 16px 16px 16px 48px;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background-color .2s, transform .15s;
}

#scalify-quiz .sq-opt::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  transition: all .2s;
}

#scalify-quiz .sq-opt:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

#scalify-quiz .sq-opt.selected {
  border-color: var(--ink);
  background: var(--lemon-soft);
}

#scalify-quiz .sq-opt.selected::before {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: inset 0 0 0 3px var(--lemon-soft);
}

#scalify-quiz .sq-field {
  margin-bottom: 14px;
}

#scalify-quiz .sq-field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 7px;
}

#scalify-quiz .sq-field input {
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  outline: none;
  transition: border-color .2s, background-color .2s;
}

#scalify-quiz .sq-field input:focus {
  border-color: var(--ink);
  background: var(--white);
}

#scalify-quiz .sq-field input.err {
  border-color: #D8434E;
  background: #FDF1F1;
}

#scalify-quiz .sq-err {
  color: #D8434E;
  font-weight: 600;
  font-size: 13px;
  margin-top: 4px;
  min-height: 16px;
}

#scalify-quiz .sq-formerr {
  display: none;
  color: #B0303A;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  background: #FDF1F1;
  border: 1px solid #F2C4C8;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 4px;
}

#scalify-quiz .sq-formerr.show {
  display: block;
  animation: sqIn .3s ease both;
}

#scalify-quiz .sq-btn:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
}

#scalify-quiz .sq-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}

#scalify-quiz .sq-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope';
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  padding: 8px 4px;
  transition: color .2s;
}

#scalify-quiz .sq-back:hover {
  color: var(--ink);
}

#scalify-quiz .sq-back[hidden] {
  visibility: hidden;
}

#scalify-quiz .sq-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 15px;
  background: var(--ink);
  color: var(--lemon);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 15px 30px;
  cursor: pointer;
  transition: transform .2s, background-color .2s, color .2s;
}

#scalify-quiz .sq-btn:hover {
  transform: translateY(-2px);
}

#scalify-quiz .sq-btn.lemon {
  background: var(--lemon);
  color: var(--ink);
}

#scalify-quiz .sq-btn.lemon:hover {
  background: var(--ink);
  color: var(--lemon);
}

#scalify-quiz .sq-note {
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

/* intro + end screens */
#scalify-quiz .sq-center {
  text-align: center;
  padding: 8px 0;
}

#scalify-quiz .sq-center .sq-q {
  margin-bottom: 14px;
}

#scalify-quiz .sq-center .sq-sub {
  margin: 0 auto 28px;
}

#scalify-quiz .sq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  background: var(--lemon);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

#scalify-quiz .sq-mark {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--ink);
  display: grid;
  place-content: center;
  font-family: 'Anton';
  font-size: 38px;
  margin: 0 auto 22px;
}

@media (max-width: 560px) {
  #scalify-quiz .sq-card {
    padding: 26px 22px 24px;
    border-radius: 20px;
  }
  #scalify-quiz .sq-options {
    grid-template-columns: 1fr;
  }
}
