:root {
  /* Brand Colors - Using Pink as Primary */
  --brand: #4B164C;
  --brand-600: #ff6bb8;
  --brand-700: #ff4da6;
  --brand-800: #ff2e94;
  --brand-dark: #4B164C;

  /* Backgrounds */
  --bg: #0f0f12;
  --surface: #23232a;
  --surface-2: #1a1a22;

  /* Text */
  --text: #f5eff7;
  --text-muted: white;

  /* Accents */
  --accent: #ff89c9;
  --accent-light: #ffb3db;
  --success: #58d1b8;

  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, #ff89c9 0%, #ff6bb8 100%);
  --gradient-radial: radial-gradient(circle at top right, rgba(255, 137, 201, 0.4), transparent 70%);
  --gradient-glow: linear-gradient(135deg, rgba(255, 137, 201, 0.3) 0%, rgba(255, 107, 184, 0.2) 100%);

  /* Glass & Blur Effects */
  --glass: rgba(255, 255, 255, .06);
  --glass-border: rgba(255, 255, 255, .18);
  --backdrop-blur: blur(20px) saturate(180%);

  /* Glow Effects */
  --glow-brand: 0 0 40px rgba(255, 137, 201, 0.6), 0 0 60px rgba(255, 137, 201, 0.4);
  --glow-accent: 0 0 30px rgba(255, 137, 201, 0.5), 0 0 50px rgba(255, 137, 201, 0.3);
  --glow-subtle: 0 0 20px rgba(255, 137, 201, 0.3);

  /* Shadows */
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .5);
  --shadow-glow: 0 0 60px rgba(255, 137, 201, 0.4), 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: black;
  background: var(--bg);
  line-height: 1.55;
  padding-top: 64px;
}

/* Global link styling: ensure all anchors and their contents are white across the site */
a,
a:visited,
a:hover,
a:active {
  color: #ffffff !important;
  text-decoration: none;
}

a *,
a:visited *,
a:hover *,
a:active * {
  color: #ffffff !important;
}

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
}

/* Blurred background image overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("Avtar%20Images/Other/11088.jpg") center/cover no-repeat;
  opacity: .08;
  filter: blur(30px) saturate(120%);
  transform: scale(1.05);
}

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

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgb(40 40 48 / 95%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  z-index: 1001;
}

.brand__logo {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--brand);
  box-shadow: 0 6px 18px rgba(75, 22, 76, .35);
}

.brand__text {
  letter-spacing: .2px;
}

/* Hamburger Menu */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.nav__hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -4px);
}

.nav__links {
  display: none;
  gap: 22px;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(15, 15, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s;
}

.nav__links.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:last-child {
  border-bottom: none;
}

#about {
  color: white;
}

/* Desktop/Mobile button visibility */
.btn--desktop {
  display: none;
}

.btn--mobile {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  border-bottom: none !important;
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.btn--lg {
  padding: 14px 22px;
  font-size: 16px;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 28px rgba(75, 22, 76, .45);
}

.btn--primary:hover {
  background: var(--brand-600);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .14);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .06);
}

.btn--soft {
  background: var(--brand);
  color: #ffd7ef;
}

.btn--soft:hover {
  background: var(--brand-600);
}

/* Hero */
.hero {
  padding: 96px 0 48px;
}

.hero--minimal .hero__visual .hero__card-info {
  display: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.headline {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: .2px;
  margin: 0 0 14px;
}

.subheadline {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 18px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(88, 209, 184, .12);
  color: var(--success);
  font-weight: 600;
  font-size: 12px;
  margin-right: 8px;
}

/* Coming soon pill */
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #ffd7ef;
  background: rgba(255, 137, 201, .18);
  border: 1px solid rgba(255, 255, 255, .16);
  margin-bottom: 12px;
}

.hero__visual {
  position: relative;
  min-height: 340px;
}

.hero__orb {
  display: none;
}

.device {
  position: relative;
  width: 280px;
  border-radius: 28px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.device--hero {
  position: absolute;
  right: 6%;
  top: 6%;
  width: 300px;
}

.deviceui {
  position: absolute;
  right: 6%;
  top: 6%;
  width: 80%;
  max-width: 85vw;
  border-radius: 28px;
  overflow: hidden;
}

.device__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 22px;
  background: rgba(0, 0, 0, .6);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.device__screen {
  background: #0f0b13;
  height: 560px;
  padding: 0;
  display: grid;
}

.screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

.app-chat {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.app-chat__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: #fff;
  font-weight: 700;
}

.status {
  color: #e9def1;
  font-weight: 700;
}

.app-chat__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px 0;
}

.msg {
  max-width: 80%;
  padding: 8px 10px;
  border-radius: 14px;
  font-size: 14px;
}

.msg--you {
  justify-self: end;
  background: rgba(255, 255, 255, .08);
}

.msg--her {
  justify-self: start;
  background: rgba(255, 137, 201, .14);
  color: #ffd7ef;
}

.app-chat__input {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 8px;
  align-items: center;
}

.app-chat__input .input {
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

.app-chat__input .send {
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

/* Mini app previews */
.mini {
  transform: scale(.98);
}

.app-stats {
  display: grid;
  gap: 10px;
  padding-top: 20px;
}

.stat {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 12px;
}

.stat__label {
  color: var(--text-muted);
  font-size: 12px;
}

.stat__value {
  font-weight: 800;
  font-size: 18px;
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 20px;
}

.tile {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  height: 90px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.dot--online {
  background: #5be2c7;
  box-shadow: 0 0 0 6px rgba(91, 226, 199, .15);
}

/* Sections */
.section {
  padding: 40px 0;
}

.section--alt {
  background: var(--bg);
}

.section--cta {
  text-align: center;
}

.section__head {
  text-align: center;
  margin-bottom: 28px;
}

.section__head h2 {
  font-size: 32px;
  margin: 0 0 8px;
}

.section__head p {
  margin: 0;
  color: black;
}

#blog .section__head {
  color: white;
}

#blog .section__head p,
#privacy,
#privacy {
  color: white;
}

/* Cards / surfaces */
.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: none;
}

.shadow-soft {
  box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
}

/* Blog */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(75, 22, 76, 0.3);
  color: #ffd7ef;
  margin-bottom: 10px;
}

.feature h3 {
  margin: 6px 0;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: var(--text-muted);
}

/* Avatars */
.avatars__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.avatar {
  padding: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.avatar__body {
  padding: 14px;
}

.traits {
  color: var(--text-muted);
  margin: 6px 0 12px;
}

/* Avatars carousel */
.avatars__rail {
  overflow: hidden;
}

.avatars__track {
  display: flex;
  gap: 16px;
  animation: scrollX 36s linear infinite;
  will-change: transform;
  padding: 4px;
}

.avatars__track:hover {
  animation-play-state: paused;
}

.avatars__track .avatar {
  width: 260px;
  flex: 0 0 auto;
}

/* Premium */
.premium__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list--checks li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--text-muted);
}

.list--checks li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #86f6db;
}

.premium__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  color: var(--text-muted);
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.quote blockquote {
  margin: 0 0 10px;
  font-size: 18px;
}

.quote figcaption {
  color: var(--text-muted);
}

/* Pricing */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.plan {
  padding: 16px;
}

.plan--featured {
  border: 2px solid rgba(255, 137, 201, .45);
  background: var(--surface);
  position: relative;
}

.plan__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.price {
  font-size: 24px;
  font-weight: 800;
}

.price__unit {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.duration {
  color: var(--text-muted);
  font-weight: 700;
}

.badge--rec {
  background: rgba(255, 137, 201, .2);
  color: #ffd7ef;
  border: 1px solid rgba(255, 137, 201, .5);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

/* Waitlist */
.waitlist__wrap {
  max-width: 760px;
}

.preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: center;
}

.preview__rail {
  overflow: hidden;
}

.preview__track {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: scrollX 30s linear infinite;
  will-change: transform;
}

.preview__track:hover {
  animation-play-state: paused;
}

.preview__track img {
  height: 520px;
  width: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: var(--surface-2);
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.waitlist {
  display: block;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, .12);
}

.waitlist__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.waitlist input[type="email"] {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--surface-2);
  color: var(--text);
  font-size: 16px;
  outline: none;
}

.waitlist input[type="email"]:focus {
  border-color: rgba(255, 137, 201, .55);
  box-shadow: 0 0 0 4px rgba(255, 137, 201, .15);
}

.alert {
  margin-top: 12px;
}

.alert--success {
  color: #b5ffe7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* CTA */
.store__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .08);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.store--ios {
  background: var(--surface);
}

.store--android {
  background: var(--surface);
}

.store__icon {
  font-size: 20px;
}

/* Footer */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--bg);
}

.footer__brand .muted {
  margin-top: 6px;
}

.footer__bottom {
  margin-top: 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.footer .brand {
  margin-bottom: 8px;
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer a {
  color: var(--text);
}

.footer__links a:hover {
  color: var(--text);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .08);
}

.footer__bottom {
  margin-top: 16px;
  text-align: center;
  color: var(--text-muted);
}

.muted {
  color: var(--text-muted);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (min-width: 760px) {

  .nav__hamburger {
    display: none;
  }

  .nav__links {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    max-height: none;
    transform: none;
    opacity: 1;
    transition: none;
  }

  .nav__links a {
    padding: 0;
    font-size: 14px;
    border-bottom: none;
  }

  .btn--desktop {
    display: inline-flex;
  }

  .btn--mobile {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
  }

  .headline {
    font-size: 56px;
  }

  .features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .avatars__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr auto;
  }
}

@media (max-width: 519.98px) {
  .avatars__track .avatar {
    width: 220px;
  }
}

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

/* Tablet tweaks */
@media (min-width: 520px) and (max-width: 759.98px) {
  .headline {
    font-size: 44px;
  }

  .preview__track img {
    height: 420px;
  }

  .deviceui {
    right: 4%;
    top: 8%;
    width: 300px;
  }

  .waitlist__row {
    grid-template-columns: 1fr auto;
  }
}

/* Phone tweaks */
@media (max-width: 519.98px) {
  #blog .card {
    grid-template-columns: inherit !important;
  }

  .nav__inner .btn--desktop {
    display: none;
  }

  .hero {
    padding: 72px 0 36px;
  }

  .headline {
    font-size: 34px;
  }

  .subheadline {
    font-size: 16px;
  }

  .avatar img {
    height: 200px;
  }

  .deviceui {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .preview__track img {
    height: 320px;
  }
}

/* Additional mobile improvements */
@media (max-width: 759.98px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 20px 0;
  }

  .blog-post {
    padding-top: 30px;
  }

  .section__head h2 {
    font-size: 28px;
  }

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

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .card {
    padding: 16px;
  }

  .feature {
    text-align: center;
  }

  .feature .icon {
    margin-left: auto;
    margin-right: auto;
  }

  .premium__cta {
    flex-direction: column;
  }

  .premium__cta .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }

  .footer__social {
    justify-content: center;
  }

  .pricing__grid {
    gap: 12px;
  }

  .testimonials__grid {
    gap: 12px;
  }

  .waitlist__row {
    gap: 8px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }

  .preview__track {
    animation: none;
  }
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-2px);
    transition: transform .2s ease;
  }
}

/* Social Share Section */
.social-share-section {
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.social-share-section__title {
  text-align: center;
  font-size: 24px;
  margin: 0 0 24px;
  color: var(--text);
  font-weight: 600;
}

.social-share {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.social-share__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.social-share__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
}

.social-share__btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-share__btn--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.social-share__btn--twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: #fff;
}

.social-share__btn--linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #fff;
}

.social-share__btn--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.social-share__btn--copy:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 759.98px) {
  .social-share-section {
    margin: 32px 0;
    padding: 24px 0;
  }

  .social-share-section__title {
    font-size: 20px;
    margin: 0 0 20px;
  }

  .social-share {
    gap: 12px;
  }

  .social-share__btn {
    width: 48px;
    height: 48px;
  }

  .social-share__btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 519.98px) {
  .social-share {
    gap: 10px;
  }

  .social-share__btn {
    width: 44px;
    height: 44px;
  }

  .social-share__btn svg {
    width: 18px;
    height: 18px;
  }
}

/* =============================================
   New Homepage Sections - Week 1-2 Quick Wins
   ============================================= */

/* Social Proof Band */
.social-proof-band {
  background: linear-gradient(135deg, rgba(75, 22, 76, 0.15) 0%, rgba(101, 30, 103, 0.1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  margin: 0;
}

.social-proof-band__content {
  text-align: center;
}

.social-proof-band__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--text);
  opacity: 0.9;
}

.social-proof-band__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat__value {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
}

.comparison-table {
  max-width: 900px;
  margin: 48px auto 0;
  background: var(--surface-2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table__header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: var(--surface);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  font-weight: 600;
}

.comparison-table__row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

.comparison-table__row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table__row:last-child {
  border-bottom: none;
}

.comparison-table__cell {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-table__cell--feature {
  font-weight: 500;
}

.comparison-table__cell--highlight {
  background: rgba(75, 22, 76, 0.1);
  color: var(--accent);
}

.comparison-table__cell .icon {
  flex-shrink: 0;
}

.comparison-table__cell .icon--check {
  color: var(--success);
}

.comparison-table__cell .icon--cross {
  color: rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(75, 22, 76, 0.05) 100%);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
}

.testimonials-carousel__track {
  position: relative;
  min-height: 320px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-card__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__rating .star {
  color: var(--accent);
}

.testimonial-card__quote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 24px;
  font-style: italic;
}

.testimonial-card__author {
  margin-bottom: 12px;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.testimonial-card__meta {
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.7;
}

.testimonial-card__benefit {
  display: inline-block;
  background: rgba(75, 22, 76, 0.3);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.testimonials-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.carousel-btn {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
}

.carousel-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

.testimonials__cta {
  text-align: center;
  margin-top: 48px;
}

/* Use Cases Section */
.use-cases {
  padding: 80px 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.use-case-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(75, 22, 76, 0.2);
}

.use-case-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(75, 22, 76, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.use-case-card__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
}

.use-case-card__for {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px;
  opacity: 0.8;
}

.use-case-card__benefit {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  opacity: 0.9;
}

/* Privacy & Safety Section */
.privacy-safety {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(75, 22, 76, 0.05) 0%, transparent 100%);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.privacy-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-card:hover {
  border-color: var(--success);
  box-shadow: 0 8px 24px rgba(88, 209, 184, 0.15);
}

.privacy-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 209, 184, 0.1);
  border-radius: 16px;
}

.privacy-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
}

.privacy-card__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.8;
  margin: 0;
}

.privacy-safety__cta {
  text-align: center;
  margin-top: 48px;
}

/* Responsive adjustments for new sections */
@media (max-width: 759.98px) {
  .social-proof-band {
    padding: 24px 0;
  }

  .social-proof-band__stats {
    gap: 32px;
  }

  .stat__value {
    font-size: 28px;
  }

  .comparison-table {
    border-radius: 12px;
  }

  .comparison-table__header,
  .comparison-table__row {
    grid-template-columns: 1.5fr 1fr 1fr;
    font-size: 14px;
  }

  .comparison-table__cell {
    padding: 16px 12px;
    gap: 8px;
  }

  .comparison-table__cell span {
    font-size: 13px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card__quote {
    font-size: 16px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 520px) {

  .comparison-table__header,
  .comparison-table__row {
    font-size: 12px;
  }

  .comparison-table__cell {
    padding: 12px 8px;
  }

  .comparison-table__cell .icon {
    width: 16px;
    height: 16px;
  }
}

/* =============================================
   MODERN HERO SECTION
   Simplified bold design with split layout
   ============================================= */

.hero-modern {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 100%);
}

.hero-modern__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
}

/* Left: Text Content */
.hero-modern__text {
  animation: fadeInUp 0.8s ease;
}

.pill-modern {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 137, 201, 0.1);
  border: 1px solid rgba(255, 137, 201, 0.3);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-modern__headline {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #ffffff 0%, #ff89c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-modern__subheadline {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

.hero-modern__cta {
  margin-bottom: 24px;
}

.hero-cta-badge {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-cta-wrapper:hover .hero-cta-badge {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(255, 137, 201, 0.4));
}

.hero-modern__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.badge-modern {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-modern__stats {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

/* Right: Image */
.hero-modern__image {
  position: relative;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-featured-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.hero-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 137, 201, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

/* Chat Preview */
.hero-chat-preview {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 280px;
  padding: 16px;
  animation: float 3s ease-in-out infinite;
}

.chat-preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.chat-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-info {
  flex: 1;
}

.chat-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.chat-status {
  font-size: 12px;
  color: var(--accent);
}

.chat-message {
  padding: 12px;
  background: rgba(255, 137, 201, 0.15);
  border: 1px solid rgba(255, 137, 201, 0.3);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Background Elements */
.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 137, 201, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.3;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 137, 201, 0.2) 0%, transparent 70%);
  filter: blur(60px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 10s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-modern__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-modern__text {
    text-align: center;
  }

  .hero-modern__headline {
    font-size: 48px;
  }

  .hero-modern__badges,
  .hero-modern__stats {
    justify-content: center;
  }

  .hero-chat-preview {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 20px auto 0;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 80px 0 60px;
  }

  .hero-modern__headline {
    font-size: 36px;
  }

  .hero-modern__subheadline {
    font-size: 16px;
  }

  .hero-cta-badge {
    height: 52px;
  }

  .hero-modern__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }
}

/* ========================================
   FEATURED CHARACTERS - TAB DESIGN (LIGHT THEME)
   ======================================== */

.featured-characters-tabs {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #495057;
  max-width: 600px;
  margin: 0 auto;
}

/* Character Tabs */
.character-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 137, 201, 0.3) transparent;
}

.character-tabs::-webkit-scrollbar {
  height: 6px;
}

.character-tabs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.character-tabs::-webkit-scrollbar-thumb {
  background: rgba(255, 137, 201, 0.3);
  border-radius: 3px;
}

.character-tab {
  flex-shrink: 0;
  width: 100px;
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.character-tab:hover {
  background: #fff5fb;
  border-color: #ff89c9;
  box-shadow: 0 4px 12px rgba(255, 137, 201, 0.2);
}

.character-tab.active {
  background: linear-gradient(135deg, #ff89c9 0%, #4B164C 100%);
  border-color: #ff89c9;
  box-shadow: 0 4px 20px rgba(255, 137, 201, 0.4);
}

.character-tab__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 8px;
  border: 2px solid #dee2e6;
}

.character-tab.active .character-tab__avatar {
  border-color: white;
}

.character-tab__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character-tab__name {
  font-size: 13px;
  font-weight: 600;
  color: #495057;
}

.character-tab.active .character-tab__name {
  color: white;
}

/* Character Panels */
.character-content {
  position: relative;
  min-height: 500px;
}

.character-panel {
  display: none;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.character-panel.active {
  display: block;
}

.character-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Character Image */
.character-panel__image {
  position: relative;
}

.character-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.character-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.character-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 137, 201, 0.3) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

/* Character Info */
.character-panel__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.character-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}

.character-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #4B164C 0%, #ff89c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.character-subtitle {
  font-size: 18px;
  color: #495057;
  margin: 0 0 12px;
}

.character-traits {
  display: inline-block;
  padding: 6px 16px;
  background: #fff5fb;
  border: 1px solid #ff89c9;
  border-radius: 20px;
  font-size: 13px;
  color: #4B164C;
  font-weight: 500;
}

.character-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}

/* Character Chat */
.character-chat {
  padding: 16px;
  border-radius: 16px;
  background: white;
  border: 1px solid #dee2e6;
}

.chat-header-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #868e96;
  font-weight: 600;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 90%;
}

.chat-msg--her {
  background: linear-gradient(135deg, #fff5fb 0%, #ffe8f5 100%);
  border: 1px solid #ffb3d9;
  color: #4B164C;
  align-self: flex-start;
  border-radius: 14px 14px 14px 4px;
}

.chat-msg--you {
  background: #e9ecef;
  border: 1px solid #dee2e6;
  color: #495057;
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
}

.btn--glow {
  box-shadow: 0 0 30px rgba(255, 137, 201, 0.4);
}

.btn--glow:hover {
  box-shadow: 0 0 40px rgba(255, 137, 201, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .character-panel__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .character-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .featured-characters-tabs {
    padding: 60px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .character-tabs {
    gap: 12px;
  }

  .character-tab {
    width: 85px;
    padding: 10px;
  }

  .character-tab__avatar {
    width: 60px;
    height: 60px;
  }

  .character-tab__name {
    font-size: 12px;
  }

  .character-title {
    font-size: 32px;
  }

  .character-subtitle {
    font-size: 16px;
  }

  .character-desc {
    font-size: 14px;
  }
}

/* ========================================
   FEATURES + BENEFITS MERGED - CLEAN GRID
   ======================================== */

.features-benefits-merged {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.features-benefits-merged::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('images/lifestyle/couple-intimate.jpg') center/cover no-repeat;
  filter: blur(120px) brightness(1.2);
  opacity: 0.12;
  z-index: 0;
}

.features-benefits-merged::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.06) 0%, transparent 70%);
  z-index: 1;
}

.features-benefits-merged .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* Feature Card */
.feature-card {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #8a2be2;
  box-shadow: 0 20px 60px rgba(138, 43, 226, 0.15);
}

.feature-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(75, 22, 76, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a2be2;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, #4b164c 0%, #8a2be2 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #0a0015;
  margin: 0 0 16px;
}

.feature-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-value {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .features-benefits-merged {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .feature-card__icon {
    width: 64px;
    height: 64px;
  }

  .feature-card__title {
    font-size: 18px;
  }

  .feature-card__desc {
    font-size: 14px;
  }

  .features-stats {
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
    padding: 32px;
  }

  .stat-divider {
    display: none;
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* OLD BENTO STYLES - KEEP FOR COMPATIBILITY */
/* Card Content */
.bento-card__content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 137, 201, 0.15);
  border: 1px solid rgba(255, 137, 201, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.bento-card--image .bento-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.bento-card--image .bento-icon svg {
  stroke: white;
}

.bento-icon svg {
  stroke: #4B164C;
}

.bento-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #212529;
}

.bento-card--image .bento-title {
  color: white;
}

.bento-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

.bento-card--image .bento-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Small Card Adjustments */
.bento-card--small .bento-card__content {
  padding: 30px 24px;
  justify-content: center;
  text-align: center;
}

.bento-card--small .bento-icon {
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.bento-card--small .bento-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.bento-card--small .bento-desc {
  font-size: 13px;
}

/* Stats in Wide Card */
.bento-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.bento-stat {
  text-align: center;
}

.bento-stat__value {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #4B164C 0%, #ff89c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.bento-stat__label {
  font-size: 14px;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {

  .bento-card--large,
  .bento-card--medium {
    grid-column: span 6;
  }

  .bento-card--small {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .features-benefits-merged {
    padding: 80px 0;
  }

  .bento-grid {
    gap: 16px;
  }

  .bento-card--large,
  .bento-card--medium,
  .bento-card--small,
  .bento-card--wide {
    grid-column: span 12;
    min-height: 280px;
  }

  .bento-card__content {
    padding: 32px 24px;
  }

  .bento-title {
    font-size: 24px;
  }

  .bento-desc {
    font-size: 15px;
  }

  .bento-stats {
    flex-direction: column;
    gap: 32px;
  }

  .bento-stat__value {
    font-size: 40px;
  }
}

/* ========================================
   WHY CHOOSE - BOLD SPLIT SCREEN
   ======================================== */

.why-choose-split {
  padding: 0;
  overflow: hidden;
}

.split-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Split Side Base */
.split-side {
  position: relative;
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.split-side:hover .split-bg {
  transform: scale(1.05);
}

/* Desaturated Effect for Others */
.split-bg--desaturated {
  filter: grayscale(80%) brightness(0.6);
}

/* Overlays */
.split-overlay {
  position: absolute;
  inset: 0;
}

.split-overlay--vibrant {
  background: linear-gradient(135deg, rgba(75, 22, 76, 0.9) 0%, rgba(138, 43, 226, 0.85) 100%);
}

.split-overlay--dark {
  background: linear-gradient(135deg, rgba(10, 0, 21, 0.95) 0%, rgba(50, 50, 50, 0.9) 100%);
}

/* Split Content */
.split-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.split-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.split-badge--muted {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.split-title {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin: 0 0 16px;
  line-height: 1.1;
}

.split-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
}

/* Features List */
.split-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 4px;
  stroke: white;
}

.split-feature--negative .feature-icon {
  background: rgba(255, 0, 0, 0.15);
  stroke: rgba(255, 255, 255, 0.5);
}

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

.feature-content strong {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.feature-content span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.split-feature--negative .feature-content strong,
.split-feature--negative .feature-content span {
  color: rgba(255, 255, 255, 0.5);
}

/* CTA Button */
body .split-cta {
  display: inline-block;
  padding: 16px 32px;
  background: white;
  color: #4B164C !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.split-cta:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: #ff89c9;
  color: white;
}

/* VS Divider */
.split-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.split-vs {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff89c9 0%, #8a2be2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: white;
  box-shadow: 0 0 40px rgba(255, 137, 201, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .split-container {
    grid-template-columns: 1fr;
  }

  .split-side {
    padding: 80px 40px;
    min-height: 70vh;
  }

  .split-divider {
    display: none;
  }

  .split-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .split-side {
    padding: 60px 24px;
    min-height: 60vh;
  }

  .split-title {
    font-size: 32px;
  }

  .feature-content strong {
    font-size: 16px;
  }

  .feature-content span {
    font-size: 14px;
  }
}

/* ========================================
   REAL STORIES - LIFESTYLE PHOTOGRAPHY
   ======================================== */

.real-stories {
  padding: 100px 0;
  background: #f8f9fa;
}

/* Stories Grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* Story Card Sizes */
.story-card {
  grid-column: span 1;
  min-height: 450px;
}

.story-card--large {
  grid-column: span 2;
  min-height: 500px;
}

/* Story Card Base */
.story-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.story-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.story-card:hover .story-image {
  transform: scale(1.08);
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 0, 21, 0.95) 0%, rgba(10, 0, 21, 0.4) 50%, transparent 100%);
}

/* Story Content */
.story-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.story-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 137, 201, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 137, 201, 0.5);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  width: fit-content;
}

.story-quote {
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: white;
  margin: 0 0 24px;
  quotes: '"' '"';
}

.story-quote::before {
  content: open-quote;
}

.story-quote::after {
  content: close-quote;
}

.story-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.author-info strong {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.author-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.story-benefit {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

/* Stories CTA */
.stories-cta {
  text-align: center;
  margin-top: 60px;
  padding: 60px 0 0;
  border-top: 1px solid #dee2e6;
}

.stories-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 24px;
}

.btn--large {
  padding: 18px 48px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-card--large {
    grid-column: span 2;
  }

  .story-card {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .real-stories {
    padding: 80px 0;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-card,
  .story-card--large {
    grid-column: span 1;
    min-height: 400px;
  }

  .story-content {
    padding: 32px 24px;
  }

  .story-quote {
    font-size: 16px;
  }

  .story-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .stories-cta h3 {
    font-size: 28px;
  }
}

/* ===================================
   App Preview 3D Carousel
   =================================== */

/* ===================================
   App Preview - Modern Grid Design
   =================================== */

.app-preview-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
  position: relative;
}

.preview-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Phone Showcase */
.preview-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-phone {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 80px rgba(255, 137, 201, 0.3));
}

.phone-bezel {
  position: relative;
  width: 320px;
  height: 650px;
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 45px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 40px 100px rgba(0, 0, 0, 0.4);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 28px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 3;
}

.phone-screen-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
}

.preview-screenshot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.preview-screenshot.active {
  opacity: 1;
  pointer-events: all;
}

.preview-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 137, 201, 0.3) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Navigation Dots */
.preview-nav-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.preview-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.preview-nav-dot:hover {
  background: #9ca3af;
  transform: scale(1.2);
}

.preview-nav-dot.active {
  background: var(--brand);
  width: 32px;
  border-radius: 6px;
}

/* Feature Cards Grid */
.preview-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.preview-feature-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0.5;
}

.preview-feature-card.active {
  opacity: 1;
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(255, 137, 201, 0.15);
}

.feature-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.feature-card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Trust Banner */
.preview-trust-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
  padding: 32px 48px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-banner-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-banner-icon {
  font-size: 32px;
  display: block;
}

.trust-banner-item>div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-banner-item strong {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  display: block;
}

.trust-banner-item span {
  font-size: 14px;
  color: #6b7280;
  display: block;
}

.trust-banner-divider {
  width: 1px;
  height: 48px;
  background: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .preview-modern-grid {
    gap: 60px;
  }

  .phone-bezel {
    width: 280px;
    height: 570px;
  }

  .preview-features-grid {
    gap: 20px;
  }

  .preview-feature-card {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .app-preview-modern {
    padding: 60px 0;
  }

  .preview-modern-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .phone-bezel {
    width: 260px;
    height: 530px;
    border-radius: 40px;
    padding: 12px;
  }

  .phone-screen-content {
    border-radius: 28px;
  }

  .preview-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .preview-feature-card {
    padding: 24px;
  }

  .feature-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .feature-card-title {
    font-size: 16px;
  }

  .feature-card-desc {
    font-size: 13px;
  }

  .preview-trust-banner {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
    margin-top: 48px;
  }

  .trust-banner-divider {
    width: 100%;
    height: 1px;
  }

  .trust-banner-item {
    gap: 12px;
  }

  .trust-banner-icon {
    font-size: 28px;
  }

  .trust-banner-item strong {
    font-size: 16px;
  }

  .trust-banner-item span {
    font-size: 13px;
  }
}

/* ===================================
   Privacy & Safety - Condensed
   =================================== */

.privacy-safety {
  padding: 0px 0 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 40px;
}

.privacy-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.privacy-card:hover {
  border-color: #8a2be2;
  box-shadow: 0 10px 30px rgba(75, 22, 76, 0.1);
}

.privacy-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(75, 22, 76, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  border-radius: 16px;
  color: #8a2be2;
}

.privacy-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.privacy-card__description {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.privacy-safety__cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .privacy-safety {
    padding: 60px 0;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .privacy-card {
    padding: 24px;
  }

  .privacy-card__icon {
    width: 56px;
    height: 56px;
  }

  .privacy-card__title {
    font-size: 16px;
  }

  .privacy-card__description {
    font-size: 14px;
  }
}

/* ===================================
   Week 3: Advanced Animations
   =================================== */

/* Scroll Progress Bar - Removed */

/* Navbar Scroll Effects */
.nav--scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav--hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* Data Animate - Scroll Triggered */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Word Reveal Animation */
.word-reveal {
  display: inline-block;
  opacity: 0;
  animation: wordReveal 0.6s ease forwards;
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Button Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Card Tilt Effect */
.bento-card,
.privacy-card,
.story-card {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

/* Cursor Trail */
.cursor-trail-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #ff89c9 0%, #8a2be2 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.cursor-trail-dot:nth-child(1) {
  opacity: 0.5;
}

.cursor-trail-dot:nth-child(2) {
  opacity: 0.45;
}

.cursor-trail-dot:nth-child(3) {
  opacity: 0.4;
}

.cursor-trail-dot:nth-child(4) {
  opacity: 0.35;
}

.cursor-trail-dot:nth-child(5) {
  opacity: 0.3;
}

.cursor-trail-dot:nth-child(6) {
  opacity: 0.25;
}

.cursor-trail-dot:nth-child(7) {
  opacity: 0.2;
}

.cursor-trail-dot:nth-child(8) {
  opacity: 0.15;
}

.cursor-trail-dot:nth-child(9) {
  opacity: 0.1;
}

.cursor-trail-dot:nth-child(10) {
  opacity: 0.05;
}

/* Magnetic Button Effect */
.btn--primary,
.cta-button {
  transition: transform 0.3s ease;
}

/* Image Lazy Load Effect */
img[data-src],
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.loaded {
  opacity: 1;
}

/* Skeleton Loading States */
.skeleton {
  background: linear-gradient(90deg,
      #f0f0f0 25%,
      #e0e0e0 50%,
      #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-title {
  height: 32px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.skeleton-image {
  height: 200px;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* Fade In Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-down {
  animation: fadeInDown 0.6s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease forwards;
}

/* Stagger delays for groups */
.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

.stagger-5 {
  animation-delay: 0.5s;
}

.stagger-6 {
  animation-delay: 0.6s;
}

/* Hover Effects Enhancement */
.btn:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(138, 43, 226, 0.3);
}

.btn:active,
.cta-button:active {
  transform: translateY(0);
}

/* Loading Spinner */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #8a2be2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulse Animation */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Bounce Animation */
@keyframes bounce {

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

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.bounce {
  animation: bounce 2s ease infinite;
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
select,
textarea {
  transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #8a2be2;
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-trail-dot {
    display: none;
  }
}

/* Print styles */
@media print {

  .nav,
  .cursor-trail-dot,
  .cta,
  footer {
    display: none !important;
  }

  * {
    background: white !important;
    color: black !important;
  }
}

/* Fix for section title visibility */
.section-title,
.section__title {
  color: #0a0015 !important;
  position: relative;
  z-index: 2;
}

/* Gradient text removed - using solid colors */

/* ===================================
   Final CTA Section
   =================================== */

.cta-final {
  padding: 120px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: url('images/lifestyle/couple-beach.jpg') center/cover no-repeat;
  filter: blur(80px) brightness(0.6);
  opacity: 0.2;
  z-index: 0;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(75, 22, 76, 0.9) 0%, rgba(138, 43, 226, 0.85) 100%);
  z-index: 1;
}

.cta-final .container {
  position: relative;
  z-index: 2;
}

.cta-final__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-final__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  animation: pulse 3s ease-in-out infinite;
}

.cta-final__title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.2;
}

.cta-final__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 48px;
  line-height: 1.6;
}

.cta-final__actions {
  margin-bottom: 48px;
}

.cta-download-badge {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-download-badge:hover {
  transform: scale(1.05);
}

.cta-download-badge img {
  /* height: 70px; */
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.cta-final__features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 500;
}

.cta-feature svg {
  color: #5be2c7;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-final {
    padding: 80px 0;
  }

  .cta-final__icon {
    width: 80px;
    height: 80px;
  }

  .cta-final__title {
    font-size: 36px;
  }

  .cta-final__subtitle {
    font-size: 18px;
  }

  .cta-download-badge img {
    /* height: 60px; */
  }

  .cta-final__features {
    flex-direction: column;
    gap: 20px;
  }

  .cta-feature {
    font-size: 15px;
  }
}

/* ===================================
   Modern Footer
   =================================== */

.footer-modern {
  background: #0a0015;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-modern__main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern__brand {
  max-width: 400px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-brand__logo {
  font-size: 32px;
  color: #ff89c9;
}

.footer-brand__text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.footer-modern__tagline {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

.footer-download {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-download:hover {
  transform: translateY(-2px);
}

.footer-download img {
  height: 50px;
}

.footer-modern__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0 0 20px;
}

.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col__list li {
  margin-bottom: 12px;
}

.footer-col__list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col__list a:hover {
  color: #ff89c9;
}

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

.footer-modern__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-modern__badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-modern__main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-modern__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 60px 0 24px;
  }

  .footer-modern__main {
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-modern__links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-modern__badges {
    justify-content: center;
  }

  .footer-badge {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* ===================================
   Enhanced Hero Section
   =================================== */

.hero-enhanced {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 50%, #0a0015 100%);
}

.hero-enhanced__bg {
  position: absolute;
  inset: 0;
  background: url('images/lifestyle/couple-intimate.jpg') center/cover no-repeat;
  filter: blur(100px) brightness(0.4);
  opacity: 0.3;
  z-index: 0;
}

.hero-enhanced__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-enhanced__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Side - Text */
.hero-enhanced__text {
  max-width: 600px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease;
}

.hero-pill__dot {
  width: 8px;
  height: 8px;
  background: #5be2c7;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-enhanced__headline {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-enhanced__headline .highlight {
  color: #ff89c9;
  position: relative;
}

.hero-enhanced__subheadline {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Buttons */
.hero-enhanced__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-btn--primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 137, 201, 0.4);
}

.hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 137, 201, 0.5);
}

.hero-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

/* Trust Indicators */
.hero-enhanced__trust {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 28px;
}

.trust-content {
  display: flex;
  flex-direction: column;
}

.trust-value {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Right Side - Image */
.hero-enhanced__image {
  position: relative;
  animation: fadeIn 0.8s ease 1s both;
}

.hero-image-main {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image-main img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hero-image-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

/* Floating Chat Card */
.hero-chat-card {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

.chat-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-name {
  font-weight: 700;
  color: #0a0015;
  font-size: 15px;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6c757d;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #5be2c7;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.message-bubble {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 137, 201, 0.1) 100%);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  color: #1a0a2e;
  margin-bottom: 12px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 10px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #8a2be2;
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

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

  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Floating Stats */
.hero-floating-stat {
  position: absolute;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: float 8s ease-in-out infinite;
}

.hero-floating-stat--1 {
  top: 60px;
  right: -60px;
  animation-delay: -2s;
}

.hero-floating-stat--2 {
  bottom: 140px;
  right: -40px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: -4s;
}

.floating-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #4b164c;
  line-height: 1;
}

.floating-stat-label {
  font-size: 12px;
  color: #1a0a2e;
  margin-top: 4px;
}

.floating-stat-icon {
  font-size: 24px;
}

.floating-stat-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a0a2e;
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
}

.hero-decoration--1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #ff89c9 0%, #8a2be2 100%);
  top: -250px;
  left: -150px;
}

.hero-decoration--2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #8a2be2 0%, #4b164c 100%);
  bottom: -200px;
  right: -100px;
}

.hero-decoration--3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #5be2c7 0%, #8a2be2 100%);
  top: 40%;
  right: 5%;
}

/* Animations */
@keyframes float {

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

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-enhanced__content {
    gap: 60px;
  }

  .hero-enhanced__headline {
    font-size: 56px;
  }

  .hero-chat-card {
    left: 0;
    width: 260px;
  }

  .hero-floating-stat--1 {
    right: -20px;
  }

  .hero-floating-stat--2 {
    right: 0;
  }
}

@media (max-width: 768px) {
  .hero-enhanced {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-enhanced__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-enhanced__text {
    text-align: center;
    max-width: 100%;
  }

  .hero-enhanced__headline {
    font-size: 42px;
  }

  .hero-enhanced__subheadline {
    font-size: 18px;
  }

  .hero-enhanced__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-enhanced__trust {
    flex-direction: column;
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .hero-chat-card {
    position: static;
    margin: 40px auto 0;
    max-width: 300px;
  }

  .hero-floating-stat {
    display: none;
  }

  .hero-decoration {
    display: none;
  }
}

/* ===================================
   About Page Styles
   =================================== */

/* About Hero */
.about-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0015 0%, #1a0a2e 100%);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: radial-gradient(circle at top right, rgba(255, 137, 201, 0.2) 0%, transparent 50%);
}

.about-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-hero__title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin: 24px 0 20px;
  line-height: 1.2;
}

.about-hero__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

/* About Sections */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-section--alt {
  background: #f8f9fa;
}

.about-section--highlight {
  background: linear-gradient(135deg, rgba(255, 137, 201, 0.05) 0%, rgba(255, 137, 201, 0.02) 100%);
}

/* About Cards Grid */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.about-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 137, 201, 0.15);
}

.about-card__icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block;
}

.about-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
}

.about-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* About Split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-split__content {
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
}

.about-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.about-split__content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
}

.about-split__content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.about-split__content p:last-child {
  margin-bottom: 0;
}

/* About Features Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.about-feature-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.about-feature-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(255, 137, 201, 0.12);
}

.about-feature-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 137, 201, 0.1) 0%, rgba(255, 137, 201, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand);
}

.about-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
}

.about-feature-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* About CTA */
.about-cta {
  text-align: center;
  padding: 40px 0px;
  border-radius: 24px;
}

.about-cta p {
  font-size: 18px;
  color: #4b5563;
  margin: 0 0 24px 0;
}

/* About Highlight */
.about-highlight {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid #e5e7eb;
}

.about-highlight__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.about-highlight h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 20px 0;
}

.about-highlight p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* About Bottom Grid */
.about-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-contact-card,
.about-links-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 48px 40px;
}

.about-contact-card h2,
.about-links-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
}

.about-contact-card p,
.about-links-card p {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 32px 0;
}

.about-contact-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-links-list li {
  margin-bottom: 16px;
}

.about-links-list li:last-child {
  margin-bottom: 0;
}

.about-links-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.about-links-list a:hover {
  background: rgba(255, 137, 201, 0.1);
  color: var(--brand);
  transform: translateX(4px);
}

.about-links-list svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-bottom-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-hero__title {
    font-size: 36px;
  }

  .about-hero__subtitle {
    font-size: 16px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-split__content {
    padding: 32px 24px;
  }

  .about-highlight {
    padding: 40px 24px;
  }

  .about-highlight h2 {
    font-size: 28px;
  }

  .about-highlight p {
    font-size: 16px;
  }

  .about-contact-card,
  .about-links-card {
    padding: 32px 24px;
  }
}