:root {
  --text-on-dark: #EEDAC7;
  --text-on-dark-cc: rgba(238, 218, 199, 0.8);
  --dark-brown: #5A2F2F;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F7F0EC;
  color: #8C5053;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.landing-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

/* ---------------- Navigation ---------------- */
.navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 84px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(90, 47, 47, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
}

.logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-on-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 100%;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-on-dark-cc);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--text-on-dark);
}

.nav-cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(20deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(145deg, #F4E1D5 0%, #D9AEB0 100%);
  color: #5A2F2F;
  padding: 8px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(248, 232, 222, 0.7);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(20deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 56%, rgba(90, 47, 47, 0.12) 100%),
    linear-gradient(145deg, #E8C6BF 0%, #C58A8E 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-1px) scale(1.035);
  color: #4A2A34;
  border-color: rgba(248, 232, 222, 0.9);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(238, 218, 199, 0.2);
}

.nav-cta-btn:hover::before {
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-on-dark);
  cursor: pointer;
  position: relative;
  z-index: 102;
}

.mobile-menu-toggle span {
  display: block;
  width: 34px;
  height: 3px;
  margin: 7px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.navigation.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.navigation.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.navigation.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------------- Hero Section ---------------- */
.hero-section {
  position: relative;
  width: 100%;
  background: linear-gradient(145deg, #8C5053 0%, #6A3D3F 100%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Align securely to the top */
  padding: 84px 5% 0 5%;
  /* Exactly 84px to account for nav size, no extra gap */
}

/* Glows */
.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.glow-left {
  left: 5%;
  top: 150px;
  width: 420px;
  height: 420px;
  background: rgba(238, 218, 199, 0.08);
  /* #EEDAC714 */
  filter: blur(110px);
}

.glow-right {
  right: 5%;
  top: 130px;
  width: 420px;
  height: 520px;
  background: rgba(238, 218, 199, 0.10);
  /* #EEDAC71A */
  filter: blur(120px);
}

/* Content Grid */
.hero-content-grid {
  position: relative;
  max-width: 1350px;
  width: 100%;
  display: flex;
  flex-wrap: wrap-reverse;
  /* text goes under image on small screens */
  gap: 40px;
  align-items: stretch;
  /* Stretch children */
  justify-content: space-between;
  z-index: 10;
}

.hero-text {
  flex: 1 1 450px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center text vertically relative to the image */
  gap: 14px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.heroSymbol {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: normal;
  color: #F3D0C9;
  opacity: 0.85;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: 1.5px;
  color: var(--text-on-dark);
}

.hero-tagline {
  font-family: 'PT Serif', serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 4px;
  color: var(--text-on-dark-cc);
  line-height: 1.2;
}

.hero-spacer {
  height: 18px;
}

.hero-spacer-2 {
  height: 8px;
}

.hero-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-on-dark-cc);
}

.hero-hook-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero-row svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.hero-row span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-on-dark-cc);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
}

/* Primary Button */
.primary-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 42px;
  border-radius: 9999px;
  background: linear-gradient(20deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(145deg, #F4E1D5 0%, #D9AEB0 100%);
  border: 1px solid rgba(248, 232, 222, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #5A2F2F;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.3s ease, border-color 0.3s ease;
}

.primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(20deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 56%, rgba(90, 47, 47, 0.12) 100%),
    linear-gradient(145deg, #E8C6BF 0%, #C58A8E 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.035);
  color: #4A2A34;
  border-color: rgba(248, 232, 222, 0.9);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(238, 218, 199, 0.2);
}

.primary-btn:hover::before {
  opacity: 1;
}

/* Secondary Button */
.secondary-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 42px;
  border-radius: 9999px;
  background: linear-gradient(20deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(145deg, #8C5053 0%, #4A2A34 100%);
  border: 1px solid rgba(238, 218, 199, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-on-dark);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.secondary-btn:hover {
  transform: translateY(-2px) scale(1.035);
  background: linear-gradient(20deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 58%, rgba(238, 218, 199, 0.12) 100%),
    linear-gradient(145deg, #A96A6D 0%, #693B45 100%);
  border-color: rgba(248, 232, 222, 0.78);
  color: #FFF5EE;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), 0 0 18px rgba(238, 218, 199, 0.18);
}

/* Hero Image */
.hero-image-wrapper {
  flex: 1 1 400px;
  width: 100%;
  max-width: 787px;
  aspect-ratio: 787 / 716;
  /* Maintains the exact strict box ratio from design */
  border-radius: 24px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- About Section ---------------- */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 100px 5%;
  background-color: #F3D0C9;
}

.about-image-fan {
  position: relative;
  width: 560px;
  height: 387px;
  flex-shrink: 0;
  perspective: 900px;
}

.fan-card {
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 8px 18px rgba(90, 47, 47, 0.17);
  transform-origin: bottom center;
  will-change: transform;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.fan-card.card-1 {
  width: 170px;
  height: 250px;
  left: 24px;
  top: 82px;
  transform: rotate(-18deg);
  animation: fanCardLeftOuter 7.5s ease-in-out infinite;
  border: 1px solid #E8D9E1;
  background: url('Design/card_22_image.webp') center/cover no-repeat,
    linear-gradient(140deg, #D6B8C6 0%, #B08CA0 100%);
}

.fan-card.card-2 {
  width: 174px;
  height: 255px;
  left: 88px;
  top: 56px;
  transform: rotate(-9deg);
  animation: fanCardLeftInner 7s ease-in-out infinite 0.3s;
  border: 1px solid #E2D8EE;
  background: url('Design/card_01_image.webp') center/cover no-repeat,
    linear-gradient(145deg, #CBB7E2 0%, #9B88C6 100%);
}

.fan-card.card-3 {
  width: 174px;
  height: 255px;
  left: 300px;
  top: 56px;
  transform: rotate(9deg);
  animation: fanCardRightInner 7s ease-in-out infinite 0.6s;
  border: 1px solid #DDE9DF;
  background: url('Design/card_36_image.webp') center/cover no-repeat,
    linear-gradient(145deg, #C8DCCB 0%, #94B89A 100%);
}

.fan-card.card-4 {
  width: 170px;
  height: 250px;
  left: 366px;
  top: 82px;
  transform: rotate(18deg);
  animation: fanCardRightOuter 7.5s ease-in-out infinite 0.9s;
  border: 1px solid #EFDED4;
  background: url('Design/card_40_image.webp') center/cover no-repeat,
    linear-gradient(140deg, #E4C8B8 0%, #CFA08A 100%);
}

.about-phone {
  position: absolute;
  width: 516px;
  height: 486px;
  left: 22px;
  top: -47px;
  z-index: 10;
  pointer-events: none;
  object-fit: contain;
  animation: aboutPhoneFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 18px 24px rgba(90, 47, 47, 0.16));
  will-change: transform;
}

.about-image-fan:hover .fan-card,
.about-image-fan:hover .about-phone {
  animation-play-state: paused;
}

.about-image-fan:hover .fan-card {
  box-shadow: 0 14px 28px rgba(90, 47, 47, 0.2);
}

.about-image-fan:hover .fan-card.card-1 {
  transform: translate(-12px, -8px) rotate(-22deg) scale(1.02);
}

.about-image-fan:hover .fan-card.card-2 {
  transform: translate(-7px, -13px) rotate(-12deg) scale(1.025);
}

.about-image-fan:hover .fan-card.card-3 {
  transform: translate(7px, -13px) rotate(12deg) scale(1.025);
}

.about-image-fan:hover .fan-card.card-4 {
  transform: translate(12px, -8px) rotate(22deg) scale(1.02);
}

.about-image-fan:hover .about-phone {
  transform: translateY(-8px) scale(1.015);
}

@keyframes aboutPhoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.4deg);
  }
}

@keyframes fanCardLeftOuter {

  0%,
  100% {
    transform: translateY(0) rotate(-18deg);
  }

  50% {
    transform: translate(-6px, -10px) rotate(-20deg);
  }
}

@keyframes fanCardLeftInner {

  0%,
  100% {
    transform: translateY(0) rotate(-9deg);
  }

  50% {
    transform: translate(-3px, -14px) rotate(-10.5deg);
  }
}

@keyframes fanCardRightInner {

  0%,
  100% {
    transform: translateY(0) rotate(9deg);
  }

  50% {
    transform: translate(3px, -14px) rotate(10.5deg);
  }
}

@keyframes fanCardRightOuter {

  0%,
  100% {
    transform: translateY(0) rotate(18deg);
  }

  50% {
    transform: translate(6px, -10px) rotate(20deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .fan-card,
  .about-phone {
    animation: none;
  }
}

/* About Text */
.about-text {
  flex: 1 1 450px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.5px;
  color: var(--dark-brown);
}

.about-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #7A5A58;
}

.about-spacer {
  height: 16px;
}

.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 491px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 1 120px;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--dark-brown);
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: #7A5A58;
  text-align: left;
}

/* ---------------- Fit Section ---------------- */
.fit-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 100px 5%;
  background: linear-gradient(180deg, #F5ECE7 0%, #F3E8E2 50%, #F5ECE7 100%);
  width: 100%;
}

.fit-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--dark-brown);
  text-align: center;
}

.fit-grid {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.fit-col {
  display: flex;
  flex-direction: column;
  gap: 44px;
  flex: 1 1 400px;
  max-width: 620px;
  align-items: center;
}

.fit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  width: 100%;
}

.fit-icon {
  flex-shrink: 0;
  margin-top: 5px;
}

.fit-item p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: var(--dark-brown);
}

/* ---------------- Flip Section ---------------- */
.flip-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 96px 5%;
  background: linear-gradient(180deg, #F5ECE7 0%, #F2E6DF 50%, #F5ECE7 100%);
}

.flip-text-column {
  flex: 1 1 450px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.flip-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  color: var(--dark-brown);
}

.flip-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  color: var(--dark-brown);
}

.flip-fan-stage {
  position: relative;
  width: 620px;
  height: 560px;
  flex-shrink: 0;
  perspective: 1000px;
}

.flip-card-img {
  position: absolute;
  /* Figma baked images already include shadows and borders */
  transform-origin: center bottom;
  will-change: transform;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.flip-card-img.card-img-left {
  width: 384.5px;
  height: 464.5px;
  left: -31px;
  top: 64px;
  z-index: 3;
  animation: flipCardLeftFloat 7.2s ease-in-out infinite;
}

.flip-card-img.card-img-mid {
  width: 308px;
  height: 410px;
  left: 125.52px;
  top: 180.59px;
  z-index: 2;
  animation: flipCardMidFloat 6.8s ease-in-out infinite 0.45s;
}

.flip-card-img.card-img-right {
  width: 357.5px;
  height: 437.5px;
  left: 293px;
  top: 181px;
  z-index: 1;
  animation: flipCardRightFloat 7.4s ease-in-out infinite 0.8s;
}

.flip-fan-stage:hover .flip-card-img {
  animation-play-state: paused;
  filter: drop-shadow(0 18px 20px rgba(90, 47, 47, 0.18));
}

.flip-fan-stage:hover .card-img-left {
  transform: translate(-16px, -12px) rotate(-3deg) scale(1.025);
}

.flip-fan-stage:hover .card-img-mid {
  transform: translateY(-24px) rotate(1.5deg) scale(1.035);
}

.flip-fan-stage:hover .card-img-right {
  transform: translate(18px, -10px) rotate(4deg) scale(1.025);
}

@keyframes flipCardLeftFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translate(-8px, -16px) rotate(-2deg);
  }
}

@keyframes flipCardMidFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translate(2px, -20px) rotate(1deg);
  }
}

@keyframes flipCardRightFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translate(8px, -14px) rotate(2deg);
  }
}

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

/* ---------------- Media Queries for Responsiveness ---------------- */
@media (max-width: 1100px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .navigation {
    position: fixed;
    max-width: none;
    height: 84px;
    align-items: flex-start;
    padding-top: 18px;
    overflow: hidden;
    transition: height 0.28s ease, background 0.28s ease;
  }

  .navigation.menu-open {
    height: 100svh;
    background: rgba(90, 47, 47, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .logo {
    padding-top: 10px;
  }

  .nav-links {
    position: absolute;
    inset: 118px 5% auto 5%;
    display: flex;
    height: auto;
    max-height: calc(100svh - 150px);
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 34px;
    padding: 34px 0 48px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .navigation.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav-cta-btn {
    font-size: 24px;
  }

  .nav-link {
    font-weight: 700;
    color: var(--text-on-dark);
    text-align: center;
  }

  .nav-cta-btn {
    padding: 12px 28px;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 900px) {

  .about-section,
  .flip-section,
  .features-section {
    overflow: hidden;
  }

  .about-section {
    padding-top: 32px;
  }

  .fit-section {
    padding-bottom: 44px;
  }

  .flip-section {
    padding-top: 36px;
  }

  .hero-section {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-content-grid {
    max-width: 100%;
    gap: 0;
    margin-top: 0;
  }

  .hero-image-wrapper {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    min-width: 0;
    border-radius: 0;
  }

  .hero-image {
    display: block;
  }

  .hero-text {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 28px 5% 64px;
  }

  .about-image-fan {
    width: 100%;
    max-width: 560px;
    transform: translateX(-12%) scale(0.8);
  }

  .fit-item p {
    font-size: 20px;
  }

  .fit-grid {
    gap: 44px;
  }

  .flip-fan-stage {
    width: 620px;
    max-width: 620px;
    flex: 0 0 620px;
    transform: scale(0.7);
    margin: -50px 0;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding-top: 8px;
    gap: 24px;
  }

  .fit-section {
    padding-top: 72px;
    padding-bottom: 28px;
  }

  .flip-section {
    padding-top: 24px;
  }

  .about-image-fan {
    width: 100%;
    transform: translateX(-14%) scale(0.5);
    /* Scales down the fixed coordinates fan for mobile */
    margin-top: -82px;
    margin-bottom: -124px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .flip-fan-stage {
    width: 620px;
    max-width: 620px;
    flex-basis: 620px;
    transform: scale(0.5);
    margin: -120px 0;
  }

  .flip-subtitle {
    font-size: 17px;
  }

  .feature-phone,
  .author-photo-card {
    width: 100%;
  }

  .feature-phone {
    max-width: 350px;
  }

  .features-section .section-title {
    padding: 0 5%;
    font-size: 36px;
    line-height: 1.15;
    overflow-wrap: normal;
    word-break: normal;
  }

  .features-section .section-subtitle {
    padding: 0 5%;
    font-size: 18px;
    line-height: 1.35;
  }

  .author-photo-card {
    max-width: 331px;
  }
}

@media (max-width: 640px) {
  .categories-section {
    padding: 72px 0;
  }

  .categories-section .section-title {
    padding: 0 5%;
  }

  .section-subtitle {
    padding: 0 5%;
    margin-bottom: 44px;
  }

  .cat-preview-stage {
    width: 100%;
    height: 280px;
    overflow: hidden;
  }

  .preview-cards-wrap {
    width: max-content;
    justify-content: center;
    gap: 24px;
    --preview-scale: 0.58;
    transform-origin: center center;
  }

  .preview-card {
    width: 186px;
    height: 280px;
    border-radius: 16px;
  }
}

@media (min-width: 430px) and (max-width: 640px) {
  .preview-cards-wrap {
    --preview-scale: 0.68;
  }

  .cat-preview-stage {
    height: 320px;
  }
}

/* ---------------- HOW IT WORKS SECTION ---------------- */
.how-section {
  padding: 90px 120px 100px;
  background: linear-gradient(180deg, #F5ECE7 0%, #F2E6DF 50%, #F5ECE7 100%);
}

.how-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-section .section-title {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 68px);
  color: #5A2F2F;
  margin-bottom: 120px;
}

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

.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 340px 22px 36px 22px;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
  transition: transform 0.28s ease, filter 0.28s ease;
  will-change: transform;
}

.step-card:nth-child(2) {
  z-index: 2;
}

.step-card:hover,
.step-card:focus-visible,
.step-card.active {
  z-index: 4;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(246, 222, 217, 0.9) 0%, rgba(239, 201, 192, 0.85) 58%, rgba(229, 179, 169, 0.8) 100%);
  border: 1px solid rgba(255, 233, 225, 0.6);
  box-shadow: 0 10px 26px rgba(90, 47, 47, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 20%), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 36%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.step-card:hover,
.step-card:focus-visible {
  --lift: -10px;
}

.step-card:hover::before,
.step-card:focus-visible::before,
.step-card.active::before {
  border-color: rgba(255, 245, 238, 0.9);
  box-shadow: 0 18px 34px rgba(90, 47, 47, 0.22), 0 0 0 1px rgba(255, 245, 238, 0.24);
}

.step-card:hover::after,
.step-card:focus-visible::after,
.step-card.active::after {
  opacity: 1;
}

.step-card.active {
  --lift: -8px;
}

.step-phone-wrap {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.step-phone-wrap img {
  height: 486px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(90, 47, 47, 0.14));
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.step-card:hover .step-phone-wrap img,
.step-card:focus-visible .step-phone-wrap img,
.step-card.active .step-phone-wrap img {
  transform: translateY(-12px) scale(1.025);
  filter: drop-shadow(0 24px 26px rgba(90, 47, 47, 0.2));
}

.step-title {
  position: relative;
  z-index: 5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--dark-brown);
  margin-bottom: 12px;
}

.step-desc {
  position: relative;
  z-index: 5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-brown);
}

@media (prefers-reduced-motion: reduce) {

  .step-card,
  .step-phone-wrap img {
    transition: none;
    transform: none;
  }
}

/* responsive */
@media (max-width: 1100px) {
  .how-section {
    padding: 60px 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 120px;
  }
}

@media (max-width: 768px) {
  .how-section {
    padding: 40px 20px;
  }
}

/* Categories Section */
.categories-section {
  padding: 120px 0;
  background: linear-gradient(155deg, #F3D0C9 0%, #EFCFC7 100%) !important;
  position: relative;
  overflow: hidden;
}

.categories-section .section-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: #5A2F2F;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #8C5053;
  margin-bottom: 80px;
}

.categories-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.cat-toggles {
  flex: 0 0 540px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
  /* Ensure it aligns with container edge */
}

.cat-toggle {
  cursor: pointer;
  padding: 24px 32px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(140deg, #FFF6F1 0%, #F0E4DE 100%);
  box-shadow: 0 8px 18px rgba(90, 47, 47, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cat-toggle .toggle-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #5A2F2F;
  margin-bottom: 8px;
  transition: color 0.4s;
}

.cat-toggle .toggle-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5A2F2F;
  line-height: 1.5;
  opacity: 0.8;
  transition: color 0.4s;
}

.cat-toggle:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 24px rgba(90, 47, 47, 0.18);
}

.cat-toggle.active {
  background: linear-gradient(145deg, #8C5053 0%, #4A2A34 100%);
  border: 1px solid rgba(238, 218, 199, 0.4);
  box-shadow: 0 10px 24px rgba(42, 22, 22, 0.2);
  transform: translateX(20px);
}

.cat-toggle.active .toggle-title {
  color: #EEDAC7;
}

.cat-toggle.active .toggle-desc {
  color: #EEDAC7;
  opacity: 1;
}

.cat-preview-stage {
  flex: 1;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-cards-wrap {
  display: flex;
  gap: 24px;
  perspective: 1000px;
  transform: translateY(var(--preview-y, 0)) scale(var(--preview-scale, 1)) scale(var(--preview-switch-scale, 1));
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.preview-card {
  width: 186px;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.preview-card:nth-child(1) {
  transform: rotate(-5deg) translateY(20px);
}

.preview-card:nth-child(2) {
  transform: rotate(0deg) translateY(0);
  z-index: 2;
}

.preview-card:nth-child(3) {
  transform: rotate(5deg) translateY(20px);
}

.preview-card:hover {
  transform: translateY(-20px) scale(1.05);
  z-index: 10 !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* responsive */
@media (max-width: 1200px) {
  .categories-split {
    flex-direction: column;
    align-items: center;
  }

  .cat-toggles {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* Practices Section */
.practices-section {
  padding: 96px 0 120px;
  background: linear-gradient(180deg, #5D3538 0%, #6A3F43 50%, #5D3538 100%);
  color: #EEDAC7;
}

.practices-section .section-title {
  text-align: center;
  font-size: 56px;
  margin-bottom: 28px;
}

.practice-intro {
  width: min(100%, 920px);
  margin: 0 auto 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.practice-free-badge {
  width: fit-content;
  padding: 12px 22px;
  border: 1px solid rgba(238, 218, 199, 0.4);
  border-radius: 999px;
  background: rgba(238, 218, 199, 0.12);
  color: #EEDAC7;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.practice-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.practice-step {
  min-height: 128px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border: 1px solid rgba(238, 218, 199, 0.24);
  border-radius: 20px;
  background: rgba(238, 218, 199, 0.08);
  color: rgba(238, 218, 199, 0.82);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.practice-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #EEDAC7;
  color: #5A2F2F;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.practice-demo-window {
  width: min(100%, 360px);
  margin: 0 auto;
  overflow: visible;
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.practice-demo-header {
  display: none;
}

.practice-demo-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.practice-flip-card {
  width: min(78vw, 300px);
  aspect-ratio: 520 / 740;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  perspective: 1000px;
}

.practice-flip-card:focus-visible,
.practice-flip-hint:focus-visible {
  outline: 3px solid rgba(238, 218, 199, 0.78);
  outline-offset: 5px;
}

.practice-card-inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.practice-flip-card.is-flipped .practice-card-inner {
  transform: rotateY(180deg);
}

.practice-card-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #111217;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.practice-card-back {
  transform: rotateY(180deg);
}

.practice-card-frame {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #111217;
}

.practice-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.practice-card-text {
  position: absolute;
  inset: 52px 38px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  color: #C3A45B;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  text-align: left;
}

.practice-flip-hint {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(248, 232, 222, 0.7);
  border-radius: 999px;
  background: linear-gradient(20deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(145deg, #F4E1D5 0%, #D9AEB0 100%);
  color: #5A2F2F;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.practice-flip-hint:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 232, 222, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(238, 218, 199, 0.18);
}

.practice-scroll-note {
  margin-bottom: -12px;
  color: rgba(238, 218, 199, 0.86);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}

/* Experience Transition Section */
.experience-transition-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 28%),
    linear-gradient(155deg, #F3D0C9 0%, #EFCFC7 100%);
  color: var(--dark-brown);
}

.experience-transition-content {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 68px;
}

.experience-transition-visual {
  width: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  position: relative;
}

.experience-transition-visual::before {
  content: "";
  position: absolute;
  width: min(84%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 26px 70px rgba(90, 47, 47, 0.14);
}

.experience-card-stack {
  width: min(76vw, 330px);
  height: 420px;
  position: relative;
}

.experience-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 220px;
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(90, 47, 47, 0.24);
  transform-origin: 50% 88%;
}

.experience-card-back {
  transform: translateX(-67%) rotate(-13deg);
  opacity: 0.72;
}

.experience-card-mid {
  transform: translateX(-31%) rotate(10deg);
  opacity: 0.86;
}

.experience-card-front {
  width: 250px;
  transform: translateX(-50%) translateY(-22px) rotate(-2deg);
  box-shadow: 0 28px 58px rgba(90, 47, 47, 0.28);
}

.experience-transition-copy {
  max-width: 560px;
}

.experience-transition-kicker {
  margin-bottom: 14px;
  color: rgba(90, 47, 47, 0.72);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-transition-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  color: var(--dark-brown);
  margin-bottom: 30px;
}

.experience-transition-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-transition-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 16px 20px;
  border: 1px solid rgba(90, 47, 47, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 22px rgba(90, 47, 47, 0.08);
  color: rgba(90, 47, 47, 0.88);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

.experience-transition-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8C5053;
  box-shadow: 0 0 0 6px rgba(140, 80, 83, 0.12);
}

.experience-transition-note {
  width: fit-content;
  margin-top: 30px;
  padding: 16px 22px;
  border-radius: 999px;
  background: #8C5053;
  color: #F7E9DF;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(90, 47, 47, 0.18);
}

@media (max-width: 768px) {
  .practices-section {
    padding: 64px 0 88px;
  }

  .practices-section .section-title {
    padding: 0 5%;
    font-size: 36px;
    line-height: 1.15;
  }

  .practice-intro {
    margin-bottom: 34px;
    gap: 18px;
  }

  .practice-free-badge {
    font-size: 16px;
  }

  .practice-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .practice-step {
    min-height: auto;
    padding: 16px 18px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .practice-step-number {
    flex: 0 0 auto;
  }

  .practice-demo-window {
    width: min(100%, 340px);
  }

  .practice-demo-body {
    padding: 0;
  }

  .practice-card-text {
    inset: 44px 30px;
    font-size: 13px;
    line-height: 1.32;
  }

  .experience-transition-section {
    padding: 64px 0;
  }

  .experience-transition-content {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .experience-transition-visual {
    min-height: 330px;
  }

  .experience-card-stack {
    height: 330px;
  }

  .experience-card {
    width: 170px;
  }

  .experience-card-front {
    width: 196px;
  }

  .experience-transition-copy {
    max-width: 100%;
  }

  .experience-transition-title {
    margin-bottom: 22px;
  }

  .experience-transition-list li {
    justify-content: flex-start;
    text-align: left;
    font-size: 17px;
  }

  .experience-transition-note {
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }
}

/* Features Section */
.features-section {
  padding: 120px 0 160px;
  background: linear-gradient(180deg, #5D3538 0%, #6A3F43 50%, #5D3538 100%);
  position: relative;
  overflow: hidden;
  color: #EEDAC7;
}

.features-stage {
  position: relative;
  height: 760px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-mockup-wrap {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  z-index: 2;
}

.feature-phone {
  width: 350px;
  height: 640px;
  background: #0F1117;
  border-radius: 48px;
  border: 2px solid #8B909A;
  padding: 16px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 125px;
  width: 100px;
  height: 14px;
  background: #090B10;
  border-radius: 8px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
}

.feature-card {
  position: absolute;
  width: 380px;
  padding: 24px 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(140, 80, 83, 0.95) 0%, rgba(74, 42, 52, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(238, 218, 199, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  animation: floatEffect 6s ease-in-out infinite;
  z-index: 3;
}

.feature-card .card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #EEDAC7;
}

.feature-card .card-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(238, 218, 199, 0.85);
}

.features-section .section-title {
  text-align: center;
  font-size: 56px;
  margin-bottom: 20px;
}

.features-section .section-subtitle {
  text-align: center;
  color: rgba(248, 232, 222, 0.92);
  margin-bottom: 60px;
}

/* Float Positions */
.float-1 {
  left: 80px;
  top: 120px;
  animation-delay: 0s;
}

.float-2 {
  left: 120px;
  top: 450px;
  animation-delay: 1.5s;
}

.float-3 {
  right: 80px;
  top: 220px;
  animation-delay: 0.7s;
}

.float-4 {
  right: 120px;
  top: 520px;
  animation-delay: 2.2s;
}

@keyframes floatEffect {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Features */
@media (max-width: 1100px) {
  .features-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .feature-mockup-wrap,
  .feature-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 500px;
    animation: none;
  }

  .feature-mockup-wrap {
    order: -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding-top: 56px;
    padding-bottom: 96px;
  }

  .features-section .section-title {
    padding: 0 5%;
    font-size: 36px;
    line-height: 1.15;
    overflow-wrap: normal;
    word-break: normal;
  }

  .features-section .section-subtitle {
    padding: 0 5%;
    font-size: 18px;
    line-height: 1.35;
  }
}

/* ---------------- RESULTS SECTION ---------------- */
.results-section {
  padding: 100px 5%;
  background: linear-gradient(155deg, #F3D0C9 0%, #EFCFC7 100%);
  display: flex;
  justify-content: center;
}

.results-section .container {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.results-lead {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: var(--dark-brown);
  text-align: center;
  width: 100%;
}

.results-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.results-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.85) 0%, rgba(247, 240, 236, 0.7) 62%, rgba(239, 227, 221, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(90, 47, 47, 0.12);
  min-height: 320px;
  justify-content: flex-start;
  text-align: center;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--result-tilt-x, 0deg)) rotateY(var(--result-tilt-y, 0deg)) translateY(var(--result-lift, 0));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  will-change: transform;
}

.results-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--result-glow-x, 50%) var(--result-glow-y, 18%), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.results-item:hover,
.results-item:focus-visible {
  --result-lift: -8px;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(90, 47, 47, 0.18), 0 0 0 1px rgba(255, 245, 238, 0.3);
}

.results-item.active {
  --result-lift: -6px;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(90, 47, 47, 0.17), 0 0 0 1px rgba(90, 47, 47, 0.08);
}

.results-item:hover::after,
.results-item:focus-visible::after,
.results-item.active::after {
  opacity: 1;
}

.results-item-heading {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--dark-brown);
}

.results-item-body {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-brown);
}

@media (prefers-reduced-motion: reduce) {
  .results-item {
    transition: none;
    transform: none;
  }
}

/* ---------------- CTA SECTION ---------------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(145deg, #8C5053 0%, #6A3D3F 100%);
  display: flex;
  justify-content: center;
}

.cta-section .container {
  max-width: none;
  padding: 0 5%;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: none;
  width: 100%;
}

.cta-left-column {
  justify-self: end;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 44px);
  color: #EFDECD;
}

.cta-p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-on-dark);
}

.cta-spacer {
  height: 20px;
}

.cta-btn {
  width: fit-content;
}

.cta-phone-visual {
  justify-self: start;
  margin-left: 40px;
  max-width: 454px;
  display: flex;
  justify-content: center;
}

.cta-phone-visual img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  opacity: 0.95;
}

.practice-cta-section {
  padding-top: 92px;
  padding-bottom: 104px;
}

.practice-cta-box {
  gap: 48px;
}

.practice-cta-content {
  justify-self: start;
  max-width: 560px;
  order: 2;
  gap: 20px;
}

.practice-cta-lead {
  color: var(--text-on-dark);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
  max-width: 460px;
}

.practice-cta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.practice-cta-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(238, 218, 199, 0.9);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

.practice-cta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #EEDAC7;
  box-shadow: 0 0 0 5px rgba(238, 218, 199, 0.1);
  transform: translateY(-50%);
}

.practice-cta-note {
  max-width: 500px;
  margin-top: 6px;
  color: rgba(238, 218, 199, 0.78);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.practice-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}

.practice-telegram-btn {
  padding-left: 28px;
  padding-right: 28px;
}

.practice-cta-visual {
  justify-self: end;
  margin-left: 0;
  width: min(100%, 560px);
  max-width: 560px;
  order: 1;
}

/* ---------------- CHECKOUT MODAL ---------------- */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.checkout-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 17, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.checkout-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 36px;
  border: 1px solid rgba(238, 218, 199, 0.4);
  border-radius: 8px;
  background: #F4E9E3;
  box-shadow: 0 24px 80px rgba(24, 18, 17, 0.36);
}

.checkout-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(140, 80, 83, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: #6A3D3F;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.checkout-kicker {
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #8C5053;
}

.checkout-title {
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  line-height: 1.15;
  color: #2c2020;
}

.checkout-copy {
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(44, 32, 32, 0.78);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4a3434;
}

.checkout-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(140, 80, 83, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #2c2020;
  font: inherit;
  font-weight: 500;
}

.checkout-field input:focus {
  outline: 2px solid rgba(140, 80, 83, 0.32);
  outline-offset: 2px;
}

.checkout-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(44, 32, 32, 0.76);
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #8C5053;
}

.checkout-error {
  min-height: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #9f2f35;
}

.checkout-submit {
  width: 100%;
  justify-content: center;
}

body.checkout-lock {
  overflow: hidden;
}

.status-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(238, 218, 199, 0.25), transparent 34%),
    linear-gradient(145deg, #8C5053 0%, #6A3D3F 100%);
}

.status-panel {
  width: min(100%, 560px);
  padding: 40px;
  border: 1px solid rgba(238, 218, 199, 0.4);
  border-radius: 8px;
  background: #F4E9E3;
  box-shadow: 0 24px 80px rgba(24, 18, 17, 0.28);
}

.status-panel .primary-btn {
  width: fit-content;
  margin-top: 8px;
}

.status-panel a:not(.primary-btn) {
  color: #8C5053;
  font-weight: 700;
}

/* ---------------- 404 Page ---------------- */
.not-found-page {
  min-height: 100svh;
  background: linear-gradient(145deg, #8C5053 0%, #6A3D3F 100%);
  color: var(--text-on-dark);
}

.not-found-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 34px 5% 56px;
}

.not-found-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(238, 218, 199, 0.1);
  filter: blur(110px);
}

.not-found-glow-left {
  left: -90px;
  top: 16%;
  width: 360px;
  height: 360px;
}

.not-found-glow-right {
  right: -120px;
  bottom: 8%;
  width: 460px;
  height: 460px;
}

.not-found-logo {
  width: fit-content;
  position: relative;
  z-index: 2;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-on-dark);
  text-decoration: none;
}

.not-found-grid {
  width: min(100%, 1180px);
  margin: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: 72px;
}

.not-found-copy {
  max-width: 640px;
}

.not-found-kicker {
  margin-bottom: 12px;
  font-family: 'PT Serif', serif;
  font-size: 22px;
  letter-spacing: 0.22em;
  color: rgba(238, 218, 199, 0.78);
}

.not-found-title {
  max-width: 720px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--text-on-dark);
}

.not-found-text {
  max-width: 560px;
  margin-top: 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-on-dark-cc);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.not-found-visual {
  position: relative;
  width: min(100%, 430px);
  height: 520px;
  justify-self: center;
  perspective: 1000px;
}

.not-found-card {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 250px;
  height: 374px;
  border-radius: 22px;
  border: 1px solid rgba(238, 218, 199, 0.36);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 70px rgba(28, 16, 18, 0.35);
  transform-origin: 50% 88%;
}

.not-found-card-back {
  background-image: url('Design/card_22_image.webp');
  transform: translateX(-82%) rotate(-15deg);
  opacity: 0.72;
}

.not-found-card-mid {
  background-image: url('Design/card_36_image.webp');
  transform: translateX(-21%) translateY(-16px) rotate(12deg);
  opacity: 0.84;
}

.not-found-card-front {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(90, 47, 47, 0.16), rgba(16, 14, 16, 0.12)),
    url('Design/back_yellow.png') center/cover no-repeat;
  transform: translateX(-52%) translateY(-54px) rotate(-3deg);
}

.not-found-card-front span {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 218, 199, 0.44);
  border-radius: 50%;
  background: rgba(90, 47, 47, 0.5);
  color: #F4E1D5;
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 18px 42px rgba(24, 18, 17, 0.28);
}

@media (max-width: 900px) {
  .not-found-hero {
    padding: 28px 5% 44px;
  }

  .not-found-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 52px;
    text-align: center;
  }

  .not-found-copy,
  .not-found-text {
    margin-left: auto;
    margin-right: auto;
  }

  .not-found-actions {
    justify-content: center;
  }

  .not-found-visual {
    height: 380px;
    order: -1;
  }

  .not-found-card {
    width: 182px;
    height: 272px;
  }
}

@media (max-width: 600px) {
  .not-found-grid {
    padding-top: 38px;
  }

  .not-found-text {
    font-size: 17px;
  }

  .not-found-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .not-found-actions .primary-btn,
  .not-found-actions .secondary-btn {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .not-found-visual {
    height: 318px;
  }

  .not-found-card {
    width: 146px;
    height: 218px;
    border-radius: 16px;
  }

  .not-found-card-front span {
    width: 92px;
    height: 92px;
    font-size: 30px;
  }
}

/* ---------------- REVIEWS SECTION ---------------- */
.reviews-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, #F4E9E3 0%, #F1E1D9 50%, #F4E9E3 100%);
  display: flex;
  justify-content: center;
}

.reviews-section .container {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.reviews-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--dark-brown);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  width: 100%;
}

.review-card {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(145deg, #8C5053 0%, #4A2A34 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(238, 218, 199, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.review-card .quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-on-dark);
}

.review-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(238, 218, 199, 0.7);
}

/* ---------------- Responsive Updates ---------------- */
@media (max-width: 900px) {
  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .cta-left-column {
    justify-self: center;
    align-items: center;
  }

  .cta-phone-visual {
    justify-self: center;
    margin-left: 0;
  }

  .practice-cta-actions {
    justify-content: center;
  }

  .practice-cta-lead,
  .practice-cta-note {
    margin-left: auto;
    margin-right: auto;
  }

  .practice-cta-list li {
    text-align: left;
  }

  .results-lead {
    font-size: 24px;
  }

  .results-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-item {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .practice-cta-section {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .practice-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .practice-cta-list li {
    min-height: auto;
  }

  .practice-cta-actions .primary-btn,
  .practice-cta-actions .secondary-btn {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .checkout-modal {
    padding: 14px;
  }

  .checkout-dialog {
    padding: 30px 20px 22px;
  }

  .checkout-title {
    font-size: 28px;
  }

  .reviews-section {
    padding: 72px 5% 44px;
  }

  .author-section {
    padding-top: 52px;
  }

  .results-list {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Author Section ---------------- */
.author-section {
  padding: 96px 5% 56px;
  background: linear-gradient(180deg, #F4E9E3 0%, #F1E1D9 50%, #F4E9E3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.author-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  color: #5A2F2F;
  text-align: center;
  width: 100%;
}

.author-content {
  display: grid;
  grid-template-columns: 331px minmax(0, 645px);
  justify-content: center;
  align-items: center;
  gap: 44px;
  max-width: 1200px;
  width: 100%;
}

.author-photo-card {
  position: relative;
  justify-self: center;
  width: 331px;
  height: 389px;
  background: linear-gradient(150deg, rgba(246, 222, 217, 0.9) 0%, rgba(239, 201, 192, 0.85) 58%, rgba(229, 179, 169, 0.8) 100%);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 233, 225, 0.6);
  box-shadow: 0 10px 26px rgba(90, 47, 47, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.author-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.author-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-text-card {
  justify-self: center;
  width: 100%;
  max-width: 645px;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid transparent;
}

.author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #5A2F2F;
}

.author-role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #5A2F2F;
}

.author-divider {
  width: 76px;
  height: 5px;
  background-color: #5A2F2F;
  border-radius: 3px;
}

.author-body {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.author-body p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #5A2F2F;
}

/* ---------------- Philosophy Section ---------------- */
.philosophy-section {
  padding: 48px 5% 56px;
  background: linear-gradient(180deg, #F4E9E3 0%, #F1E1D9 50%, #F4E9E3 100%);
  display: grid;
  place-items: center;
}

.philosophy-section .container {
  max-width: none;
  padding: 0;
  display: grid;
  place-items: center;
}

.quote-box {
  width: min(100%, 760px);
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 96px;
  line-height: 1;
  color: #5A2F2F;
  margin-bottom: 4px;
}

.philosophy-quote {
  font-family: 'PT Serif', serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.9;
  color: #5A2F2F;
  margin-bottom: 24px;
  max-width: 700px;
  text-wrap: balance;
}

.philosophy-divider {
  width: 60px;
  height: 2px;
  background-color: #5A2F2F;
}

/* ---------------- FAQ Section ---------------- */
.faq-section {
  padding: 56px 5% 96px;
  background: linear-gradient(180deg, #F4E9E3 0%, #F1E1D9 50%, #F4E9E3 100%);
}

.faq-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #5A2F2F;
  text-align: center;
  margin-bottom: 26px;
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 30px;
  background: linear-gradient(145deg, #8C5053 0%, #4A2A34 100%);
  border: 1px solid rgba(238, 218, 199, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #EEDAC7;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  /* color: #FFF; */
}

/* Animation for the arrow/prefix */
.faq-question span::before {
  /* transition: transform 0.3s ease; */
  /* display: inline-block; */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* Adjust based on content */
  padding-bottom: 24px;
}

.faq-answer p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(238, 218, 199, 0.9);
}

/* ---------------- Footer ---------------- */
.footer {
  padding: 48px 5% 32px 5%;
  background: linear-gradient(135deg, #5A2F2F 0%, #6A3D3F 100%);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 1px;
  color: #EEDAC7;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.footer-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(238, 218, 199, 0.8);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: rgba(238, 218, 199, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #EEDAC7;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
}

.social-icon:hover {
  background: rgba(238, 218, 199, 0.3);
}

.footer-to-top {
  min-height: 44px;
  padding: 10px 18px 10px 14px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(20deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(145deg, #F4E1D5 0%, #D9AEB0 100%);
  border: 1px solid rgba(248, 232, 222, 0.7);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  color: #5A2F2F;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
}

.footer-to-top-arrow {
  font-size: 22px;
  line-height: 1;
}

.footer-to-top-text {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.footer-to-top:hover {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(248, 232, 222, 0.9);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(238, 218, 199, 0.2);
}

/* ---------------- Responsive FAQ & Author ---------------- */
@media (max-width: 900px) {
  .author-content {
    grid-template-columns: 1fr;
  }

  .author-photo-card,
  .author-text-card {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .author-text-card {
    padding: 30px 24px;
  }

  .author-name {
    font-size: 20px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
