:root {
  --navy: #112d46;
  --navy-2: #153654;
  --navy-3: #112d46;
  --gold: #c39854;
  --gold-2: #f4c34f;
  --cream: #fbf7ef;
  --paper: #fffaf1;
  --sand: #efe5d2;
  --ink: #112d46;
  --muted: #6b7772;
  --line: rgba(7, 88, 76, 0.13);
  --shadow: 0 18px 40px rgba(18, 49, 43, 0.12);
  --shadow-strong: 0 26px 70px rgba(5, 58, 50, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100%;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 58px;
  line-height: 1.04;
  max-width: 650px;
}

h2 {
  font-size: 40px;
  line-height: 1.16;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

.section {
  padding: 92px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.eyebrow.light {
  color: var(--gold-2);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-title p {
  margin: 14px auto 0;
  max-width: 660px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.btn {
  border-radius: 999px;
  padding: 13px 25px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-width: 1px;
  min-height: 48px;
}

.btn-lg {
  padding: 15px 28px;
  min-height: 54px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: var(--gold);
  color: #17302b;
  box-shadow: 0 10px 24px rgba(235, 169, 31, 0.28);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #17302b;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(235, 169, 31, 0.34);
}

.btn-outline-navy {
  border-color: rgba(7, 88, 76, 0.26);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.48);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 72px;
  height: 72px;
  animation: pulseMark 1.2s ease-in-out infinite;
}

.loader span {
  color: var(--navy);
  font-weight: 900;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 25px;
}

@keyframes pulseMark {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 10px 20px rgba(7, 88, 76, 0.1));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 14px 28px rgba(7, 88, 76, 0.24));
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 900;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 14px 30px rgba(7, 88, 76, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(14px);
}

.navbar {
  padding: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup img {
    width: 200px;
    height: auto;
}

.brand-lockup span {
  display: grid;
  line-height: 1.05;
}

.brand-lockup strong {
  font-size: 18px;
  color: var(--navy);
  font-weight: 900;
}

.brand-lockup small {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
}

.navbar-nav {
  align-items: center;
  gap: 2px;
}

.navbar .nav-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 13px 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--gold);
}

.nav-cta {
  padding: 12px 20px;
  min-height: 44px;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(235, 169, 31, 0.25);
}

.hero-section {
  padding: 120px 0 82px;
  background:
    radial-gradient(circle at 82% 17%, rgba(235, 169, 31, 0.14), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(7, 88, 76, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #fbf7ef 100%);
  overflow: hidden;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
    max-width: 520px;
}

.hero-stats div {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.hero-stats strong {
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  display: block;
  font-family: "Playfair Display", "Times New Roman", serif;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-book-stage {
  position: relative;
  height: 590px;
  max-width: 610px;
  margin-left: auto;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform: rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg));
  transition: transform 0.2s ease-out;
}

.hero-book-track {
  position: absolute;
  left: 7%;
  right: 3%;
  top: 0;
  display: grid;
  gap: 22px;
  animation: verticalBooks 16s linear infinite;
  will-change: transform;
}

.hero-book-stage:hover .hero-book-track {
  animation-play-state: paused;
}

.hero-book-row {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 270px;
}

.hero-book-row:nth-child(even) {
  transform: translateX(45px);
}

.book-mockup {
  position: relative;
  width: 136px;
  flex: 0 0 auto;
  transform: perspective(900px) rotateY(-16deg);
  transform-style: preserve-3d;
  /* filter: drop-shadow(0 22px 22px rgba(7, 58, 50, 0.24)); */
}

.book-mockup.tall {
  width: 178px;
}

.book-mockup.short {
  width: 118px;
}

.book-mockup::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -16px;
  width: 18px;
  height: calc(100% - 16px);
  background: linear-gradient(90deg, #112d46, #194266);
  transform: rotateY(62deg);
  transform-origin: left;
}

.book-mockup img {
  width: 100%;
  aspect-ratio: 420 / 640;
  object-fit: cover;
}

@keyframes verticalBooks {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.intro-strip {
  padding-bottom: 0px;
}

.showcase-section {
  padding-top: 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.2), rgba(255, 250, 241, 0.95)),
    var(--cream);
}

.showcase-shell {
  position: relative;
  padding: 0 0 10px;
}

.book-orbit {
  position: relative;
  height: 510px;
  max-width: 1180px;
  margin: 0 auto;
  perspective: 1600px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  overflow: visible;
}

.book-orbit.is-dragging {
  cursor: grabbing;
}

.book-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

.orbit-book {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 188px;
  height: 286px;
  margin-left: -94px;
  margin-top: -143px;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  transition: opacity 0.16s linear, filter 0.16s linear;
}

.book-shell {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.book-shell::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -20px;
  width: 22px;
  height: calc(100% - 10px);
  background: linear-gradient(90deg, #112d46, #235077);
  transform: rotateY(-90deg) translateZ(12px);
  transform-origin: right center;
  box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.28);
}

.book-shell::after {
  content: "";
  position: absolute;
  inset: 8px -12px 8px 12px;
  background: #112d46;
  transform: translateZ(-18px);
  box-shadow: 0 22px 34px rgba(3, 34, 29, 0.28);
}

.book-shell img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(18px);
  border-radius: 2px;
  box-shadow:
    0 30px 44px rgba(2, 34, 30, 0.24),
    inset 18px 0 24px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.orbit-floor {
  position: absolute;
  left: 50%;
  bottom: 62px;
  width: min(86%, 900px);
  height: 86px;
  transform: translateX(-50%) rotateX(78deg);
  background: radial-gradient(ellipse at center, rgba(7, 88, 76, 0.22), rgba(7, 88, 76, 0.02) 64%, transparent 74%);
  filter: blur(4px);
}

.orbit-caption {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.orbit-caption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
}

.authors-section,
.genres-section,
.books-grid-section,
.pricing-section,
.faq-section {
  background: var(--paper);
}

.author-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 88, 76, 0.1);
  height: 100%;
}

.author-card img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.author-card div {
  padding: 22px;
}

.author-card h3 {
  margin-bottom: 8px;
}

.author-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.featured-books {
  overflow: hidden;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-btn,
.testimonial-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.22s ease;
}

.slider-btn:hover,
.testimonial-controls button:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}



.featured-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(7, 88, 76, 0.08);
  transition: 0.28s ease;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 420 / 640;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 24px rgba(3, 42, 36, 0.16);
}

.featured-card h3 {
  font-size: 20px;
  margin-top: 18px;
}

.featured-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.featured-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}

.genre-card,
.service-card,
.reason-grid article {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 28px rgba(7, 88, 76, 0.07);
  transition: 0.26s ease;
}

.genre-card i,
.service-card i,
.reason-grid i {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(235, 169, 31, 0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.genre-card h3,
.service-card h3,
.reason-grid h3 {
  margin-bottom: 10px;
}

.genre-card:hover,
.service-card:hover,
.reason-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(235, 169, 31, 0.42);
  box-shadow: var(--shadow);
}

.premium-band,
.counter-section,
.cta-band,
.final-cta,
.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 10% 18%, rgba(235, 169, 31, 0.18), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.premium-band h2,
.premium-band p,
.counter-section h2,
.cta-band h2,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.premium-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 16px;
}

.check-list,
.mini-list,
.pricing-card ul,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.check-list i {
  color: var(--gold);
  margin-top: 3px;
}

.feature-book-scene {
  min-height: 420px;
  position: relative;
  perspective: 1200px;
}

.feature-book {
  position: absolute;
  width: 210px;
  aspect-ratio: 420 / 640;
  object-fit: cover;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.32);
}

.feature-book.main {
  width: 260px;
  left: 50%;
  top: 36px;
  transform: translateX(-50%) rotateY(-7deg);
  z-index: 4;
}

.feature-book.side-a {
  left: 12%;
  top: 98px;
  transform: rotateY(18deg) rotateZ(-7deg);
}

.feature-book.side-b {
  right: 10%;
  top: 120px;
  transform: rotateY(-18deg) rotateZ(8deg);
}

.gallery-section {
  background: linear-gradient(180deg, var(--cream), #fff);
  overflow: hidden;
}

.gallerySwiper {
  overflow: visible;
}

.gallerySwiper .swiper-slide {
  width: 280px;
}

.gallerySwiper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.gallerySwiper .swiper-slide:nth-child(even) img {
  transform: rotate(3deg);
}

.browser-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  transition: 0.25s ease;
}

.browser-card img {
  border-radius: 5px;
}

.browser-card span {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
}

.browser-card.after span {
  background: var(--navy);
  color: #fff;
}

.browser-card:hover {
  transform: translateY(-6px);
}

.publishing-section {
  background:
    radial-gradient(circle at 92% 20%, rgba(235, 169, 31, 0.12), transparent 28%),
    var(--cream);
}

.stacked-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.stacked-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(7, 88, 76, 0.06);
  font-weight: 700;
  color: var(--ink);
}

.stacked-list i {
  color: var(--gold);
  font-size: 22px;
}

.angled-book-stack {
  min-height: 410px;
  position: relative;
  perspective: 1200px;
}

.angled-book-stack img {
  position: absolute;
  top: 42px;
  width: 210px;
  aspect-ratio: 420 / 640;
  object-fit: cover;
  box-shadow: 0 24px 46px rgba(7, 88, 76, 0.26);
}

.angled-book-stack img:nth-child(1) {
  left: 9%;
  transform: rotateY(18deg) rotateZ(-7deg);
}

.angled-book-stack img:nth-child(2) {
  left: 34%;
  top: 8px;
  z-index: 3;
  width: 250px;
  transform: rotateY(-8deg);
}

.angled-book-stack img:nth-child(3) {
  right: 7%;
  transform: rotateY(-20deg) rotateZ(7deg);
}

.process-section {
  background: #fff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.inner-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(235, 169, 31, 0.75), transparent);
}

.process-timeline article {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(7, 88, 76, 0.06);
}

.process-timeline span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.process-timeline h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.book-grid article {
  background: #fff;
  border-radius: var(--radius);
  padding: 10px;
  border: 1px solid rgba(7, 88, 76, 0.09);
  box-shadow: 0 14px 28px rgba(7, 88, 76, 0.09);
  transition: 0.26s ease;
}

.book-grid img {
  width: 100%;
  aspect-ratio: 420 / 640;
  object-fit: cover;
  border-radius: 4px;
}

.book-grid article:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.service-card.featured h3,
.service-card.featured p {
  color: #fff;
}


.counter-section {
  padding: 72px 0;
}

.counter-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  align-items: center;
  gap: 30px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.counter-grid article {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px 14px;
  background: rgba(255, 255, 255, 0.06);
}

.counter-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.counter-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  font-size: 13px;
}

.rounded-media {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  object-fit: cover;
}

.shadow-media {
  box-shadow: var(--shadow-strong);
}

.journey-section h2,
.fair-section h2 {
  margin-bottom: 18px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 28px;
}

.journey-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 10px 24px rgba(7, 88, 76, 0.06);
  font-weight: 700;
}

.journey-grid i {
  color: var(--gold);
  font-size: 21px;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.highlight-card h3 {
  margin-bottom: 14px;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mini-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.mini-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(235, 169, 31, 0.17);
  color: var(--gold);
  border-radius: 50%;
}

.pricing-card {
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.pricing-card.popular {
  background: linear-gradient(180deg, #0b6658, #064a40);
  color: #fff;
  transform: translateY(-12px);
}

.pricing-card.popular h3,
.pricing-card.popular strong,
.pricing-card.popular li,
.pricing-card.popular span {
  color: #fff;
}

.pricing-card em {
  position: absolute;
  right: 22px;
  top: 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 12px;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
}

.pricing-card > span {
  color: var(--gold);
  font-weight: 900;
}

.pricing-card h3 {
  margin: 10px 0 18px;
}

.pricing-card strong {
  display: block;
  color: var(--navy);
  font-size: 46px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 24px;
}

.pricing-card li {
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(7, 88, 76, 0.08);
}

.pricing-card ul {
  margin-bottom: 28px;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.popular:hover {
  transform: translateY(-18px);
}

.cta-band {
  padding: 42px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-inner span {
  color: #fff;
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 50px;
}

.testimonials-section {
  background: linear-gradient(180deg, #fff, var(--cream));
}

  .testimonials-section .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

.testimonial-card {
    min-height: 330px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 42px;
}

.testimonial-card > i {
  color: var(--gold);
  font-size: 42px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 19px;
  margin: 18px 0 20px;
}

.testimonial-card h3 {
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--gold);
  font-weight: 800;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.contact-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(235, 169, 31, 0.12), transparent 28%),
    #fff;
}

.contact-info-card,
.contact-form {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-info-card h2,
.contact-form h2 {
  margin-bottom: 16px;
}

.contact-info-card img {
  width: 100%;
  border-radius: var(--radius);
  margin: 22px 0;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  color: var(--ink);
  font-weight: 800;
  border-top: 1px solid var(--line);
}

.contact-row i {
  color: var(--gold);
  font-size: 20px;
}

.contact-form label {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-control,
.form-select {
  border-radius: var(--radius);
  border: 1px solid rgba(7, 88, 76, 0.18);
  background: #fff;
  min-height: 48px;
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(235, 169, 31, 0.16);
}

.map-wrap {
  margin-top: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 330px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 330px;
  border: 0;
  display: block;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(7, 88, 76, 0.05);
}

.accordion-button {
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--navy);
  background: rgba(235, 169, 31, 0.12);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  color: var(--muted);
  line-height: 1.7;
  background: #fff;
}

.final-cta {
  padding: 66px 0;
}

.final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 42px 28px;
}

.final-cta-inner p {
  margin: 12px auto 24px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 64px 0 26px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p,
.site-footer li,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
}

.site-footer a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 7px;
  margin-top: 18px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 12px;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 42px;
    padding-top: 24px;
    font-size: 14px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 16px;
}

.cta-btn-box {
    display: flex;
    flex-direction: row;
    gap:20px;
    justify-content: center;
    padding: 50px 10px;
}

section.legal-banner {
    padding: 150px 0 20px;
}

.legal-banner-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================================
     Scoped box model reset â€” never touches global elements
     ============================================================ */
  .msp-before-after-section,
  .msp-before-after-section *,
  .msp-before-after-section *::before,
  .msp-before-after-section *::after {
    box-sizing: border-box;
  }

  /* ============================================================
     Design tokens â€” scoped custom properties
     ============================================================ */
  .msp-before-after-section {
    --msp-bas-gold: #F5A623;
    --msp-bas-gold-dark: #d8901a;
    --msp-bas-green: #112d46;
    --msp-bas-green-dark: #083f33;
    --msp-bas-ink: #132A24;
    --msp-bas-cream: #FDFBF7;
    --msp-bas-paper: #F1EEE6;
    --msp-bas-muted: #66756f;
    --msp-bas-radius: 24px;
    --msp-bas-shadow: 0 24px 55px -22px rgba(19, 42, 36, 0.28);
    --msp-bas-shadow-hover: 0 32px 65px -20px rgba(19, 42, 36, 0.36);

    display: block;
    width: 100%;
    padding: 90px 24px;
    background-color: var(--msp-bas-cream);
    background-image: radial-gradient(rgba(11, 93, 75, 0.16) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--msp-bas-ink);
  }

  .msp-bas-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  /* ============================================================
     Grid
     ============================================================ */
  .msp-bas-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  /* ============================================================
     Card
     ============================================================ */
  .msp-bas-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--msp-bas-radius);
    padding: 30px 30px 34px;
    box-shadow: var(--msp-bas-shadow);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .msp-bas-card::after {
    /* subtle premium sheen sweep on hover */
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(245, 166, 35, 0.10), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
  }

  .msp-bas-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--msp-bas-shadow-hover);
  }

  .msp-bas-card:hover::after {
    left: 130%;
  }

  .msp-bas-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }

  .msp-bas-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--msp-bas-gold) 0%, #ffc978 100%);
    color: var(--msp-bas-ink);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
  }

  .msp-bas-sparkle {
    width: 18px;
    height: 18px;
    color: var(--msp-bas-gold);
    opacity: 0.8;
  }

  .msp-bas-card__title {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    font-weight: 700;
    color: var(--msp-bas-green-dark);
    margin: 0 0 22px;
    letter-spacing: -0.01em;
  }

  .msp-bas-arrow {
    color: var(--msp-bas-gold-dark);
    font-weight: 700;
    padding: 0 2px;
  }

  /* ============================================================
     Comparison stage â€” simple two-image version
     ============================================================ */
  .msp-bas-compare {
    position: relative;
    width: 60%;
    margin: auto;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    background: var(--msp-bas-paper);
    cursor: grab;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .msp-bas-compare.msp-bas-is-dragging {
    cursor: grabbing;
  }

  .msp-bas-layer {
    position: absolute;
    inset: 0;
  }

  .msp-bas-layer--after {
    z-index: 1;
  }

  .msp-bas-layer--before {
    z-index: 2;
    clip-path: inset(0 calc(100% - (var(--msp-pos) * 1%)) 0 0);
    transition: clip-path 0.15s ease-out;
  }

  .msp-bas-compare.msp-bas-is-dragging .msp-bas-layer--before {
    transition: none;
  }

  /* The actual before/after photos â€” fill the frame, crop to fit */
  .msp-bas-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    pointer-events: none;
  }

  /* Divider + handle */
  .msp-bas-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--msp-pos) * 1%);
    width: 2px;
    background: var(--msp-bas-gold);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
    z-index: 3;
    transform: translateX(-50%);
    transition: left 0.15s ease-out;
    pointer-events: none;
  }

  .msp-bas-compare.msp-bas-is-dragging .msp-bas-divider {
    transition: none;
  }

  .msp-bas-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--msp-bas-gold);
    color: var(--msp-bas-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--msp-bas-shadow);
    pointer-events: all;
    cursor: grab;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .msp-bas-handle:hover {
    transform: translate(-50%, -50%) scale(1.08);
  }

  .msp-bas-handle:active,
  .msp-bas-compare.msp-bas-is-dragging .msp-bas-handle {
    cursor: grabbing;
  }

  .msp-bas-handle:focus-visible {
    outline: 2px solid var(--msp-bas-green);
    outline-offset: 3px;
  }

  .msp-bas-handle__icon {
    width: 20px;
    height: 20px;
  }

  /* Corner tags */
  .msp-bas-tag {
    position: absolute;
    bottom: 14px;
    z-index: 4;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    pointer-events: none;
  }

  .msp-bas-tag--before {
    left: 14px;
    background: var(--msp-bas-green);
    color: var(--msp-bas-cream);
  }

  .msp-bas-tag--after {
    right: 14px;
    background: var(--msp-bas-gold);
    color: var(--msp-bas-ink);
  }

  .msp-bas-caption {
    margin: 18px 4px 0;
    font-size: 0.92rem;
    color: var(--msp-bas-muted);
    text-align: center;
  }


 .banner-form {
        padding:50px 10px;
        color: #fff;
        background: radial-gradient(circle at 10% 18%, rgba(235, 169, 31, 0.18), transparent 28%), radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.1), transparent 24%), linear-gradient(135deg, var(--navy-2), var(--navy));
      }


      .banner-input {
        height: 58px;
        border: none;
        border-radius: 10px;
        padding: 0 18px;
        font-size: 18px;
        box-shadow: none !important;
      }
      
      .banner-title{
        color: #fff;
        font-size: 35px;
        font-family: Georgia, "Times New Roman", serif;
        font-weight: 700;
      }

      .banner-input:focus {
        border: none;
        outline: none;
        box-shadow: none;
      }

      .form-wrapper {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: nowrap; /* Never break on laptop */
      }

      .form-wrapper .form-control,
      .form-wrapper .form-select {
        min-width: 0;
        flex: 1;
      }

[data-aos] {
  pointer-events: auto;
}

@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;
  }
}