@font-face {
  font-family: "Switzer";
  src: url("../assets/fonts/switzer-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("../assets/fonts/switzer-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("../assets/fonts/switzer-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("../assets/fonts/switzer-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Switzer", system-ui, -apple-system, sans-serif;
  background: #FFFFFF;
  color: #1A1118;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: #690058;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
button {
  font-family: inherit;
}

img,
video {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p,
ul,
figure,
blockquote {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

section {
  scroll-margin-top: 90px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #690058;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.eyebrow--light {
  color: #C99CBF;
}
@media (max-width: 768px) {
  .eyebrow {
    font-size: 12px;
  }
}

.section-head {
  margin-bottom: 36px;
}
.section-head h2 {
  font-weight: 700;
  font-size: clamp(27px, 3.4vw, 42px);
  letter-spacing: -1.2px;
  line-height: 1.08;
  color: #1A1118;
  max-width: 560px;
  margin-top: 10px;
}
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .section-head {
    margin-bottom: 28px;
  }
}

.stars {
  color: #E0A106;
  letter-spacing: 2px;
  font-size: 0.9em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dot--green {
  background: #16A34A;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--primary {
  color: #fff;
  background: #690058;
  padding: 11px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.btn--primary:hover {
  background: #7d016a;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(105, 0, 88, 0.55);
}
.btn--outline {
  font-size: 14.5px;
  color: #690058;
  border: 1px solid rgba(105, 0, 88, 0.3);
  padding: 11px 19px;
  border-radius: 10px;
}
.btn--outline:hover {
  background: rgba(105, 0, 88, 0.06);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 22px;
  border-radius: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-store svg {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}
.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(26, 17, 24, 0.45);
}
.btn-store__label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.btn-store__label span {
  font-size: 10.5px;
  font-weight: 500;
  opacity: 0.8;
}
.btn-store__label strong {
  font-size: 15.5px;
  font-weight: 600;
}
.btn-store--dark {
  background: #1A1118;
  color: #fff;
}
.btn-store--light {
  background: #fff;
  color: #1A1118;
}

.chip {
  background: #F4F0E8;
  color: #6B5A33;
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
}

.skeleton {
  height: 6px;
  border-radius: 99px;
  background: #EDE8EC;
  display: block;
}
.skeleton--full {
  width: 100%;
}
.skeleton--short {
  width: 70%;
}

.check-list {
  display: grid;
  gap: 13px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: #3A3340;
}
.check-list__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F0FAF3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-list--dark li {
  color: #F0E3EC;
  font-weight: 400;
  font-size: 15px;
}
.check-list--dark .check-list__icon {
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 20px 0;
}
@media (max-width: 768px) {
  .site-header {
    padding: 12px 14px 0;
  }
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 11px 12px 11px 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 14px 40px -16px rgba(26, 17, 24, 0.16);
}
.nav__logo {
  justify-self: start;
}
.nav__logo img {
  height: 26px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-self: center;
  white-space: nowrap;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: #4A424A;
  transition: color 0.2s ease;
}
.nav__links a:hover {
  color: #690058;
}
.nav__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .nav__links {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 9px 10px 9px 16px;
  }
  .nav__logo img {
    height: 22px;
  }
  .nav__links {
    display: none;
  }
  .nav__cta .btn--primary {
    font-size: 14px;
    padding: 9px 17px;
  }
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 40px;
  overflow-x: clip;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(26, 17, 24, 0.12);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #4A424A;
}
.hero__title {
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.03;
  letter-spacing: -2px;
  margin-top: 24px;
  color: #1A1118;
}
.hero__title-line {
  display: inline-block;
}
.hero__title-line--accent {
  color: #690058;
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: #6B616A;
  max-width: 470px;
  margin-top: 22px;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__trust {
  margin-top: 18px;
  font-size: 13.5px;
  color: #8A8089;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero__glow--purple {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(105, 0, 88, 0.2) 0%, rgba(105, 0, 88, 0) 70%);
}
.hero__glow--gold {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(224, 161, 6, 0.14) 0%, rgba(224, 161, 6, 0) 70%);
  top: 30px;
  right: 20px;
}
.hero__shadow {
  position: absolute;
  z-index: 1;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(42, 8, 35, 0.34) 0%, rgba(42, 8, 35, 0) 72%);
  filter: blur(4px);
}
@media (max-width: 768px) {
  .hero {
    padding: 26px 22px 8px;
    text-align: center;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero__title {
    letter-spacing: -1.6px;
    margin-top: 18px;
  }
  .hero__sub {
    margin-inline: auto;
    max-width: 340px;
  }
  .hero__actions, .hero__trust {
    justify-content: center;
  }
  .hero__glow--purple {
    width: 340px;
    height: 340px;
  }
  .hero__glow--gold {
    display: none;
  }
  .hero__shadow {
    width: 210px;
    height: 38px;
    bottom: -18px;
  }
}

.phone {
  position: relative;
  z-index: 2;
  width: 342px;
  will-change: transform;
  backface-visibility: hidden;
}
.phone__btn {
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, #8f877f 0%, #d8d1ca 45%, #b7afa7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.phone__btn--l1 {
  left: -3px;
  top: 135px;
  height: 34px;
  border-radius: 3px 0 0 3px;
}
.phone__btn--l2 {
  left: -3px;
  top: 190px;
  height: 60px;
  border-radius: 3px 0 0 3px;
}
.phone__btn--l3 {
  left: -3px;
  top: 264px;
  height: 60px;
  border-radius: 3px 0 0 3px;
}
.phone__btn--r {
  right: -3px;
  top: 225px;
  height: 82px;
  border-radius: 0 3px 3px 0;
}
.phone__frame {
  position: relative;
  z-index: 2;
  background: linear-gradient(128deg, #f4efea 0%, #a8a099 12%, #fbf8f5 26%, #9d958d 41%, #e9e3dd 52%, #9d958d 62%, #fbf8f5 76%, #a8a099 89%, #f4efea 100%);
  border-radius: 70px;
  padding: 3px;
  box-shadow: 0 60px 110px -32px rgba(42, 8, 35, 0.55), 0 8px 22px -10px rgba(42, 8, 35, 0.35), inset 0 1.5px 1px rgba(255, 255, 255, 0.95), inset 0 -1.5px 1px rgba(0, 0, 0, 0.3);
}
.phone__bezel {
  position: relative;
  background: #050305;
  border-radius: 67px;
  padding: 12px;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.08), inset 0 0 3px 1px rgba(0, 0, 0, 0.9);
}
.phone__screen {
  position: relative;
  background: #050305;
  border-radius: 55px;
  overflow: hidden;
  aspect-ratio: 1290/2796;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}
.phone__screen:has(.phone__video.is-loaded) .phone__loading {
  opacity: 0;
}
.phone__loading {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #FBF7FA 0%, #F2EAF0 100%);
  transition: opacity 0.45s ease;
}
.phone__loading span {
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -1.5px;
  color: #690058;
  animation: ceek-pulse-text 1.6s ease-in-out infinite;
}
.phone__video {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  border-radius: 55px;
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: 8;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.phone__video.is-loaded {
  opacity: 1;
}
.phone__reflection {
  position: absolute;
  inset: 0;
  border-radius: 55px;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, 0.12) 100%);
  pointer-events: none;
  z-index: 9;
}
.phone__pop {
  position: absolute;
  z-index: 3;
  left: -30px;
  bottom: 130px;
  background: #fff;
  border-radius: 16px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 22px 50px -18px rgba(42, 8, 35, 0.45);
  max-width: 220px;
}
.phone__pop-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone__pop-text {
  min-width: 0;
  text-align: left;
}
.phone__pop-text strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #1A1118;
}
.phone__pop-text span {
  font-size: 13px;
  color: #8A8089;
}
@media (max-width: 768px) {
  .phone {
    width: 262px;
  }
  .phone__btn {
    width: 3px;
  }
  .phone__btn--l1 {
    top: 104px;
    height: 26px;
  }
  .phone__btn--l2 {
    top: 146px;
    height: 46px;
  }
  .phone__btn--l3 {
    top: 203px;
    height: 46px;
  }
  .phone__btn--r {
    top: 174px;
    height: 62px;
  }
  .phone__frame {
    border-radius: 54px;
    box-shadow: 0 44px 80px -30px rgba(42, 8, 35, 0.5), inset 0 1.5px 1px rgba(255, 255, 255, 0.95), inset 0 -1.5px 1px rgba(0, 0, 0, 0.3);
  }
  .phone__bezel {
    border-radius: 51px;
    padding: 9px;
  }
  .phone__screen, .phone__video, .phone__reflection {
    border-radius: 44px;
  }
  .phone__loading span {
    font-size: 28px;
  }
  .phone__pop {
    left: -14px;
    bottom: 96px;
    border-radius: 14px;
    padding: 10px 13px;
    max-width: 186px;
  }
  .phone__pop-check {
    width: 34px;
    height: 34px;
  }
  .phone__pop-text strong {
    font-size: 12.5px;
  }
  .phone__pop-text span {
    font-size: 11px;
  }
}

@keyframes ceek-pulse-text {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.stats {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 28px;
}
.stats__lead {
  font-weight: 600;
  font-size: clamp(23px, 3.6vw, 42px);
  line-height: 1.3;
  letter-spacing: -1px;
  color: #A89BA4;
  margin-top: 18px;
  text-wrap: pretty;
}
.stats__num {
  color: #690058;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 768px) {
  .stats {
    padding: 36px 22px 8px;
  }
  .stats__lead {
    letter-spacing: -0.6px;
    line-height: 1.32;
    margin-top: 12px;
  }
}

.showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 28px 24px;
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 64px;
  align-items: center;
}
.showcase__mockup {
  background: linear-gradient(135deg, #F4ECF2 0%, #EFEDF7 100%);
  border-radius: 22px;
  padding: 40px 36px;
  border: 1px solid rgba(26, 17, 24, 0.05);
  min-width: 0;
}
.showcase__search {
  background: #fff;
  border-radius: 999px;
  padding: 7px 7px 7px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 30px -16px rgba(26, 17, 24, 0.3);
}
.showcase__search > span:first-child {
  font-size: 15px;
  color: #9A909A;
}
.showcase__search-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #690058;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.showcase__marquee {
  overflow: hidden;
  margin: 22px -36px 0;
}
.showcase__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.showcase__text h2 {
  font-weight: 700;
  font-size: clamp(27px, 3.6vw, 44px);
  letter-spacing: -1.4px;
  line-height: 1.06;
  color: #1A1118;
}
.showcase__text p {
  font-size: 16.5px;
  line-height: 1.65;
  color: #6B616A;
  margin-top: 18px;
  max-width: 480px;
}
.showcase__text p:first-of-type {
  margin-top: 22px;
}
@media (max-width: 768px) {
  .showcase {
    padding: 32px 22px 8px;
  }
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .showcase__mockup {
    border-radius: 20px;
    padding: 24px 20px;
  }
  .showcase__marquee {
    margin: 16px -20px 0;
  }
  .showcase__text p {
    font-size: 15.5px;
    margin-top: 14px;
  }
}

.mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 32px -20px rgba(26, 17, 24, 0.35);
  width: 244px;
  flex-shrink: 0;
  margin-right: 16px;
}
.mini-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mini-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
}
.mini-card__lines {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}
.mini-card__lines .skeleton {
  margin-top: 11px;
}
.mini-card__lines .skeleton + .skeleton {
  margin-top: 7px;
}
.mini-card__tag {
  display: inline-block;
  background: #1A1118;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 5px;
}
.mini-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .mini-card {
    border-radius: 14px;
    padding: 15px;
    width: 224px;
    margin-right: 12px;
  }
  .mini-card__avatar {
    width: 48px;
    height: 48px;
  }
}

.categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 24px;
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .categories {
    padding: 36px 22px 8px;
  }
  .categories__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.cat-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1.08;
  border: 1px solid rgba(26, 17, 24, 0.06);
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover img {
  transform: scale(1.06);
}
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 8, 17, 0.72) 0%, rgba(20, 8, 17, 0.05) 52%, transparent 100%);
  pointer-events: none;
}
.cat-card__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  pointer-events: none;
}
.cat-card__label strong {
  display: block;
  font-weight: 600;
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.3px;
}
.cat-card__label span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .cat-card {
    border-radius: 13px;
  }
  .cat-card__label {
    left: 12px;
    right: 12px;
    bottom: 11px;
  }
  .cat-card__label strong {
    font-size: 16px;
  }
  .cat-card__label span {
    font-size: 11px;
  }
}

.photographers {
  background: #F8F6F8;
  border-top: 1px solid rgba(26, 17, 24, 0.06);
  border-bottom: 1px solid rgba(26, 17, 24, 0.06);
  margin-top: 48px;
}
.photographers__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px;
}
.photographers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .photographers {
    margin-top: 36px;
    border: 0;
  }
  .photographers__inner {
    padding: 32px 22px;
  }
  .photographers__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .photographers .section-head--split .btn--outline {
    display: none;
  }
}

.ph-card {
  background: #fff;
  border: 1px solid rgba(26, 17, 24, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ph-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(26, 17, 24, 0.35);
}
.ph-card__media {
  position: relative;
  aspect-ratio: 5/4;
}
.ph-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.ph-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 600;
  color: #16804A;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(26, 17, 24, 0.12);
}
.ph-card__badge .dot {
  width: 6px;
  height: 6px;
}
.ph-card__body {
  padding: 16px 17px 18px;
}
.ph-card__person {
  display: flex;
  align-items: center;
  gap: 11px;
}
.ph-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.ph-card__name {
  min-width: 0;
  flex: 1;
}
.ph-card__name strong {
  display: block;
  font-weight: 600;
  font-size: 15.5px;
  color: #1A1118;
  line-height: 1.2;
}
.ph-card__name span {
  font-size: 12.5px;
  color: #8A8089;
}
.ph-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #1A1118;
}
.ph-card__rating .stars {
  letter-spacing: 0;
}
.ph-card__meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 17, 24, 0.08);
}
.ph-card__city {
  font-size: 12.5px;
  color: #8A8089;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ph-card__rate {
  font-weight: 600;
  font-size: 14.5px;
  color: #690058;
}

.how {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 28px 24px;
}
.how .section-head {
  margin-bottom: 44px;
}
.how__panel {
  background: linear-gradient(135deg, #F4ECF2 0%, #EFEDF7 100%);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(26, 17, 24, 0.05);
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
@media (max-width: 768px) {
  .how {
    padding: 36px 22px 8px;
  }
  .how .section-head {
    margin-bottom: 28px;
  }
  .how__panel {
    border-radius: 20px;
  }
  .how__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 14px 34px -24px rgba(26, 17, 24, 0.4);
}
.step-card__no {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #690058;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.5px;
}
.step-card h3 {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.5px;
  margin-top: 18px;
  color: #1A1118;
}
.step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6B616A;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .step-card {
    border-radius: 15px;
    padding: 20px;
  }
  .step-card__no {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 15px;
  }
  .step-card h3 {
    font-size: 18.5px;
    margin-top: 14px;
  }
  .step-card p {
    font-size: 14.5px;
    margin-top: 8px;
  }
}

.trust {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 24px;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 64px;
  align-items: center;
}
.trust__text h2 {
  font-weight: 700;
  font-size: clamp(27px, 3.6vw, 44px);
  letter-spacing: -1.4px;
  line-height: 1.06;
  color: #1A1118;
  margin-top: 12px;
}
.trust__text .check-list {
  margin-top: 24px;
}
.trust__p {
  font-size: 16.5px;
  line-height: 1.65;
  color: #6B616A;
  margin-top: 20px;
  max-width: 470px;
}
.trust__visual {
  background: linear-gradient(135deg, #F4ECF2 0%, #EFEDF7 100%);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(26, 17, 24, 0.05);
}
@media (max-width: 768px) {
  .trust {
    padding: 36px 22px 8px;
  }
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust__p {
    font-size: 15.5px;
    margin-top: 14px;
  }
  .trust__visual {
    border-radius: 20px;
  }
}

.pay-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px -26px rgba(26, 17, 24, 0.4);
}
.pay-card hr {
  height: 1px;
  border: 0;
  background: rgba(26, 17, 24, 0.08);
  margin: 20px 0;
}
.pay-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pay-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #690058;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-card__title {
  min-width: 0;
  flex: 1;
}
.pay-card__title strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #1A1118;
  letter-spacing: -0.2px;
}
.pay-card__title span {
  font-size: 13px;
  color: #8A8089;
}
.pay-card__amount {
  margin-left: auto;
  font-weight: 700;
  font-size: 18px;
  color: #690058;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  white-space: nowrap;
}
.pay-card__steps {
  display: grid;
  gap: 16px;
}
.pay-card__steps li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.pay-card__dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(26, 17, 24, 0.18);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.pay-card__label {
  flex: 1;
  font-weight: 600;
  font-size: 14.5px;
  color: #9A909A;
}
.pay-card__time {
  font-size: 12.5px;
  color: #9A909A;
}
.pay-card__steps li.is-done .pay-card__dot {
  background: #16A34A;
  border-color: #16A34A;
}
.pay-card__steps li.is-done .pay-card__label {
  color: #1A1118;
}
@media (max-width: 768px) {
  .pay-card {
    border-radius: 16px;
    padding: 20px;
  }
  .pay-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
  .pay-card__amount {
    font-size: 17px;
  }
}

.fp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 24px;
}
.fp__panel {
  background: #2A0823;
  border-radius: 22px;
  padding: clamp(30px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.fp__content h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -1.2px;
  margin-top: 12px;
  color: #fff;
  line-height: 1.06;
}
.fp__content .check-list {
  margin-top: 26px;
}
.fp__text {
  font-size: 16.5px;
  line-height: 1.55;
  color: #D9C3D2;
  margin-top: 18px;
  max-width: 440px;
}
.fp__app {
  margin-top: 30px;
}
.fp__app-label {
  font-size: 13px;
  font-weight: 600;
  color: #C99CBF;
  margin-bottom: 12px;
}
.fp__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.fp__stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 34px 38px;
  text-align: center;
  width: 100%;
  max-width: 340px;
}
.fp__stat strong {
  display: block;
  font-weight: 600;
  font-size: clamp(44px, 6vw, 64px);
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fp__stat span {
  display: block;
  font-size: 14.5px;
  color: #D9C3D2;
  margin-top: 8px;
  line-height: 1.4;
}
.fp__join {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fp__join span {
  font-size: 13.5px;
  color: #D9C3D2;
}
.fp__avatars {
  display: flex;
}
.fp__avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #2A0823;
  object-fit: cover;
}
.fp__avatars img + img {
  margin-left: -13px;
}
@media (max-width: 768px) {
  .fp {
    padding: 32px 22px 8px;
  }
  .fp__panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }
  .fp__text {
    font-size: 15.5px;
    margin-top: 14px;
  }
  .fp__aside {
    align-items: stretch;
    gap: 18px;
  }
  .fp__stat {
    max-width: none;
    padding: 24px;
  }
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 24px;
}
.testimonials__panel {
  background: linear-gradient(135deg, #F4ECF2 0%, #EFEDF7 100%);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(26, 17, 24, 0.05);
}
.testimonials .section-head {
  margin-bottom: 32px;
}
.testimonials__marquee {
  overflow: hidden;
  margin-inline: clamp(-48px, -4vw, -22px);
}
.testimonials__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 36px 0 8px;
  }
  .testimonials .section-head {
    padding-inline: 22px;
  }
  .testimonials__panel {
    background: none;
    border: 0;
    padding: 0;
    border-radius: 0;
  }
  .testimonials__marquee {
    margin-inline: 0;
  }
}

.quote-card {
  background: #fff;
  border: 1px solid rgba(26, 17, 24, 0.08);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  width: 360px;
  flex-shrink: 0;
  margin-right: 20px;
}
.quote-card .stars {
  font-size: 14px;
}
.quote-card blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: #2E242C;
  margin-top: 14px;
  flex: 1;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.quote-card figcaption img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
}
.quote-card figcaption strong {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  color: #1A1118;
}
.quote-card figcaption span {
  font-size: 12.5px;
  color: #8A8089;
}
@media (max-width: 768px) {
  .quote-card {
    padding: 22px 20px;
    width: 300px;
    margin-right: 14px;
  }
  .quote-card blockquote {
    font-size: 15.5px;
    margin-top: 12px;
  }
  .quote-card figcaption {
    margin-top: 18px;
  }
  .quote-card figcaption img {
    width: 40px;
    height: 40px;
  }
}

.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 28px 24px;
}
.faq .section-head {
  margin-bottom: 34px;
}
.faq__list {
  display: grid;
  gap: 10px;
}
.faq__item {
  border: 1px solid rgba(26, 17, 24, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.faq__item summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  color: #1A1118;
  list-style: none;
  user-select: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}
.faq__icon {
  font-size: 26px;
  font-weight: 300;
  color: #690058;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq__answer {
  overflow: hidden;
}
.faq__answer p {
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: #6B616A;
}
@media (max-width: 768px) {
  .faq {
    padding: 36px 22px 8px;
  }
  .faq .section-head {
    margin-bottom: 28px;
  }
  .faq__item summary {
    padding: 16px 18px;
    font-size: 15px;
  }
  .faq__icon {
    font-size: 24px;
  }
  .faq__answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }
}

.cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 24px;
  scroll-margin-top: 100px;
}
.cta__panel {
  background: #690058;
  border-radius: 22px;
  padding: clamp(34px, 6vw, 60px) clamp(22px, 4vw, 52px);
}
.cta__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta__head h2 {
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 48px);
  letter-spacing: -1.4px;
  color: #fff;
  line-height: 1.04;
}
.cta__head p {
  font-size: 17px;
  color: #EBD6E5;
  margin-top: 18px;
  line-height: 1.5;
}
.cta__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cta {
    padding: 32px 22px 8px;
  }
  .cta__head p {
    font-size: 15.5px;
    margin-top: 14px;
  }
  .cta__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }
}

.cta-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 30px 28px;
}
.cta-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-card h3 {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-top: 16px;
  letter-spacing: -0.3px;
}
.cta-card p {
  font-size: 14.5px;
  color: #EBD6E5;
  margin-top: 6px;
  line-height: 1.45;
}
.cta-card .btn-store {
  margin-top: 20px;
  padding: 10px 17px;
  border-radius: 12px;
}
.cta-card .btn-store__label span {
  font-size: 10px;
}
.cta-card .btn-store__label strong {
  font-size: 14.5px;
}
@media (max-width: 768px) {
  .cta-card {
    border-radius: 16px;
    padding: 24px 22px;
  }
  .cta-card__icon {
    width: 42px;
    height: 42px;
  }
  .cta-card h3 {
    font-size: 18px;
    margin-top: 14px;
  }
  .cta-card p {
    font-size: 13.5px;
  }
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 24px;
}
.page__head {
  margin-bottom: 40px;
}
.page__head h1 {
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -1.4px;
  line-height: 1.05;
  color: #1A1118;
  margin-top: 10px;
}
.page__subtitle {
  font-size: 15px;
  color: #8A8089;
  margin-top: 12px;
}
.page__content {
  max-width: 800px;
}
.page__content .callout {
  background: linear-gradient(135deg, #F4ECF2 0%, #EFEDF7 100%);
  border: 1px solid rgba(105, 0, 88, 0.12);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 36px;
}
.page__content .callout p {
  margin-top: 0;
  color: #4A3545;
}
.page__content h2 {
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #1A1118;
  margin-top: 44px;
}
.page__content h2:first-child {
  margin-top: 0;
}
.page__content p {
  font-size: 16px;
  line-height: 1.7;
  color: #6B616A;
  margin-top: 14px;
}
.page__content a {
  color: #690058;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(105, 0, 88, 0.35);
  transition: text-decoration-color 0.2s ease;
}
.page__content a:hover {
  text-decoration-color: #690058;
}
.page__content strong {
  color: #1A1118;
  font-weight: 600;
}
.page__content ul {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.page__content li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #6B616A;
}
.page__content li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(105, 0, 88, 0.45);
}
@media (max-width: 768px) {
  .page {
    padding: 32px 22px 8px;
  }
  .page__head {
    margin-bottom: 28px;
  }
  .page__content h2 {
    margin-top: 34px;
  }
  .page__content p, .page__content li {
    font-size: 15px;
  }
}

.footer {
  background: #1A1118;
  color: #D8CFD5;
  margin-top: 48px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 40px;
}
.footer__brand {
  grid-column: 1/-1;
  max-width: 300px;
}
.footer__brand p {
  font-size: 14.5px;
  color: #9C909A;
  margin-top: 14px;
  line-height: 1.5;
}
.footer__logo {
  height: 28px;
  width: auto;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D8CFD5;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer__social a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.footer__col {
  display: block;
}
.footer__col p {
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: #9C909A;
  margin-top: 10px;
  transition: color 0.2s ease;
}
.footer__col a:first-of-type {
  margin-top: 0;
}
.footer__col a:hover {
  color: #fff;
}
.footer__newsletter {
  margin-top: 44px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer__newsletter strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.3px;
}
.footer__newsletter span {
  display: block;
  font-size: 13.5px;
  color: #9C909A;
  margin-top: 3px;
}
.footer__form {
  display: flex;
  gap: 10px;
  flex: 1 1 300px;
  max-width: 420px;
  min-width: 240px;
}
.footer__form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 18px;
  color: #fff;
  font-size: 14.5px;
  outline: 0;
}
.footer__form input::placeholder {
  color: #9C909A;
}
.footer__form input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}
.footer__form .btn--primary {
  border-radius: 10px;
  font-size: 14.5px;
  padding: 12px 22px;
}
.footer__bottom {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7E7280;
}
.footer__bottom div {
  display: flex;
  gap: 22px;
}
.footer__bottom a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 36px;
  }
  .footer__inner {
    padding: 34px 22px 28px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 16px;
  }
  .footer__logo {
    height: 26px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__bottom div {
    gap: 18px;
  }
}

/*# sourceMappingURL=main.css.map */
