@charset "UTF-8";
.animate {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0ms;
}
.animate.fade-top {
  transform: translateY(50px);
}
.animate.fade-bottom {
  transform: translateY(-50px);
}
.animate.fade-right {
  transform: translateX(50px);
}
.animate.fade-left {
  transform: translateX(-50px);
}
.animate.fade-in {
  transform: none;
}
.animate.is-visible {
  opacity: 1;
  transform: none;
}

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: #fff;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  animation: loader-pulse 1.8s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f857a6;
  border-right-color: #ff5858;
  animation: loader-spin 1.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-ring-outer {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(248, 87, 166, 0.15);
  border-bottom-color: rgba(248, 87, 166, 0.4);
  animation: loader-spin-reverse 2.2s linear infinite;
}

.loader-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
}

.loader-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loader-pulse 1.8s ease-in-out infinite;
}

.loader-dots {
  display: flex;
  gap: 6px;
}
.loader-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  animation: loader-bounce 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loader-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes loader-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.96);
  }
}
@keyframes loader-bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  color: #ffffff;
  overflow-x: clip;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.scrolled {
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
nav.scrolled .logo, nav.scrolled .nav-links a, nav.scrolled .social-links a, nav.scrolled .menu-toggle span {
  color: #333333;
  border-color: rgba(0, 0, 0, 0.1);
}
nav.scrolled .nav-links .nav-submenu a {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
}
nav.scrolled .menu-toggle span {
  background: #333333;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.4rem;
  color: #ffffff;
  text-decoration: none;
}
.logo .logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}
.logo .logo-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-links .has-submenu {
  position: relative;
}
.nav-links .has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}
.nav-links .has-submenu:not(.submenu-force-close):hover .nav-submenu, .nav-links .has-submenu:not(.submenu-force-close):focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-links .has-submenu.submenu-force-close .nav-submenu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}
.nav-links .nav-submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.nav-links .nav-submenu a {
  font-size: 0.9rem;
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav-links .nav-submenu a::after {
  display: none;
}
.nav-links .nav-submenu a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.is-active::after {
  transform: scaleX(1);
}
.nav-links a:hover {
  opacity: 0.7;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 9px;
}
.menu-toggle span:nth-child(3) {
  top: 18px;
}
.menu-toggle.open span {
  background: #ffffff !important;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(160deg, #1a0533 0%, #3b0764 50%, #1a0533 100%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-overlay::before {
  content: "CouturePro";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.mobile-overlay .mobile-nav-links {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.mobile-overlay .mobile-nav-links > li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-overlay .mobile-nav-links > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-overlay .mobile-nav-links a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 700;
  padding: 22px 40px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-overlay .mobile-nav-links a:hover, .mobile-overlay .mobile-nav-links a:active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.mobile-overlay .mobile-nav-links .mobile-submenu {
  list-style: none;
  padding: 10px 16px 14px;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mobile-overlay .mobile-nav-links .mobile-submenu a {
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 10px;
  border-radius: 8px;
  text-align: center;
}
.mobile-overlay .mobile-overlay-socials {
  position: absolute;
  bottom: 48px;
  display: flex;
  gap: 16px;
}
.mobile-overlay .mobile-overlay-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.mobile-overlay .mobile-overlay-socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

nav.nav-open {
  background: transparent !important;
  box-shadow: none !important;
}
nav.nav-open .logo {
  opacity: 0;
  pointer-events: none;
}
nav.nav-open .menu-toggle span {
  background: #ffffff !important;
}

@media (max-width: 768px) {
  .nav-links,
  .social-links {
    display: none;
  }
  .mobile-overlay .mobile-nav-links {
    max-height: calc(100dvh - 150px);
    overflow-y: auto;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
  }
  nav.scrolled .menu-toggle span {
    background: #333333;
  }
  nav.scrolled .menu-toggle.open span {
    background: #333333;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  color: #ffffff;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-decor__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
}
.hero-decor__ring--sm {
  width: 380px;
  height: 380px;
}
.hero-decor__ring--md {
  width: 640px;
  height: 640px;
  border-color: rgba(255, 255, 255, 0.09);
}
.hero-decor__ring--lg {
  width: 900px;
  height: 900px;
  border-color: rgba(255, 255, 255, 0.05);
}
.hero-decor__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 80px;
}

.hero-text {
  flex: 1.1;
}
.hero-text .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50px;
  padding: 6px 18px 6px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #ffffff;
}
.hero-text .hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.hero-text h1 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero-text h1 em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}
.hero-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0.88;
  max-width: 480px;
}
.hero-text .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-text .cta-group a {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hero-text .cta-group a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}
.hero-text .cta-group img {
  height: 50px;
  display: block;
}
.hero-text small {
  display: block;
  font-size: 0.76rem;
  opacity: 0.5;
  letter-spacing: 0.03em;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-fan {
  position: relative;
}
.hero-fan::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-fan__card--center {
  position: relative;
  z-index: 3;
  transform-origin: bottom center;
  transition: transform 0.35s ease;
}
.hero-fan__card--center .phone {
  display: block;
  width: 240px;
  border-radius: 28px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}
.hero-fan__card--left, .hero-fan__card--right {
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: bottom center;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.85;
  z-index: 1;
}
.hero-fan__card--left .phone, .hero-fan__card--right .phone {
  display: block;
  width: 240px;
  border-radius: 28px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}
.hero-fan__card--left {
  transform: rotate(-20deg);
}
.hero-fan__card--right {
  transform: rotate(20deg);
}
.hero-fan:hover .hero-fan__card--left {
  transform: rotate(-26deg) translateY(-8px);
}
.hero-fan:hover .hero-fan__card--right {
  transform: rotate(26deg) translateY(-8px);
}
.hero-fan:hover .hero-fan__card--center {
  transform: translateY(-10px);
}

@media (max-width: 992px) {
  .hero-flex {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
    gap: 50px;
  }
  .hero-text .hero-tag {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero-text p {
    max-width: 100%;
  }
  .hero-text .cta-group {
    justify-content: center;
  }
  .hero-fan__card--center .phone, .hero-fan__card--left .phone, .hero-fan__card--right .phone {
    width: 160px;
    border-radius: 20px;
  }
  .hero-decor__ring,
  .hero-decor__glow {
    right: 50%;
    top: 20%;
    transform: translateX(50%);
  }
}
.features {
  padding: 120px 0 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 87, 166, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-header .features-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(248, 87, 166, 0.1), rgba(255, 88, 88, 0.08));
  border: 1px solid rgba(248, 87, 166, 0.28);
  color: #f857a6;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.features-header .features-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f857a6;
  flex-shrink: 0;
}
.features-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #222222;
  line-height: 1.2;
  margin-bottom: 16px;
}
.features-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-header p {
  font-size: 1rem;
  color: #666666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.feature-item {
  position: relative;
  padding: 44px 36px 40px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.35s all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.35s ease;
}
.feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0 0 24px 24px;
}
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(248, 87, 166, 0.12);
  border-color: rgba(248, 87, 166, 0.2);
}
.feature-item:hover::after {
  transform: scaleX(1);
}
.feature-item:hover .icon-wrap {
  transform: scale(1.08);
}
.feature-item .feature-number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.feature-item .icon {
  margin-bottom: 28px;
}
.feature-item .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(248, 87, 166, 0.12), rgba(255, 88, 88, 0.08));
  transition: transform 0.35s all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.feature-item .icon img {
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.feature-item h3 {
  color: #222222;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 500;
}
.feature-item p {
  color: #777777;
  line-height: 1.7;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-item {
    max-width: 560px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .features {
    padding: 80px 0;
  }
  .features-header h2 {
    font-size: 1.8rem;
  }
  .feature-item {
    padding: 36px 28px 32px;
  }
}
.capture-thoughts {
  padding: 120px 0;
  background: #fafafa;
  overflow: hidden;
  position: relative;
}
.capture-thoughts::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 87, 166, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.capture-flex {
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 1;
}

.capture-content {
  flex: 1;
}
.capture-content .capture-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(248, 87, 166, 0.1), rgba(255, 88, 88, 0.08));
  border: 1px solid rgba(248, 87, 166, 0.28);
  color: #f857a6;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.capture-content .capture-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f857a6;
  flex-shrink: 0;
}
.capture-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: #222222;
  margin-bottom: 22px;
  font-weight: 700;
  line-height: 1.18;
}
.capture-content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.capture-content .description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 480px;
}

.testimonial {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 36px 32px 44px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #f857a6, #ff5858);
}
.testimonial .testimonial-quote {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Plus Jakarta Sans", sans-serif;
  opacity: 0.6;
}
.testimonial blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 24px;
  line-height: 1.75;
  border: none;
  padding: 0;
}
.testimonial .user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.testimonial .user-info .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #f857a6, #ff5858) border-box;
}
.testimonial .user-info .user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial .user-info .user-details strong {
  color: #222222;
  font-size: 0.92rem;
  font-weight: 500;
}
.testimonial .user-info .user-details span {
  color: #777777;
  font-size: 0.78rem;
}

.capture-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.capture-blob {
  position: absolute;
  width: 380px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #f857a6, #ff5858);
  opacity: 0.08;
  border-radius: 60% 40% 55% 45%/50% 60% 40% 50%;
  filter: blur(20px);
  pointer-events: none;
}

.phone-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  z-index: 1;
}
.phone-wrapper .phone-front {
  width: 75%;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  display: block;
  margin-left: auto;
}
.phone-wrapper .phone-back {
  width: 68%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-46%) rotate(-6deg);
  z-index: 1;
  opacity: 0.55;
  border-radius: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .capture-thoughts {
    padding: 80px 0;
  }
  .capture-flex {
    flex-direction: column;
    gap: 60px;
  }
  .capture-content .description {
    max-width: 100%;
  }
  .capture-visual {
    width: 100%;
  }
  .capture-visual .phone-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
  .capture-visual .phone-wrapper .phone-back {
    display: none;
  }
  .capture-visual .phone-wrapper .phone-front {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .capture-thoughts {
    padding: 60px 0;
  }
  .capture-thoughts .capture-flex {
    flex-direction: column;
    gap: 60px;
    text-align: left;
  }
  .capture-thoughts .capture-content h2 {
    font-size: 2.2rem;
  }
  .capture-thoughts .capture-visual {
    width: 100%;
  }
  .capture-thoughts .capture-visual .phone-wrapper {
    display: flex;
    justify-content: center;
  }
  .capture-thoughts .capture-visual .phone-wrapper .phone-back {
    display: none;
  }
  .capture-thoughts .capture-visual .phone-wrapper .phone-front {
    width: 60%;
  }
}
.skilled {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}
.skilled.skilled--alt {
  background: #f8f7fc;
}
.skilled::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 87, 166, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.skilled-flex {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  position: relative;
  z-index: 1;
}

.skilled--reverse .skilled-flex {
  flex-direction: row-reverse;
}

.skilled-visual {
  flex: 1;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.skilled-blob {
  position: absolute;
  width: 360px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #f857a6, #ff5858);
  opacity: 0.07;
  border-radius: 40% 60% 55% 45%/55% 45% 60% 40%;
  filter: blur(24px);
  pointer-events: none;
}

.cards-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.cards-container .card-main {
  width: 78%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.13);
  z-index: 1;
  display: block;
  margin-left: auto;
}
.cards-container .card-overlay {
  position: absolute;
  width: 62%;
  bottom: 0; /* valeur initiale — recalculée en JS après chargement des images */
  left: 0;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  z-index: 2;
  border: 4px solid #ffffff;
}

.skilled-content {
  flex: 1;
}
.skilled-content .skilled-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(248, 87, 166, 0.1), rgba(255, 88, 88, 0.08));
  border: 1px solid rgba(248, 87, 166, 0.28);
  color: #f857a6;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.skilled-content .skilled-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f857a6;
  flex-shrink: 0;
}
.skilled-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: #222222;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.18;
}
.skilled-content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.skilled-content .intro {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 44px;
  line-height: 1.8;
  max-width: 460px;
}

.skilled-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skilled-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.skilled-feature-item:hover {
  box-shadow: 0 12px 36px rgba(248, 87, 166, 0.1);
  border-color: rgba(248, 87, 166, 0.22);
  transform: translateX(6px);
}
.skilled-feature-item .skilled-feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(248, 87, 166, 0.12), rgba(255, 88, 88, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #f857a6;
}
.skilled-feature-item h3 {
  font-size: 1rem;
  color: #222222;
  margin-bottom: 6px;
  font-weight: 500;
}
.skilled-feature-item p {
  color: #777777;
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 992px) {
  .skilled {
    padding: 80px 0;
  }
  .skilled-flex {
    flex-direction: column;
    gap: 60px;
  }
  .skilled--reverse .skilled-flex {
    flex-direction: column;
  }
  .skilled-visual {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding-bottom: 60px;
    position: relative;
    top: auto;
  }
  .skilled-content .intro {
    max-width: 100%;
  }
  .skilled-feature-item:hover {
    transform: none;
  }
}
.video-promo {
  position: relative;
  padding: 120px 0;
  background: #fafafa;
  overflow: hidden;
}
.video-promo .video-blob {
  position: absolute;
  top: -60px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  opacity: 0.06;
  border-radius: 72% 28% 58% 42%/44% 62% 38% 56%;
  pointer-events: none;
}
.video-promo .container {
  position: relative;
  z-index: 1;
}
.video-promo .video-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.video-promo .video-header .video-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(248, 87, 166, 0.12), rgba(255, 88, 88, 0.12));
  color: #f857a6;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.video-promo .video-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #222222;
  line-height: 1.2;
  margin-bottom: 16px;
}
.video-promo .video-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.video-promo .video-header p {
  color: #777777;
  font-size: 1.05rem;
  line-height: 1.7;
}
.video-promo .phone-perspective {
  perspective: 1200px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.video-promo .phone-mockup {
  position: relative;
  transform: rotateX(12deg) rotateZ(-5deg) rotateY(8deg);
  box-shadow: -20px 40px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  overflow: hidden;
  border: 12px solid #1a1a1a;
  background: #000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-promo .phone-mockup::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.video-promo .phone-mockup:hover {
  transform: rotateX(4deg) rotateZ(-2deg) rotateY(3deg);
  box-shadow: -8px 20px 50px rgba(0, 0, 0, 0.12);
}
.video-promo .phone-mockup img {
  width: 100%;
  display: block;
  opacity: 0.85;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-promo .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0 0 rgba(248, 87, 166, 0.6);
  animation: pulse-border 2s infinite;
  transition: transform 0.3s ease;
}
.video-promo .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.video-promo .play-btn i {
  margin-left: 5px;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.active {
  display: flex;
}
.video-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}
.video-modal .modal-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  z-index: 10;
}
.video-modal .modal-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 3.5rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.video-modal .modal-close:hover {
  color: #ff5858;
  transform: rotate(90deg);
}
.video-modal .video-aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.video-modal .video-aspect-ratio iframe,
.video-modal .video-aspect-ratio #player,
.video-modal .video-aspect-ratio object,
.video-modal .video-aspect-ratio embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 87, 166, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(248, 87, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(248, 87, 166, 0);
  }
}
@media (max-width: 992px) {
  .video-promo {
    padding: 80px 0;
  }
  .video-promo .video-header {
    margin-bottom: 48px;
  }
  .video-promo .phone-mockup {
    transform: none;
    border-width: 10px;
  }
  .video-promo .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .video-promo .video-header h2 {
    font-size: 1.6rem;
  }
  .video-promo .play-btn {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  .video-modal {
    padding: 10px;
  }
  .video-modal .modal-close {
    top: -45px;
    font-size: 2.5rem;
  }
}
.screens {
  padding: 100px 0 80px;
  width: 100%;
  overflow: hidden;
  background: #f5f5f7;
  position: relative;
}
.screens::before, .screens::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 20;
  pointer-events: none;
}
.screens::before {
  left: 0;
  background: linear-gradient(to right, #f5f5f7 0%, transparent 100%);
}
.screens::after {
  right: 0;
  background: linear-gradient(to left, #f5f5f7 0%, transparent 100%);
}
.screens .screens-header {
  text-align: center;
  margin-bottom: 10px;
  padding: 0 30px;
}
.screens .screens-header .screens-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.screens .screens-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.screens .screens-header p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.38);
  font-weight: 400;
  letter-spacing: 0.2px;
}
.screens .screens-slider {
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: grab;
  padding: 70px 0;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.screens .screens-slider:active {
  cursor: grabbing;
}
.screens .screen-item {
  flex: 0 0 320px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease, opacity 0.5s ease;
  filter: blur(5px);
  opacity: 0.18;
  transform: scale(0.78);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.screens .screen-item.active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.08);
  z-index: 10;
}
.screens .screen-item.active img {
  box-shadow: 0 0 0 1px rgba(248, 87, 166, 0.15), 0 25px 80px rgba(248, 87, 166, 0.28), 0 10px 40px rgba(0, 0, 0, 0.6);
}
.screens .screen-item img {
  width: 100%;
  border-radius: 36px;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.5s ease;
}
.screens .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
}
.screens .slider-controls .nav-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.screens .slider-controls .nav-arrow:hover {
  background: linear-gradient(135deg, #f857a6, #ff5858);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 28px rgba(248, 87, 166, 0.35);
  transform: scale(1.1);
}
.screens .slider-controls .screen-caption {
  font-size: 0.7rem;
  letter-spacing: 4px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  min-width: 280px;
  text-align: center;
}
@media (max-width: 768px) {
  .screens {
    padding: 70px 0 60px;
  }
  .screens::before, .screens::after {
    width: 80px;
  }
  .screens .screen-item {
    flex: 0 0 240px;
    filter: blur(2px);
    opacity: 0.35;
    transform: scale(0.85);
  }
  .screens .screen-item.active {
    transform: scale(1.04);
  }
  .screens .screens-slider {
    gap: 20px;
    padding: 50px 0;
  }
  .screens .slider-controls {
    gap: 24px;
  }
  .screens .slider-controls .screen-caption {
    min-width: 180px;
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
}
@media (max-width: 480px) {
  .screens {
    padding: 60px 0 50px;
  }
  .screens::before, .screens::after {
    width: 40px;
  }
  .screens .screens-header {
    margin-bottom: 6px;
    padding: 0 20px;
  }
  .screens .screens-header h2 {
    font-size: 1.6rem;
  }
  .screens .screens-header p {
    font-size: 0.82rem;
  }
  .screens .screens-slider {
    gap: 16px;
    padding: 40px 0;
  }
  .screens .screen-item {
    flex: 0 0 200px;
    filter: blur(1px);
    opacity: 0.5;
    transform: scale(0.88);
  }
  .screens .screen-item.active {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.04);
  }
  .screens .screen-item img {
    border-radius: 24px;
  }
  .screens .slider-controls {
    gap: 16px;
  }
  .screens .slider-controls .nav-arrow {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
  .screens .slider-controls .screen-caption {
    min-width: 0;
    flex: 1;
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
}

.about {
  position: relative;
  background: #ffffff;
  padding: 140px 0 120px;
  overflow: hidden;
}

.about-bg-number {
  position: absolute;
  top: -60px;
  right: -10px;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.04);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-right: 40px;
}

.about-photo-wrap {
  position: relative;
}
.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  opacity: 0.15;
  z-index: 0;
  transition: opacity 0.4s ease;
}
.about-photo-wrap:hover::before {
  opacity: 0.25;
}
.about-photo-wrap img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  filter: grayscale(12%) contrast(1.04);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.about-photo-wrap img:hover {
  filter: grayscale(0%) contrast(1.06);
  transform: scale(1.02);
}
.about-photo-wrap .about-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  z-index: 2;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-photo-wrap .about-badge::before {
  content: "";
  width: 4px;
  align-self: stretch;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  border-radius: 2px;
  flex-shrink: 0;
}
.about-photo-wrap .about-badge strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-photo-wrap .about-badge span {
  font-size: 0.76rem;
  color: #777777;
  font-weight: 400;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content .about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(248, 87, 166, 0.1), rgba(255, 88, 88, 0.08));
  border: 1px solid rgba(248, 87, 166, 0.28);
  color: #f857a6;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.about-content .about-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f857a6;
  flex-shrink: 0;
}
.about-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: #222222;
  margin-bottom: 24px;
}
.about-content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: #666666;
  margin-bottom: 16px;
}
.about-content p:last-of-type {
  margin-bottom: 0;
}
.about-content .about-stats {
  display: flex;
  gap: 44px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  flex-wrap: wrap;
}
.about-content .about-stats .stat-item strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.about-content .about-stats .stat-item strong sup {
  font-size: 1.3rem;
}
.about-content .about-stats .stat-item span {
  font-size: 0.78rem;
  color: #777777;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .about-visual {
    max-width: 360px;
    margin: 0 auto;
    padding-right: 20px;
  }
  .about-photo-wrap .about-badge {
    right: -10px;
    bottom: 20px;
  }
  .about-bg-number {
    font-size: 130px;
    top: 0;
    right: -5px;
  }
  .about-content {
    text-align: center;
  }
  .about-content .about-tag {
    margin-left: auto;
    margin-right: auto;
  }
  .about-content .about-stats {
    justify-content: center;
    gap: 28px;
  }
}
.faq {
  position: relative;
  padding: 120px 0;
  background: #fafafa;
  clip-path: inset(0);
}
.faq::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 87, 166, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.faq-blob {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  opacity: 0.05;
  border-radius: 55% 45% 60% 40%/48% 58% 42% 52%;
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.faq-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 90px;
}
.faq-header .faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(248, 87, 166, 0.1), rgba(255, 88, 88, 0.08));
  border: 1px solid rgba(248, 87, 166, 0.28);
  color: #f857a6;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.faq-header .faq-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f857a6;
  flex-shrink: 0;
}
.faq-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #222222;
  line-height: 1.2;
  margin-bottom: 20px;
}
.faq-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-header p {
  font-size: 1rem;
  color: #777777;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 340px;
}
.faq-header .faq-support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #f857a6;
  text-decoration: none;
  transition: gap 0.25s ease, opacity 0.25s ease;
}
.faq-header .faq-support::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.faq-header .faq-support:hover {
  opacity: 0.8;
  gap: 14px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.faq-item.is-open {
  box-shadow: 0 8px 32px rgba(248, 87, 166, 0.1);
  border-color: rgba(248, 87, 166, 0.2);
}
.faq-item.is-open .faq-question {
  color: #f857a6;
}
.faq-item.is-open .faq-icon {
  background: linear-gradient(135deg, #f857a6, #ff5858);
  border-color: transparent;
}
.faq-item.is-open .faq-icon i {
  color: #ffffff;
  transform: rotate(45deg);
}
.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 24px 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #222222;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  transition: color 0.25s ease;
}
.faq-question .faq-question-text {
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  min-width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.faq-icon i {
  font-size: 0.7rem;
  color: #777777;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.3s ease;
}
.faq-answer p {
  padding: 0 28px;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .faq {
    padding: 80px 0;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-header {
    position: static;
  }
  .faq-header p {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .faq-question {
    padding: 20px;
    font-size: 0.95rem;
  }
  .faq-answer p {
    padding: 0 20px;
  }
}
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  padding: 100px 0;
  overflow: hidden;
}

.cta-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-decor__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
}
.cta-decor__ring--sm {
  width: 320px;
  height: 320px;
}
.cta-decor__ring--md {
  width: 540px;
  height: 540px;
  border-color: rgba(255, 255, 255, 0.1);
}
.cta-decor__ring--lg {
  width: 760px;
  height: 760px;
  border-color: rgba(255, 255, 255, 0.05);
}
.cta-decor__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.cta-visual {
  flex: 0 0 260px;
}
.cta-visual .phone-glass {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
}
.cta-visual .phone-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-visual .phone-glass img {
  display: block;
  width: 100%;
  border-radius: 18px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
  color: #ffffff;
}
.cta-content .cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cta-content .cta-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  display: block;
  flex-shrink: 0;
}
.cta-content h2 {
  font-size: 2.7rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 44px;
  max-width: 460px;
}
.cta-content .app-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-content .app-badges a {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cta-content .app-badges a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}
.cta-content .app-badges a img {
  height: 46px;
  display: block;
}

@media (max-width: 992px) {
  .final-cta {
    padding: 80px 0;
  }
  .cta-decor__ring, .cta-decor__glow {
    left: 50%;
    top: 25%;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
  .cta-visual {
    flex: none;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
  }
  .cta-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-content .app-badges {
    justify-content: center;
  }
}
.footer {
  position: relative;
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #f857a6, #ff5858);
}

.footer::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 87, 166, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-brand .footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  filter: brightness(1.15);
}
.footer-brand .footer-logo span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.footer-brand .footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 280px;
}
.footer-brand .newsletter-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer-brand .newsletter-form {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease;
}
.footer-brand .newsletter-form:focus-within {
  border-color: rgba(248, 87, 166, 0.6);
}
.footer-brand .newsletter-form input[type=email] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: #ffffff;
}
.footer-brand .newsletter-form input[type=email]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-brand .newsletter-form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-brand .newsletter-form button {
  flex-shrink: 0;
  border: none;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 22px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.footer-brand .newsletter-form button:hover {
  opacity: 0.88;
}
.footer-brand .newsletter-note {
  font-size: 0.7rem;
  margin-top: 10px;
  opacity: 0.45;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  border-radius: 1px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
  padding: 22px 0;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 87, 166, 0.35) 30%, rgba(255, 88, 88, 0.35) 70%, transparent);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.78rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.footer-legal a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, #f857a6, #ff5858);
  transition: width 0.25s ease;
}
.footer-legal a:hover {
  color: #ffffff;
}
.footer-legal a:hover::after {
  width: 100%;
}
.footer-legal .sep {
  display: block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-socials a:hover {
  background: linear-gradient(135deg, #f857a6, #ff5858);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(248, 87, 166, 0.35);
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 60px 0 40px;
    gap: 40px;
  }
  .footer-brand .footer-tagline {
    max-width: 100%;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-copy {
    order: 3;
  }
  .footer-legal {
    order: 2;
    justify-content: center;
  }
  .footer-socials {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */