:root {
  --ink: #07111f;
  --ink-soft: #122033;
  --paper: #f7f8fb;
  --white: #ffffff;
  --text: #182337;
  --muted: #667085;
  --line: rgba(15, 31, 54, 0.11);
  --blue: #3d68ff;
  --blue-dark: #274bd6;
  --violet: #8b5cf6;
  --mint: #6ee7c2;
  --gradient: linear-gradient(135deg, #315cff 0%, #7157f5 58%, #9f57ed 100%);
  --heading: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --base-font-size: 16px;
  --base-line-height: 1.75;
  --container-max: 1180px;
  --container: min(var(--container-max), calc(100% - 48px));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 24px 70px rgba(24, 35, 55, 0.1);
  --shadow-sm: 0 12px 30px rgba(24, 35, 55, 0.05);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: var(--base-font-size);
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font: 400 1rem/var(--base-line-height) var(--body);
  -webkit-font-smoothing: antialiased;
}
body::selection {
  background: rgba(61, 104, 255, 0.2);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--heading);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
p {
  color: var(--muted);
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section-padding {
  padding: clamp(4rem, 6.5vw, 6.5rem) 0;
}
.text-center {
  text-align: center;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid rgba(61, 104, 255, 0.45);
  outline-offset: 4px;
}

/* Header */
#site-header {
  position: relative;
  z-index: 1000;
}
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 88px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(247, 248, 251, 0.78);
  border-color: rgba(15, 31, 54, 0.08);
  box-shadow: 0 12px 40px rgba(24, 35, 55, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}
.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-container .brand {
  margin-right: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: default;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--gradient);
  box-shadow: 0 9px 25px rgba(61, 104, 255, 0.24);
  color: var(--white);
  font-size: 0.9rem;
  transition: transform 0.35s var(--ease);
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
}
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}
.brand:hover .brand-logo {
  transform: rotate(-4deg) scale(1.05);
}

/* Common */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 22px;
  height: 2px;
  background: var(--gradient);
}
.section-heading {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 3.5vw, 3.25rem);
}
.section-title {
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 4.25vw, 3.75rem);
}
.section-description {
  max-width: 610px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.gradient-text {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}
.card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 35px rgba(24, 35, 55, 0.045);
  transition:
    transform 0.5s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.5s var(--ease);
}
.card::after {
  position: absolute;
  inset: auto -20% -70% 20%;
  height: 180px;
  border-radius: 50%;
  background: rgba(61, 104, 255, 0.07);
  filter: blur(35px);
  content: "";
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover {
  border-color: rgba(61, 104, 255, 0.28);
  box-shadow: 0 25px 65px rgba(32, 50, 88, 0.11);
  transform: translateY(-8px);
}
.card:hover::after {
  opacity: 1;
}
.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid rgba(61, 104, 255, 0.14);
  border-radius: 14px;
  background: rgba(61, 104, 255, 0.08);
  color: var(--blue);
  font-size: 1.15rem;
  transition:
    transform 0.4s var(--ease),
    background 0.3s,
    color 0.3s;
}
.card:hover .icon-box {
  background: var(--blue);
  color: var(--white);
  transform: rotate(-5deg) scale(1.08);
}
.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease;
}
.btn::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 45%,
    transparent 68%
  );
  content: "";
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:hover::before {
  transform: translateX(120%);
}
.btn i,
.btn span {
  position: relative;
}
.btn-primary {
  background: var(--gradient);
  box-shadow: 0 14px 30px rgba(61, 104, 255, 0.25);
  color: var(--white);
}
.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(61, 104, 255, 0.34);
}
.btn-lg {
  min-height: 60px;
  padding-inline: 31px;
}
.btn-block {
  width: 100%;
}
.section-cta {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.feature-cta {
  margin-top: 1.5rem;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(6.5rem, 12vh, 7.75rem) 0 clamp(2.25rem, 4.5vh, 3.5rem);
  background: radial-gradient(
    circle at 50% 10%,
    #fff 0,
    #f7f8fb 52%,
    #eef2fb 100%
  );
}
.hero-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 104, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 104, 255, 0.038) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  max-width: 980px;
  margin: 0 auto 1.2rem;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  letter-spacing: -0.065em;
}
.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}
.hero-cta-wrapper {
  margin-bottom: 1.75rem;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  animation: float 9s ease-in-out infinite;
}
.hero-orb-one {
  top: 18%;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(139, 92, 246, 0.18);
}
.hero-orb-two {
  right: -80px;
  bottom: 12%;
  width: 220px;
  height: 220px;
  background: rgba(110, 231, 194, 0.17);
  animation-delay: -4s;
}
.social-proof-card {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 20px;
}
.client-avatars {
  display: flex;
  padding-left: 8px;
}
.client-avatars img {
  width: 44px;
  height: 44px;
  margin-left: -9px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(7, 17, 31, 0.12);
  transition: transform 0.3s var(--ease);
}
.client-avatars img:hover {
  z-index: 2;
  transform: translateY(-5px);
}
.proof-copy {
  display: grid;
  min-width: 118px;
  text-align: left;
}
.proof-copy strong {
  color: var(--ink);
  font: 700 1.15rem/1 var(--heading);
}
.proof-copy span {
  color: var(--muted);
  font-size: 0.76rem;
}
.proof-rating {
  display: flex;
  gap: 7px;
  align-items: center;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}
.proof-rating i {
  color: #f4b740;
}

/* Video */
.video-section {
  background: var(--ink);
}
.video-section .section-title {
  color: var(--white);
}
.video-section .eyebrow {
  color: #9ab0ff;
}
.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: #101b2b;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}
.video-shell > img,
.video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}
.video-shell--embed {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.video-shell--embed iframe {
  aspect-ratio: 16 / 9;
}

/* Process and features */
.process-section {
  background: var(--white);
}
.process-card {
  min-height: 270px;
}
.process-card .card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(24, 35, 55, 0.15);
  font: 700 1rem var(--heading);
}
.process-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}
.process-card p {
  margin-bottom: 0;
}
.performance-section {
  background: linear-gradient(180deg, #f0f4fb, var(--paper));
}
.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}
.feature-row-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.feature-row-reverse .feature-copy {
  order: 2;
}
.feature-copy > p:not(.eyebrow) {
  font-size: 1.02rem;
}
.feature-list {
  display: grid;
  gap: 12px;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 600;
}
.feature-list i {
  margin-right: 10px;
  color: var(--blue);
}
.image-frame {
  position: relative;
  display: grid;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  place-items: center;
}
.image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  content: "";
}
.image-frame img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: contain;
  transition: transform 0.9s var(--ease);
}
.feature-row:hover .image-frame img {
  transform: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 1rem;
  color: var(--blue-dark);
  font-weight: 800;
}
.text-link i {
  transition: transform 0.3s var(--ease);
}
.text-link:hover i {
  transform: translateX(5px);
}
.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  margin-top: 2rem;
}
.stat {
  display: grid;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.stat + .stat {
  border-left: 1px solid var(--line);
}
.stat strong {
  color: var(--ink);
  font: 700 clamp(2.8rem, 5vw, 4.5rem)/1 var(--heading);
  letter-spacing: -0.06em;
}
.stat > span {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials-section {
  background: var(--white);
}
.testimonial-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-icon {
  color: var(--blue);
  font-size: 1.5rem;
}
.testimonial-card > p {
  margin: 1.5rem 0 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testimonial-author__image {
  display: grid;
  flex: 0 0 80px;
  width: 80px;
  height: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  place-items: center;
}
.testimonial-author__image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}
.testimonial-author h3 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.testimonial-author span {
  color: var(--muted);
  font-size: 0.78rem;
}
.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-top: 7px;
  color: #f5b301;
  font-size: 0.78rem;
}

/* Form and Offers Split Layout */
.booking-section {
  background: linear-gradient(135deg, #eaf0ff, #f7f8fb 55%, #efeafd);
}
.booking-heading {
  max-width: 850px;
}
.booking-heading .section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.contact-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  justify-content: center;
}
.contact-note i {
  color: var(--blue);
}
.booking-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}
.booking-split-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.booking-split-right {
  display: flex;
  flex-direction: column;
}

/* ACF Left Column Header Styling */
.scarcity-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.scarcity-eyebrow {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.scarcity-header h3 {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.4;
  margin: 0;
}

/* Stacked Offers List */
.compact-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compact-offer-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid rgba(15, 31, 54, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(24, 35, 55, 0.03);
}
.compact-offer-list li strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}
.compact-offer-list li span {
  color: #6c7890;
  font-size: 0.95rem;
  font-weight: 500;
}

/* New ACF Bottom Text Styling */
.booking-left-footer-text {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.youform-embed {
  width: 100%;
  min-height: 700px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.youform-embed > [data-youform-embed],
.youform-embed iframe {
  display: block;
  width: 100% !important;
  min-height: 700px;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq-section {
  background: var(--white);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
}
.faq-accordion {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 1.5rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary i {
  color: var(--blue);
  font-size: 0.8rem;
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary i {
  transform: rotate(45deg);
}
.faq-item p {
  margin: 0;
  padding: 0 3rem 1.6rem 0;
}

/* Final CTA */
.final-cta-section {
  position: relative;
  display: grid;
  min-height: min(54rem, 58svh);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(139, 92, 246, 0.14), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(110, 231, 194, 0.16), transparent 26%),
    linear-gradient(135deg, #f7f8fb, #eef2fb);
}
.final-cta-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 104, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 104, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}
.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.final-cta-content .section-title {
  max-width: 850px;
  margin-inline: auto;
}
.final-cta-content .section-description {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 1.5rem;
  background: #050c16;
  color: #8d9aad;
}
.site-footer::before {
  position: absolute;
  top: -260px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(61, 104, 255, 0.13);
  filter: blur(50px);
  content: "";
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.9fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
.footer-brand {
  margin-bottom: 1.4rem;
  color: var(--white);
}
.footer-intro p {
  max-width: 350px;
  color: #8d9aad;
  font-size: 0.9rem;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #b4c0d0;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s;
}
.social-links a:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-4px);
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
}
.footer-column h2 {
  margin-bottom: 0.65rem;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-column a {
  transition:
    color 0.2s,
    transform 0.25s;
}
.footer-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.76rem;
}
.footer-bottom p {
  margin: 0 auto 0 0;
  color: #667589;
}
.footer-bottom div {
  display: flex;
  gap: 20px;
}
.back-to-top {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s var(--ease);
}
.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-4px);
}

/* Interior templates */
.page-main,
.single-main,
.archive-main,
.error-page {
  min-height: 70vh;
  padding-top: clamp(9rem, 14vw, 12rem);
}
.page-content {
  max-width: 900px;
}
.page-content > p {
  max-width: 720px;
  margin-inline: auto;
}
.page-featured-image {
  margin: 2.5rem 0;
}
.prose-content {
  color: var(--text);
}
.prose-content > * + * {
  margin-top: 1.25em;
}
.prose-content a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Motion */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}
.no-js .animate-on-scroll {
  opacity: 1;
  transform: none;
}
@keyframes float {
  50% {
    transform: translate3d(15px, -22px, 0) scale(1.04);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .grid-3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-cols > :last-child {
    grid-column: 1 / -1;
  }
  .feature-row,
  .feature-row-reverse,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .feature-row-reverse .feature-copy {
    order: 0;
  }
  .feature-copy {
    max-width: 650px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > :last-child {
    grid-column: 2 / -1;
  }
}

@media (min-width: 992px) and (max-height: 900px) {
  .section-padding {
    padding-block: 3.75rem;
  }
  .hero-section {
    padding: 6.25rem 0 2rem;
  }
  .hero-title {
    max-width: 900px;
    font-size: clamp(2.8rem, 5.1vw, 4.6rem);
  }
  .hero-subtitle {
    max-width: 660px;
    margin-bottom: 1.25rem;
  }
  .hero-cta-wrapper {
    margin-bottom: 1.35rem;
  }
  .social-proof-card {
    padding-block: 11px;
  }
  .process-card {
    min-height: 245px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(1180px, calc(100% - 30px));
  }
  .section-padding {
    padding-block: 4.5rem;
  }
  .site-header {
    height: 72px;
  }
  .hero-section {
    min-height: auto;
    padding: 7rem 0 4rem;
  }
  .hero-title {
    font-size: clamp(2.65rem, 12.5vw, 3.35rem);
    overflow-wrap: anywhere;
  }
  .hero-title br {
    display: none;
  }
  .youform-embed,
  .youform-embed > [data-youform-embed],
  .youform-embed iframe {
    min-height: 650px;
    border-radius: 20px;
  }
  .social-proof-card {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
  }
  .proof-rating {
    width: 100%;
    justify-content: center;
    padding: 10px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .grid-3-cols {
    grid-template-columns: 1fr;
  }
  .stats-panel {
    grid-template-columns: 1fr;
  }
  .stat + .stat {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }
  .footer-intro {
    grid-column: 1 / -1;
  }
  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .footer-bottom p {
    width: calc(100% - 60px);
    order: 1;
  }
  .footer-bottom div {
    order: 3;
  }
  .back-to-top {
    margin-left: auto;
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
