/* ==========================================================================
   Pune Appliance Service — Google Ads landing system
   Design language modelled on the Assimox appliance-repair template:
     navy #0b1a3a  ·  cyan #00a7eb  ·  yellow #f1d551
     Barlow (display) + Roboto (text)
   Built with plain CSS + IntersectionObserver instead of the template's
   jQuery/WOW.js/animate.css stack — same motion, ~2% of the payload, which
   is what keeps Ads landing-page experience scoring high.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --navy:        #0b1a3a;
  --navy-2:      #0f2450;
  --navy-3:      #142e63;
  --blue-deep:   #08498f;
  --cyan:        #00a7eb;
  --cyan-dark:   #0089c2;
  --yellow:      #f1d551;
  --green:       #16803c;
  --gray:        #444444;
  --gray-2:      #667085;
  --line:        #e3e8f0;
  --soft:        #f6f8fc;
  --white:       #ffffff;

  --navy-rgb:    11, 26, 58;
  --cyan-rgb:    0, 167, 235;
  --yellow-rgb:  241, 213, 81;

  --font:        'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-2:      'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm:   0 2px 8px rgba(var(--navy-rgb), .06);
  --shadow:      0 10px 40px rgba(var(--navy-rgb), .10);
  --shadow-lg:   0 24px 70px rgba(var(--navy-rgb), .16);

  --radius:      6px;
  --radius-lg:   10px;

  --bar-h:       84px;   /* desktop header height */
  --ease:        cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-2);
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 18px;
}
p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* screen-reader-only, but still crawlable text */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--cyan); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, .78); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--soft { background: var(--soft); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- section heading block (Assimox "— OUR SERVICES" pattern) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font);
  font-size: 15px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; flex: none; }
.eyebrow--yellow { color: var(--yellow); }

.sec-title { font-size: clamp(30px, 4.2vw, 50px); font-weight: 700; margin-bottom: 16px; }
.sec-lead { max-width: 620px; font-size: 17px; }
.sec-head { margin-bottom: 54px; }
.sec-head--split {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.sec-head--center { text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .sec-lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--cyan);
  --btn-fg: #fff;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 34px; border: 0; border-radius: 50px; cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font); font-size: 15px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
  transition: color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
  box-shadow: 0 8px 24px rgba(var(--cyan-rgb), .28);
}
/* the template's signature: a colour panel wipes in from the bottom on hover */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--navy); transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 34px rgba(var(--navy-rgb), .28); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(-1px); }

.btn--yellow { --btn-bg: var(--yellow); --btn-fg: var(--navy); box-shadow: 0 8px 24px rgba(var(--yellow-rgb), .38); }
.btn--yellow::after { background: var(--navy); }
.btn--navy   { --btn-bg: var(--navy); box-shadow: 0 8px 24px rgba(var(--navy-rgb), .3); }
.btn--navy::after { background: var(--cyan); }
.btn--white  { --btn-bg: #fff; --btn-fg: var(--navy); box-shadow: 0 8px 24px rgba(var(--navy-rgb), .18); }
.btn--white::after { background: var(--cyan); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 2px solid rgba(255, 255, 255, .55); box-shadow: none;
}
.btn--ghost::after { background: #fff; }
.btn--ghost:hover { color: var(--navy); border-color: #fff; }
.btn--wide { width: 100%; }
.btn--lg { padding: 20px 40px; font-size: 16px; }
.btn .ico { width: 19px; height: 19px; }

/* ---------- header ---------- */
.topbar {
  background: var(--navy); color: rgba(255, 255, 255, .8);
  font-size: 14px; padding: 9px 0;
}
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item .ico { width: 15px; height: 15px; color: var(--yellow); flex: none; }
.topbar__list { display: flex; gap: 26px; flex-wrap: wrap; }
.badge-live {
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; font-weight: 600;
}
.badge-live .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; flex: none;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, .7); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  70%  { box-shadow: 0 0 0 9px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.header {
  position: sticky; top: 0; z-index: 90;
  background: #fff; border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 26px rgba(var(--navy-rgb), .10); }
.header__row {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  min-height: var(--bar-h);
}

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 46px; height: 46px; border-radius: 10px; flex: none;
  background: linear-gradient(140deg, var(--cyan), var(--navy));
  display: grid; place-items: center; color: #fff;
}
.logo__mark svg { width: 25px; height: 25px; }
.logo__name {
  display: block;
  font-family: var(--font); font-size: 22px; font-weight: 800;
  color: var(--navy); line-height: 1.1; letter-spacing: -.02em;
}
.logo__sub {
  display: block;
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gray-2); line-height: 1.3;
}

.header__cta { display: flex; align-items: center; gap: 14px; }
.callbox { display: inline-flex; align-items: center; gap: 12px; }
.callbox__icon {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(var(--cyan-rgb), .1); color: var(--cyan);
}
.callbox__icon svg { width: 21px; height: 21px; }
.callbox__label { display: block; font-size: 13px; color: var(--gray-2); line-height: 1.3; }
.callbox__num {
  display: block;
  font-family: var(--font); font-size: 21px; font-weight: 800;
  color: var(--navy); line-height: 1.2; letter-spacing: -.01em;
}
.callbox:hover .callbox__num { color: var(--cyan); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding: 82px 0 92px;
  color: rgba(255, 255, 255, .8);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: var(--navy); }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 68% center;
  /* stock interiors are bright and go muddy under a navy wash — deepen first */
  filter: saturate(1.15) contrast(1.12) brightness(.82);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(97deg,
      rgba(11, 26, 58, .97) 0%,
      rgba(11, 26, 58, .94) 38%,
      rgba(11, 26, 58, .78) 58%,
      rgba(11, 26, 58, .58) 78%,
      rgba(11, 26, 58, .48) 100%),
    linear-gradient(to top,
      rgba(11, 26, 58, .85) 0%, rgba(11, 26, 58, 0) 45%);
}
/* faint diagonal texture, echoing the template's angled panels */
.hero__bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(115deg,
    rgba(255, 255, 255, .022) 0 2px, transparent 2px 9px);
}
.hero__row {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(33px, 5vw, 60px);
  font-weight: 800; line-height: 1.04; margin-bottom: 20px;
}
.hero h1 .hl { color: var(--yellow); }
.hero__sub { font-size: 18px; line-height: 1.75; max-width: 540px; margin-bottom: 26px; }
.hero__note {
  font-size: 14.5px; color: rgba(255, 255, 255, .62);
  border-left: 3px solid var(--yellow); padding-left: 14px; margin-bottom: 28px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 50px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13.5px; font-weight: 500; color: #fff;
  backdrop-filter: blur(4px);
}
.chip .ico { width: 15px; height: 15px; color: var(--yellow); flex: none; }

/* ---------- booking form (hero) ---------- */
.bookcard {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bookcard__head {
  background: linear-gradient(135deg, var(--cyan), var(--navy-3));
  color: #fff; padding: 22px 28px 20px; position: relative; overflow: hidden;
}
.bookcard__head::after {
  content: ""; position: absolute; right: -40px; top: -60px;
  width: 170px; height: 170px; border-radius: 50%;
  background: rgba(255, 255, 255, .09);
}
.bookcard__head h2 {
  color: #fff; font-size: 24px; margin: 0 0 4px; position: relative; z-index: 1;
}
.bookcard__head p {
  margin: 0; font-size: 14px; color: rgba(255, 255, 255, .86); position: relative; z-index: 1;
}
.bookcard__body { padding: 24px 28px 28px; }

.field { margin-bottom: 15px; }
.field label {
  display: block; font-family: var(--font); font-size: 13px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px;
}
.field .req { color: #d92d20; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--soft); font-size: 15.5px; color: var(--navy);
  transition: border-color .22s, background .22s, box-shadow .22s;
}
.field textarea { min-height: 84px; resize: vertical; line-height: 1.6; }
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1a3a' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--cyan); background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--cyan-rgb), .13);
}
.field input::placeholder, .field textarea::placeholder { color: #98a2b3; }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #d92d20; background: #fff5f4;
}
.field__err {
  display: none; margin-top: 6px; font-size: 13px; font-weight: 500; color: #d92d20;
}
.field.has-error .field__err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-fine {
  margin-top: 13px; font-size: 12.5px; line-height: 1.6; color: var(--gray-2); text-align: center;
}
.form-fine a { color: var(--cyan); text-decoration: underline; }

.form-note {
  margin-top: 14px; padding: 13px 15px; border-radius: var(--radius);
  font-size: 14.5px; font-weight: 500; display: none;
}
.form-note.is-ok   { display: block; background: #e7f7ee; color: #04663a; border: 1px solid #a6e4c3; }
.form-note.is-err  { display: block; background: #fff2f0; color: #94211a; border: 1px solid #f3b5b0; }

.btn.is-busy { pointer-events: none; opacity: .78; }
.btn.is-busy .btn__spin { display: inline-block; }
.btn__spin {
  display: none; width: 17px; height: 17px; flex: none;
  border: 2.5px solid rgba(255, 255, 255, .35); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* honeypot — bots fill it, humans never see it */
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

/* ---------- trust strip ---------- */
.trust {
  background: var(--navy-2); color: #fff; padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.trust__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item {
  padding: 32px 26px; display: flex; align-items: center; gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}
.trust__item:last-child { border-right: 0; }
.trust__icon {
  width: 50px; height: 50px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: rgba(var(--yellow-rgb), .13); color: var(--yellow);
}
.trust__icon svg { width: 23px; height: 23px; }
.trust__n {
  display: block;
  font-family: var(--font); font-size: 30px; font-weight: 800; color: #fff; line-height: 1;
}
.trust__l { display: block; font-size: 13.5px; color: rgba(255, 255, 255, .66); line-height: 1.4; }

/* ---------- service cards (bordered grid, template pattern) ---------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, .13);
}
.section--soft .svc-grid, .section:not(.section--navy) .svc-grid { border-color: var(--line); }
.svc {
  position: relative; overflow: hidden;
  padding: 42px 34px 38px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  transition: background .4s var(--ease), transform .4s var(--ease);
  display: block;
}
.svc:last-child { border-right: 0; }
.svc::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.svc:hover { background: rgba(255, 255, 255, .045); transform: translateY(-6px); }
.svc:hover::before { transform: scaleX(1); }
.svc__icon {
  display: block;              /* a bare <span> is inline — width/height would be ignored */
  width: 62px; height: 62px; margin-bottom: 22px; color: var(--yellow);
  transition: transform .5s var(--ease);
}
.svc:hover .svc__icon { transform: translateY(-4px) rotate(-5deg) scale(1.06); }
.svc__icon svg { width: 100%; height: 100%; }
.svc h3 { font-size: 23px; color: #fff; margin-bottom: 6px; }
.svc__sub { font-size: 14.5px; color: rgba(255, 255, 255, .58); margin-bottom: 18px; }
.svc__list { margin-bottom: 22px; }
.svc__list li {
  font-size: 14.5px; color: rgba(255, 255, 255, .74); line-height: 1.6;
  padding-left: 22px; position: relative; margin-bottom: 7px;
}
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
}
.svc__more {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--cyan);
}
.svc__more .ico { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.svc:hover .svc__more .ico { transform: translateX(5px); }

/* light variant used on the ads sub-pages */
.svc-grid--light .svc { border-color: var(--line); }
.svc-grid--light .svc h3 { color: var(--navy); }
.svc-grid--light .svc__icon { color: var(--cyan); }
.svc-grid--light .svc__sub { color: var(--gray-2); }
.svc-grid--light .svc__list li { color: var(--gray); }
.svc-grid--light .svc:hover { background: var(--soft); }

/* ---------- problem cards ---------- */
.prob {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.prob::after {
  content: ""; position: absolute; right: -34px; top: -34px;
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(var(--cyan-rgb), .07);
  transition: transform .5s var(--ease);
}
.prob:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(var(--cyan-rgb), .4); }
.prob:hover::after { transform: scale(2.1); }
.prob__icon {
  width: 54px; height: 54px; border-radius: var(--radius); margin-bottom: 18px;
  display: grid; place-items: center; position: relative; z-index: 1;
  background: rgba(var(--cyan-rgb), .1); color: var(--cyan);
}
.prob__icon svg { width: 26px; height: 26px; }
.prob h3 { font-size: 19px; margin-bottom: 8px; position: relative; z-index: 1; }
.prob p { font-size: 14.5px; line-height: 1.7; margin: 0; position: relative; z-index: 1; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__n {
  width: 66px; height: 66px; border-radius: 50%; margin-bottom: 20px;
  display: grid; place-items: center; position: relative; z-index: 2;
  background: #fff; border: 2px dashed var(--cyan); color: var(--cyan);
  font-family: var(--font); font-size: 25px; font-weight: 800;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.step:hover .step__n { background: var(--cyan); color: #fff; border-style: solid; }
.step:not(:last-child)::after {
  content: ""; position: absolute; left: 66px; top: 41px; right: -24px; height: 2px; z-index: 1;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 14.5px; line-height: 1.7; margin: 0; }

/* ---------- angled "why us" band (template's diagonal cut) ---------- */
.why {
  position: relative; overflow: hidden;
  background: var(--blue-deep); color: rgba(255, 255, 255, .84);
  padding: 100px 0;
}
.why__art {
  position: absolute; right: 0; top: 0; bottom: 0; width: 46%; z-index: 0;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}
.why__art img { width: 100%; height: 100%; object-fit: cover; }
.why__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0, 167, 235, .55), rgba(8, 73, 143, .25));
}
.why__inner { position: relative; z-index: 1; max-width: 610px; }
.why h2 { color: #fff; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; margin-top: 34px; }
.why__item { display: flex; gap: 15px; align-items: flex-start; }
.why__ico {
  width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .13); color: var(--yellow);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.why__item:hover .why__ico { transform: translateY(-4px) scale(1.07); background: var(--yellow); color: var(--navy); }
.why__ico svg { width: 22px; height: 22px; }
.why__item h3 { font-size: 18px; color: #fff; margin-bottom: 4px; }
.why__item p { font-size: 14px; line-height: 1.65; margin: 0; color: rgba(255, 255, 255, .72); }

/* ---------- checklist ---------- */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; }
.checks li {
  display: flex; align-items: flex-start; gap: 11px;
  font-family: var(--font); font-weight: 600; font-size: 16px; color: var(--navy);
  line-height: 1.5;
}
.checks .ico { width: 21px; height: 21px; flex: none; color: var(--cyan); margin-top: 2px; }
.section--navy .checks li { color: #fff; }

/* ---------- areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 11px; }
.area {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 19px; border-radius: 50px;
  background: #fff; border: 1px solid var(--line);
  font-size: 14.5px; font-weight: 500; color: var(--navy);
  transition: all .3s var(--ease);
}
.area .ico { width: 14px; height: 14px; color: var(--cyan); flex: none; }
.area:hover {
  background: var(--cyan); border-color: var(--cyan); color: #fff; transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(var(--cyan-rgb), .3);
}
.area:hover .ico { color: #fff; }

/* ---------- CTA band ---------- */
.ctaband {
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-3) 58%, var(--blue-deep) 100%);
  color: rgba(255, 255, 255, .82);
  padding: 54px 0; position: relative; overflow: hidden;
}
.ctaband::after {
  content: ""; position: absolute; right: -90px; top: -90px;
  width: 330px; height: 330px; border-radius: 50%;
  background: rgba(var(--cyan-rgb), .13);
}
.ctaband__row {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap;
}
.ctaband h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 6px; }
.ctaband p { margin: 0; font-size: 16px; }
.ctaband__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ctaband__phone {
  font-family: var(--font); font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  color: #fff; line-height: 1.1; display: inline-flex; align-items: center; gap: 14px;
}
.ctaband__phone .ico { width: 34px; height: 34px; color: var(--yellow); flex: none; }
.ctaband__phone:hover { color: var(--yellow); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 13px; overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq__item.is-open { box-shadow: var(--shadow-sm); border-color: rgba(var(--cyan-rgb), .45); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font); font-size: 17.5px; font-weight: 700; color: var(--navy);
  line-height: 1.45;
}
.faq__q:hover { color: var(--cyan); }
.faq__sign {
  width: 30px; height: 30px; border-radius: 50%; flex: none; position: relative;
  background: rgba(var(--cyan-rgb), .1); transition: background .3s var(--ease), transform .35s var(--ease);
}
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--cyan);
  transform: translate(-50%, -50%); transition: all .3s var(--ease);
}
.faq__sign::before { width: 12px; height: 2px; }
.faq__sign::after  { width: 2px; height: 12px; }
.faq__item.is-open .faq__sign { background: var(--cyan); transform: rotate(180deg); }
.faq__item.is-open .faq__sign::before { background: #fff; }
.faq__item.is-open .faq__sign::after { height: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 24px 22px; margin: 0; font-size: 15.5px; line-height: 1.8; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, .62); padding: 72px 0 0; }
.footer h3, .footer h4 { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 52px; }
.footer__title {
  font-family: var(--font); font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer__title::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--yellow);
}
.footer p, .footer li { font-size: 14.5px; line-height: 1.8; }
.footer__links li { margin-bottom: 9px; }
.footer__links a { transition: color .25s, padding-left .25s; display: inline-block; }
.footer__links a:hover { color: var(--yellow); padding-left: 5px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer__contact .ico { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 5px; }
.footer__contact a:hover { color: var(--yellow); }
.footer__logo { margin-bottom: 20px; }
.footer__logo .logo__name, .footer__logo .logo__sub { color: #fff; }
.footer__logo .logo__sub { color: rgba(255, 255, 255, .5); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px;
}
.footer__bottom a:hover { color: var(--yellow); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- mobile sticky action bar ---------- */
.mobar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy); box-shadow: 0 -6px 24px rgba(var(--navy-rgb), .3);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobar a {
  padding: 13px 6px 12px; text-align: center; color: #fff;
  font-family: var(--font); font-size: 12.5px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.mobar a:last-child { border-right: 0; }
.mobar .ico { width: 21px; height: 21px; }
.mobar__call { background: var(--cyan); }
.mobar__wa   { background: #1faa53; }

/* ---------- back to top ---------- */
.totop {
  position: fixed; right: 22px; bottom: 26px; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--cyan); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(var(--cyan-rgb), .4);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all .35s var(--ease);
}
.totop.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--navy); transform: translateY(-4px); }
.totop svg { width: 20px; height: 20px; }

/* ---------- reveal animations (IntersectionObserver-driven) ---------- */
[data-anim] {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-anim="up"]    { transform: translateY(42px); }
[data-anim="down"]  { transform: translateY(-32px); }
[data-anim="left"]  { transform: translateX(-46px); }
[data-anim="right"] { transform: translateX(46px); }
[data-anim="zoom"]  { transform: scale(.9); }
[data-anim="flip"]  { transform: perspective(900px) rotateX(-14deg); transform-origin: top; }
[data-anim].is-in   { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- misc content bits ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.media:hover img { transform: scale(1.05); }
.media__tag {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--cyan); color: #fff; padding: 20px 26px; border-radius: 0 var(--radius-lg) 0 0;
}
.media__tag .n { display: block; font-family: var(--font); font-size: 34px; font-weight: 800; line-height: 1; }
.media__tag .l { display: block; font-size: 13.5px; line-height: 1.35; }

.pricebox {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--yellow);
  border-radius: var(--radius); padding: 22px 24px;
}
.pricebox h3 { font-size: 19px; margin-bottom: 6px; }
.pricebox p { font-size: 14.5px; margin: 0; }

.brands { display: flex; flex-wrap: wrap; gap: 10px; }
.brand {
  padding: 9px 17px; border-radius: var(--radius); background: var(--soft);
  border: 1px solid var(--line); font-size: 14px; font-weight: 500; color: var(--navy);
}

.notice {
  background: #fffbea; border: 1px solid #f2e3a8; border-radius: var(--radius);
  padding: 16px 20px; font-size: 14.5px; line-height: 1.7; color: #6b5a10;
}

.legal h2 { font-size: 26px; margin-top: 38px; }
.legal h2:first-child { margin-top: 0; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--cyan); text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .hero__row { grid-template-columns: 1fr; gap: 44px; }
  .bookcard { max-width: 560px; }
  .why__art { width: 38%; opacity: .5; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 991px) {
  :root { --bar-h: 72px; }
  .section { padding: 78px 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc { border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .svc-grid--light .svc { border-bottom-color: var(--line); }
  .svc:nth-child(2n) { border-right: 0; }
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2n) { border-right: 0; }
  .trust__item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .step:not(:last-child)::after { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .why__art { display: none; }
  .why__inner { max-width: none; }
  .header__cta .btn { display: none; }
}
@media (max-width: 767px) {
  body { font-size: 15.5px; padding-bottom: 62px; }
  .section { padding: 62px 0; }
  .section--tight { padding: 50px 0; }
  .hero { padding: 46px 0 60px; }
  /* Above-the-fold space is the scarcest thing on an ads landing page.
     Collapse the top bar to one line: keep the availability signal, drop the
     two info items (both are repeated in the hero note and the footer). */
  .topbar { font-size: 12.5px; padding: 7px 0; }
  .topbar__row { justify-content: center; text-align: center; }
  .topbar__list { display: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { border-right: 0; }
  .trust__row { grid-template-columns: 1fr; }
  .trust__item { border-right: 0; padding: 22px 18px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .why__grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer { padding-top: 54px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
  .mobar { display: grid; }
  .totop { bottom: 78px; right: 16px; width: 42px; height: 42px; }
  .header__cta .callbox__label, .header__cta .callbox__num { display: none; }
  .callbox__icon { width: 42px; height: 42px; background: var(--cyan); color: #fff; }
  .sec-head { margin-bottom: 38px; }
  .sec-head--split { display: block; }
  .bookcard__head, .bookcard__body { padding-left: 20px; padding-right: 20px; }
  .ctaband__row { flex-direction: column; text-align: center; align-items: center; }
  .hero__actions .btn { flex: 1 1 100%; }
  .logo__mark { width: 40px; height: 40px; }
  .logo__name { font-size: 19px; }
  .logo__sub { font-size: 9px; letter-spacing: .13em; }
}

/* ---------- print ---------- */
@media print {
  .header, .topbar, .mobar, .totop, .hero__bg, .ctaband { display: none !important; }
  body { color: #000; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
}

/* ---------- designer credit ---------- */
.credit {
  text-align: center;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}
.credit__top {
  /* flex, not inline-flex — inline-flex leaves the two <p>s on one line */
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  color: rgba(255, 255, 255, .40);
  margin: 0 0 11px;
}
.credit__ico { width: 21px; height: 21px; flex: none; }
.credit__by {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  font-family: var(--font); font-size: 19px; font-weight: 800;
  color: #fff; margin: 0; letter-spacing: -.01em;
}
.credit__by a {
  font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  /* solid colour first — it is the fallback anywhere background-clip:text
     is unsupported, and the value browsers paint before the gradient loads */
  color: #ff4f7d;
  transition: opacity .25s var(--ease);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .credit__by a {
    background: linear-gradient(95deg, #ff5fa2 0%, #fa3a63 52%, #ef2b3f 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
}
.credit__by a:hover { opacity: .78; }
.credit__spark { font-size: 18px; line-height: 1; }

@media (max-width: 767px) {
  .credit { padding: 20px 0 24px; }
  .credit__top { font-size: 13.5px; gap: 8px; }
  .credit__ico { width: 18px; height: 18px; }
  .credit__by { font-size: 16px; gap: 8px; }
  .credit__by a { font-size: 18px; }
}
