/*
Theme Name: FindrAI
Theme URI: https://www.findrhost.com/
Author: FindrAI
Author URI: https://www.findrhost.com/
Description: Custom theme for FindrAI — a done-for-you Google Things To Do listing service for tour operators and entertainment venues. Optimised for performance, conversion, and SEO.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: findrai
Tags: one-page, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: #fff;
  background: #1F4FD6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
html { scroll-padding-top: 100px; }

/* Reset any WP / plugin wrappers that add white margins around the body */
body.wp-singular,
body.home,
body.page,
body.blog,
#page,
.site,
.site-content,
#content,
#main {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  max-width: none !important;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }

/* ---------- HERO WRAPPER ---------- */
.hero {
  position: relative;
  min-height: 880px;
  padding: 100px 24px 0;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 600px;
  z-index: -1;
  pointer-events: none;
  display: block;
}
.hero__wave-back {
  fill: #2A5EC9;
  opacity: 0;
  transform: translateY(40px);
  transform-origin: bottom;
  animation: waveRise .9s cubic-bezier(.2,.8,.2,1) .4s forwards;
}
.hero__wave-front {
  fill: #3B82F6;
  opacity: 0;
  transform: translateY(40px);
  transform-origin: bottom;
  animation: waveRise .9s cubic-bezier(.2,.8,.2,1) .7s forwards;
}

.hero__white-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: waveRise 1s cubic-bezier(.2,.8,.2,1) 1.0s forwards;
}

@keyframes waveRise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- NAV ---------- */
.nav-wrap {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 9999;
  max-width: 1480px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-20px);
  animation: navIn .7s cubic-bezier(.2,.8,.2,1) .1s forwards;
  transition: top .25s, transform .25s;
}
.nav-wrap.is-stuck .nav {
  box-shadow: 0 16px 40px rgba(15, 36, 92, .35);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  color: #1f2937;
  border-radius: 80px;
  padding: 14px 18px 14px 32px;
  box-shadow: 0 20px 50px rgba(15, 36, 92, .18);
  z-index: 2;
}

.nav::before,
.nav::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -8px;
  height: 100%;
  background: #fff;
  border-radius: 80px;
  z-index: -1;
  opacity: .55;
  pointer-events: none;
}

.nav::after {
  left: 28px;
  right: 28px;
  bottom: -16px;
  opacity: .25;
  z-index: -2;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  gap: 36px;
  margin-left: 24px;
  font-weight: 500;
  font-size: 16px;
  color: #1f2937;
}
.nav__menu a { padding: 6px 0; transition: color .15s; }
.nav__menu a:hover,
.nav__menu a.is-active { color: #1F4FD6; }

.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__call { text-align: right; line-height: 1.1; }
.nav__call-label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.nav__call-number {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  margin-top: 2px;
}

.nav__call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
}
.nav__call-icon svg { width: 20px; height: 20px; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1F4FD6;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 8px 20px rgba(31, 79, 214, .35);
  cursor: pointer;
}
.nav__cta:hover {
  background: #1a42b3;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 79, 214, .45);
}
.nav__cta svg { width: 14px; height: 14px; }

/* ---------- HERO BODY ---------- */
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1480px;
  margin: 0 auto;
  padding: 60px 24px 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) minmax(0, 0.9fr);
  align-items: start;
  column-gap: 32px;
}

.hero__copy {
  max-width: 480px;
  align-self: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) .35s forwards;
}

.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 2.9vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: #fff;
}

.hero__lede {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 380px;
  margin: 0;
  color: rgba(255,255,255,.92);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) .55s forwards;
}

/* ---------- ROCKET ---------- */
.hero__rocket {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: -260px;
}
.hero__rocket img {
  width: 100%;
  max-width: 880px;
  height: auto;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,.35));
  transform: translateY(120vh) rotate(-8deg);
  opacity: 0;
  animation:
    rocketLaunch 1.8s cubic-bezier(.16,.84,.3,1) 1.4s forwards,
    rocketFloat 5s ease-in-out 3.2s infinite;
}

@keyframes rocketLaunch {
  0% {
    transform: translateY(120vh) rotate(-8deg) scale(.8);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes rocketFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(1deg); }
}

/* ---------- STATS ---------- */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 8px;
}

.stat {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeLeft .7s cubic-bezier(.2,.8,.2,1) forwards;
}
.stat:nth-child(1) { animation-delay: 1.6s; }
.stat:nth-child(2) { animation-delay: 1.8s; }
.stat:nth-child(3) { animation-delay: 2.0s; }

.stat__icon { align-self: center; }
.stat__body { align-self: center; }

.stat::after {
  content: "";
  position: absolute;
  left: 72px;
  right: -8px;
  bottom: -10px;
  height: 1px;
  background: rgba(255,255,255,.25);
}
.stat:last-child::after { display: none; }

.stat__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.stat__icon svg { width: 100%; height: 100%; }

.stat__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

/* ---------- ANIMATIONS ---------- */
@keyframes navIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-wrap,
  .hero__copy,
  .hero__lede,
  .stat,
  .hero__rocket img,
  .hero__wave-back,
  .hero__wave-front,
  .hero__white-bottom {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- ABOUT SECTION ---------- */
.about {
  position: relative;
  background: #fff;
  padding: 260px 24px 160px;
  overflow: hidden;
  isolation: isolate;
}

.about__waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .9;
  animation: wavesDrift 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes wavesDrift {
  0%   { transform: translate3d(-2%, 0, 0) scale(1.05); }
  50%  { transform: translate3d(0, -1%, 0) scale(1.08); }
  100% { transform: translate3d(2%, 0, 0) scale(1.05); }
}

.about__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.about__badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1F4FD6;
  display: inline-block;
}

.about__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: #cbd5e1;
}
.about__title .word {
  display: inline-block;
  color: inherit;
  transition: color .35s ease;
  white-space: pre;
}
.about__title .word.is-active {
  color: #0f172a;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1F4FD6;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 79, 214, .35);
  transition: background .15s, transform .15s, box-shadow .15s;
  cursor: pointer;
}
.about__cta:hover {
  background: #1a42b3;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 79, 214, .45);
}

@media (prefers-reduced-motion: reduce) {
  .about__waves { animation: none; }
}

/* ---------- WORK PROCESS SECTION ---------- */
.process {
  background: #fff;
  padding: 100px 24px 140px;
  color: #0f172a;
}

.process__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.process__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
}
.process__badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1F4FD6;
  display: inline-block;
}

.process__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: #cbd5e1;
}
.process__title .word {
  display: inline-block;
  color: inherit;
  transition: color .35s ease;
  white-space: pre;
}
.process__title .word.is-active {
  color: #0f172a;
}

.process__rocket {
  margin-top: 12px;
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(31, 79, 214, .18));
}

/* ---------- STEPS ---------- */
.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-bottom: 48px;
}
.step:last-child { padding-bottom: 0; }

.step::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}
.step:last-child::before { display: none; }

.step::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: #1F4FD6;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.step.is-active::after { transform: scaleY(1); }
.step:last-child::after { display: none; }

.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #cbd5e1;
  transition: color .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.step.is-active .step__num {
  color: #fff;
  background: #1F4FD6;
  border-color: #1F4FD6;
  box-shadow: 0 0 0 8px rgba(31, 79, 214, .15);
  transform: scale(1.05);
}

.step__content { padding-top: 8px; }

.step__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #cbd5e1;
  letter-spacing: -0.01em;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
  transition: color .35s ease;
}
.step.is-active .step__title { color: #0f172a; }

.step__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 14px 0 0;
  transition: color .35s ease;
}
.step.is-active .step__desc { color: #475569; }

/* ---------- ADVANTAGE SECTION ---------- */
.advantage {
  position: relative;
  background: #f5f6f7;
  padding: 80px 24px 90px;
  overflow: hidden;
  isolation: isolate;
}

.advantage__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  z-index: -1;
}

.advantage__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

/* Cards */
.adv-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0f172a;
  opacity: 0;
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  box-shadow: 0 8px 22px rgba(15, 36, 92, .08);
}

/* Card entrance: slide from 4 corners */
.adv-card--bypass   { transform: translate(-40px, 30px); }
.adv-card--google   { transform: translate(40px, 30px); }
.adv-card--listings { transform: translate(-40px, 40px); }
.adv-card--profit   { transform: translate(40px, 40px); }
.adv-card.is-visible { opacity: 1; transform: translate(0, 0); }
.adv-card:hover { box-shadow: 0 20px 50px rgba(15, 36, 92, .18); }

.adv-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .6s ease;
}
.adv-card:hover .adv-card__img { transform: scale(1.04); }

.adv-card__img--contain {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  padding: 16px;
}

.adv-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.75) 100%);
  z-index: 1;
}

.adv-card__content {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adv-card__content--top {
  justify-content: flex-start;
  flex: 0 0 auto;
}

.adv-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
}
.adv-card__tag svg { width: 12px; height: 12px; }
.adv-card__tag--light { color: #fff; }

.adv-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}
.adv-card__title--light { color: #fff; }

.adv-card__points {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adv-card__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
}
.adv-card__points svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  flex-shrink: 0;
  flex-grow: 0;
}

.adv-card--bypass { grid-column: 1; grid-row: 1; }
.adv-card--google { grid-column: 3; grid-row: 1; }

.adv-card--listings {
  grid-column: 1 / 3;
  grid-row: 2;
  background: #fff;
  min-height: auto;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.adv-card--listings .adv-card__img {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 720px;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 14px;
  image-rendering: -webkit-optimize-contrast;
}

.adv-card--profit {
  grid-column: 3;
  grid-row: 2;
  background: #1f1f24;
  padding: 18px 0 0;
  justify-content: flex-start;
}
.adv-card--profit .adv-card__content {
  padding: 0 18px 12px;
}
.adv-card--profit .adv-card__img--bottom {
  position: relative;
  inset: auto;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0 0 22px 22px;
  margin-top: auto;
}

/* Center column */
.adv-center {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 4px 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1) .2s, transform .8s cubic-bezier(.2,.8,.2,1) .2s;
}
.adv-center.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger card entrance */
.adv-card--bypass   { transition-delay: .05s; }
.adv-card--google   { transition-delay: .15s; }
.adv-card--listings { transition-delay: .25s; }
.adv-card--profit   { transition-delay: .35s; }

/* Text fade-in for center column children */
.adv-center > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.adv-center.is-visible > *      { opacity: 1; transform: translateY(0); }
.adv-center.is-visible > *:nth-child(1) { transition-delay: .25s; }
.adv-center.is-visible > *:nth-child(2) { transition-delay: .35s; }
.adv-center.is-visible > *:nth-child(3) { transition-delay: .45s; }
.adv-center.is-visible > *:nth-child(4) { transition-delay: .60s; }
.adv-center.is-visible > *:nth-child(5) { transition-delay: .75s; }

.adv-center__logo {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
}

.adv-center__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0f172a;
  text-transform: uppercase;
}

.adv-center__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
  max-width: 16ch;
}

.adv-center__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}
.adv-center__checks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.adv-center__checks svg { width: 16px; height: 16px; flex-shrink: 0; }

.adv-center__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 999px;
  text-transform: uppercase;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .25);
  cursor: pointer;
  margin-top: 4px;
}
.adv-center__cta:hover {
  background: #1F4FD6;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 79, 214, .35);
}
.adv-center__cta svg { width: 14px; height: 14px; }

/* ---------- STOP RELYING ON OTAS ---------- */
.otas {
  background: #fff;
  padding: 100px 24px 120px;
  color: #0f172a;
}
.otas__inner { max-width: 1200px; margin: 0 auto; }
.otas__head {
  text-align: center;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.otas__logo { width: 44px; height: 44px; }
.otas__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: #cbd5e1;
  max-width: 18ch;
}
.otas__title .word {
  display: inline-block;
  color: inherit;
  transition: color .35s ease;
  white-space: pre;
}
.otas__title .word.is-active { color: #0f172a; }

.otas__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.otas__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.otas__media.is-visible { opacity: 1; transform: translateY(0); }
.otas__photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.otas__cta-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 260px;
  max-width: calc(100% - 48px);
  background: #1F4FD6;
  color: #fff;
  border-radius: 18px;
  padding: 22px 20px 18px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(15, 36, 92, .35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.otas__cta-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
.otas__cta-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.otas__cta-logo-mark {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  display: block;
}
.otas__cta-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}
.otas__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  transition: background .15s, transform .15s;
}
.otas__cta-btn:hover { background: #000; transform: translateY(-1px); }

.otas__copy {
  display: flex;
  flex-direction: column;
}

.otas__lede {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}
.otas__lede.is-visible { opacity: 1; transform: translateY(0); }
.otas__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.otas__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1), background .2s, box-shadow .2s;
  cursor: default;
}
.otas__list li.is-visible { opacity: 1; transform: translateY(0); }
.otas__list li:hover {
  background: #e0eaff;
  box-shadow: 0 6px 16px rgba(31, 79, 214, .12);
}
.otas__list li[data-slide]:nth-child(1).is-visible { transition-delay: 0s; }
.otas__list li[data-slide]:nth-child(2).is-visible { transition-delay: .12s; }
.otas__list li[data-slide]:nth-child(3).is-visible { transition-delay: .24s; }
.otas__list li[data-slide]:nth-child(4).is-visible { transition-delay: .36s; }
.otas__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- WHAT'S INCLUDED ---------- */
.included {
  background: #fff;
  padding: 0 24px 80px;
}
.included__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 36, 92, .08);
}
.included__left {
  background: #1F4FD6;
  color: #fff;
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .8s, transform .8s;
}
.included__left.is-visible { opacity: 1; transform: translateX(0); }
.included__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.included__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: rgba(255,255,255,.45);
  max-width: 22ch;
}
.included__title .word {
  display: inline-block;
  color: inherit;
  transition: color .35s ease;
  white-space: pre;
}
.included__title .word.is-active { color: #fff; }

.included__right {
  background: #0a0e1a;
  padding: 56px 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
  align-items: start;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.feature.is-visible { opacity: 1; transform: translateY(0); }
.feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(31, 79, 214, .15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

/* ---------- PRICING ---------- */
.pricing {
  background: #eff3fb;
  padding: 100px 24px 120px;
}
.pricing__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pricing__plan,
.pricing__card {
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(15, 36, 92, .06);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.pricing__plan.is-visible,
.pricing__card.is-visible { opacity: 1; transform: translateY(0); }

.pricing__plan h3,
.pricing__card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.pricing__amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing__per {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}
.pricing__plan-tag {
  display: block;
  background: #eff3fb;
  color: #1F4FD6;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.pricing__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}
.pricing__btn {
  display: block;
  text-align: center;
  background: #1F4FD6;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(31, 79, 214, .25);
  transition: background .15s, transform .15s;
}
.pricing__btn:hover { background: #1a42b3; transform: translateY(-2px); }

.pricing__side { display: flex; flex-direction: column; gap: 24px; }
.pricing__muted { font-size: 14px; color: #94a3b8; margin: 0 0 18px; }
.pricing__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #475569;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.pricing__bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing__bullets li {
  font-size: 14px;
  color: #475569;
  position: relative;
  padding-left: 16px;
}
.pricing__bullets li::before {
  content: "•";
  color: #1F4FD6;
  position: absolute;
  left: 0;
  font-weight: 700;
}
.pricing__ghost {
  display: inline-block;
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  transition: border-color .15s, color .15s;
}
.pricing__ghost:hover { border-color: #1F4FD6; color: #1F4FD6; }
.pricing__arrow { color: #1F4FD6; margin-right: 6px; }
.pricing__card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 16px;
}
.pricing__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pricing__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff3fb;
  color: #1F4FD6;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  padding: 100px 24px 120px;
}
.faq__inner { max-width: 900px; margin: 0 auto; }
.faq__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}
.faq__logo { width: 44px; height: 44px; }
.faq__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0f172a;
  text-transform: uppercase;
}
.faq__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #cbd5e1;
  max-width: 14ch;
}
.faq__title .word {
  display: inline-block;
  color: inherit;
  transition: color .35s ease;
  white-space: pre;
}
.faq__title .word.is-active { color: #0f172a; }

.faq__list { list-style: none; margin: 0; padding: 0; }
.faq__item {
  border-bottom: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.faq__item.is-visible { opacity: 1; transform: translateY(0); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 28px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq__q svg {
  background: #f1f5f9;
  border-radius: 50%;
  padding: 8px;
  width: 36px;
  height: 36px;
  transition: transform .3s, background .15s;
  color: #0f172a;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__item.is-open .faq__q svg {
  transform: rotate(180deg);
  background: #1F4FD6;
  color: #fff;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__item.is-open .faq__a { max-height: 200px; }
.faq__a p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  max-width: 720px;
}

/* ---------- CONTACT ---------- */
.contact {
  background: #0a0e1a;
  padding: 80px 0 0;
}
.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contact__left,
.contact__right {
  padding: 60px 56px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.contact__left.is-visible,
.contact__right.is-visible { opacity: 1; transform: translateY(0); }

.contact__left { color: #fff; }
.contact__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.contact__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 28px;
  color: rgba(255,255,255,.4);
}
.contact__title .word {
  display: inline-block;
  color: inherit;
  transition: color .35s ease;
  white-space: pre;
}
.contact__title .word.is-active { color: #fff; }

.contact__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.contact__features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.contact__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin: 0 0 32px;
  max-width: 540px;
}
.contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #fff;
}
.contact__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact__right {
  background: #1F4FD6;
  border-radius: 24px 0 0 0;
  color: #fff;
}
.contact__right h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}
.calendly-inline-widget {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

/* ---------- HAMBURGER ---------- */
.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: background .15s;
  flex-shrink: 0;
}
.nav__burger:hover { background: #e5e7eb; }
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1F4FD6;
  border-radius: 2px;
  transition: transform .25s, opacity .15s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- MOBILE DROPDOWN ---------- */
.nav__mobile {
  position: absolute;
  top: calc(100% + 12px);
  left: 12px;
  right: 12px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(15, 36, 92, .25);
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .25s, transform .25s;
  z-index: 5;
}
.nav__mobile.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav__mobile-link {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  border-radius: 14px;
  transition: background .15s, color .15s;
}
.nav__mobile-link:hover {
  background: #eff3fb;
  color: #1F4FD6;
}
.nav__mobile-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 14px 18px;
  background: #1F4FD6;
  color: #fff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #2563eb;
  color: #fff;
  padding: 24px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
}
.footer__left a {
  color: #fff;
  text-decoration: none;
  transition: opacity .15s;
}
.footer__left a:hover { opacity: .85; text-decoration: underline; }
.footer__contact { color: rgba(255,255,255,.92); }

.footer__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__right a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s, transform .15s;
}
.footer__right a:hover { background: rgba(255,255,255,.32); transform: translateY(-2px); }

/* ---------- FLOATING CALL BUTTON ---------- */
.float-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: #1F4FD6;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(31, 79, 214, .45);
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
  transition: opacity .35s, transform .35s cubic-bezier(.2,.8,.2,1);
}
.float-call.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: callPulse 2.4s ease-in-out 0.5s infinite;
}
.float-call:hover {
  background: #1a42b3;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 44px rgba(31, 79, 214, .55);
}
.float-call svg { flex-shrink: 0; }

@keyframes callPulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(31, 79, 214, .45), 0 0 0 0 rgba(31, 79, 214, .5); }
  50%      { box-shadow: 0 14px 36px rgba(31, 79, 214, .45), 0 0 0 14px rgba(31, 79, 214, 0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .nav__menu { gap: 22px; margin-left: 12px; }
  .nav__call { display: none; }
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 320px;
  }
  .hero__rocket {
    margin-bottom: -160px;
  }
  .hero__rocket img { max-width: 520px; }
  .hero__stats {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 0;
  }
  .stat::after { display: none; }
}

@media (max-width: 760px) {
  .nav { border-radius: 28px; padding: 10px 12px 10px 18px; gap: 8px; }
  .nav__menu { display: none; }
  .nav__call-icon { display: none; }
  .nav__cta { display: none; }
  .nav__logo img { height: 30px; }
  .nav__burger { display: inline-flex; }

  .float-call__text { display: none; }
  .float-call { padding: 14px; right: 16px; bottom: 16px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__left { gap: 12px 18px; font-size: 13px; }

  .hero {
    min-height: auto;
    padding: 110px 16px 140px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 28px 12px 0;
    text-align: center;
    gap: 24px;
  }

  /* Reorder children: copy → stats → rocket */
  .hero__copy   { order: 1; margin: 0 auto; max-width: 100%; }
  .hero__stats  { order: 2; }
  .hero__rocket { order: 3; }

  .hero__title { font-size: clamp(26px, 7.5vw, 34px); }
  .hero__lede { margin-left: auto; margin-right: auto; font-size: 14px; }

  /* Stats: horizontal row, no icons, just text */
  .hero__stats {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
  .stat {
    grid-template-columns: 1fr;
    gap: 4px;
    width: auto;
    flex: 1;
    justify-items: center;
  }
  .stat::after { display: none; }
  .stat__icon { display: none; }
  .stat__body { align-items: center; text-align: center; }
  .stat__num { font-size: 28px; }
  .stat__label { font-size: 11px; line-height: 1.3; }

  /* Rocket: big, centered, bottom, on top of waves */
  .hero__rocket {
    margin-bottom: -120px;
    margin-top: 16px;
    width: 100%;
    position: relative;
    z-index: 5;
  }
  .hero__rocket img {
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }

  .hero__waves { height: 320px; }
  .hero__white-bottom { height: 200px; }

  .about { padding: 100px 20px 100px; }
  .about__title { font-size: clamp(22px, 6vw, 32px); }

  .process { padding: 60px 20px 80px; }
  .process__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process__title { font-size: clamp(28px, 8vw, 38px); }
  .process__rocket { max-width: 240px; align-self: center; }

  .advantage { padding: 60px 16px 80px; }
  .advantage__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .adv-card,
  .adv-card--bypass,
  .adv-card--google,
  .adv-card--listings,
  .adv-card--profit,
  .adv-center {
    grid-column: 1;
    grid-row: auto;
  }
  .adv-card { min-height: 220px; }
  .adv-center { order: -1; padding: 8px 4px 16px; }
  .adv-center__title { font-size: clamp(26px, 7.5vw, 36px); }
  .adv-center__checks {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .adv-card__title { font-size: 18px; }
  .adv-card--profit .adv-card__img--bottom { height: 180px; }

  /* Otas */
  .otas { padding: 60px 16px 70px; }
  .otas__grid { grid-template-columns: 1fr; gap: 32px; }
  .otas__media { overflow: visible; }
  .otas__photo { height: 280px; border-radius: 22px; }
  .otas__cta-card {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    margin: -50px 16px 0;
    padding: 18px 18px 16px;
    z-index: 2;
  }
  .otas__cta-text { font-size: 13px; }
  .otas__cta-logo-text { font-size: 18px; }
  .otas__cta-logo-mark { width: 24px; height: 24px; }
  .otas__cta-btn { font-size: 11px; padding: 11px 16px; }
  .otas__lede { font-size: 18px; margin-bottom: 20px; }
  .otas__list li { font-size: 14px; padding: 12px 18px; }

  /* Included */
  .included { padding: 0 16px 60px; }
  .included__inner { grid-template-columns: 1fr; }
  .included__left, .included__right { padding: 36px 24px; }
  .included__right { grid-template-columns: 1fr 1fr; gap: 24px 16px; }

  /* Pricing */
  .pricing { padding: 60px 16px 70px; }
  .pricing__inner { grid-template-columns: 1fr; }
  .pricing__plan, .pricing__card { padding: 28px; }
  .pricing__amount { font-size: 44px; }

  /* FAQ */
  .faq { padding: 60px 16px 70px; }
  .faq__head { margin-bottom: 36px; }
  .faq__q { font-size: 17px; padding: 22px 0; }
  .faq__q svg { width: 32px; height: 32px; padding: 6px; }

  /* Contact */
  .contact { padding: 40px 0 0; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__left, .contact__right { padding: 40px 20px; }
  .contact__right { border-radius: 0; }
  .contact__features { gap: 12px 16px; }
}

@media (max-width: 1100px) and (min-width: 761px) {
  .advantage__inner {
    grid-template-columns: 1fr 1fr;
  }
  .adv-card--bypass { grid-column: 1; grid-row: 1; }
  .adv-card--google { grid-column: 2; grid-row: 1; }
  .adv-center { grid-column: 1 / -1; grid-row: 2; }
  .adv-card--listings { grid-column: 1; grid-row: 3; }
  .adv-card--profit { grid-column: 2; grid-row: 3; }
}
