:root {
  --primary: #d91e68;
  --primary-soft: #fff1f7;
  --primary-dark: #aa164f;
  --violet: #6d4dff;
  --mint: #19b77a;
  --amber: #f6ad3c;
  --cream: #fff8fb;
  --rose: #ffe5f0;
  --ink: #271b24;
  --soft: #5e5360;
  --muted: #9a8493;
  --line: rgba(67, 24, 48, 0.08);
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 20px 60px rgba(118, 27, 72, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(255, 248, 251, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  gap: 10px;
}

.nav-left img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(217, 30, 104, 0.18);
}

.nav-left span {
  font-size: 19px;
  font-weight: 800;
}

.nav-right {
  gap: 6px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 4px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-btn {
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  color: var(--soft);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lang-btn.active {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(217, 30, 104, 0.18);
}

.nav-right a {
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-right a:hover {
  color: var(--ink);
  background: rgba(217, 30, 104, 0.07);
}

.nav-right .nav-dl {
  color: #fff;
  background: var(--primary);
  padding: 10px 22px;
  box-shadow: 0 10px 24px rgba(217, 30, 104, 0.24);
}

.nav-right .nav-dl:hover {
  color: #fff;
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 118px 24px 52px;
  background:
    radial-gradient(circle at 18% 20%, rgba(109, 77, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(246, 173, 60, 0.14), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--cream) 38%, var(--primary-soft) 100%);
}

.heart-rain {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.heart-p {
  position: absolute;
  opacity: 0;
  animation: floatUp 5.6s ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(24px) rotate(-8deg) scale(0.82);
  }
  20%,
  78% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translateY(-110px) rotate(8deg) scale(1.12);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 2px 14px rgba(72, 23, 50, 0.05);
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  flex: 0 0 auto;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.28;
  animation: pulse 1.9s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.28;
  }
  50% {
    transform: scale(2.1);
    opacity: 0;
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(48px, 8.6vw, 88px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both;
}

.hero h1 span {
  color: var(--primary);
  font-size: clamp(36px, 6.2vw, 66px);
  font-style: italic;
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--soft);
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.55;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.16s both;
}

.trust-row,
.dl-buttons,
.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-bottom: 22px;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.22s both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 14px;
}

.trust-badge b,
.tb-stars {
  color: var(--primary);
  font-weight: 800;
}

.tb-icon {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--violet));
}

.dl-buttons {
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.dl-btn,
.cta-btn,
.cm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s, border-color 0.22s;
}

.dl-btn {
  min-height: 55px;
  padding: 16px 28px;
  font-size: 16px;
}

.dl-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.dl-ios {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 34px rgba(217, 30, 104, 0.28);
}

.dl-light,
.dl-android {
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(217, 30, 104, 0.14);
}

.dl-btn:hover,
.cta-btn:hover,
.cm-cta:hover {
  transform: translateY(-2px);
}

.dl-ios:hover {
  box-shadow: 0 18px 42px rgba(217, 30, 104, 0.36);
}

.dl-android:hover {
  border-color: rgba(217, 30, 104, 0.5);
  box-shadow: 0 10px 28px rgba(81, 23, 50, 0.1);
}

.phone-stage {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 34px auto 0;
}

.phone-shell {
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(160deg, #2f1425, #170d15);
  box-shadow: 0 24px 80px rgba(52, 14, 33, 0.26);
  transform: rotate(-1.4deg);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.red { background: #ff5f57; }
.yellow { background: #febc2e; }
.green { background: #28c840; }

.phone-title {
  margin-left: auto;
}

.chat-window {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 420px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(217, 30, 104, 0.16), transparent 32%),
    linear-gradient(180deg, #fff, #fff7fb);
}

.bubble {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(58, 19, 39, 0.08);
}

.theirs {
  align-self: flex-start;
  color: var(--ink);
  background: #fff;
}

.mine {
  align-self: flex-end;
  color: #fff;
  background: var(--primary);
}

.score-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  margin-top: 6px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.score-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.score-card strong {
  font-size: 28px;
}

.score-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 87%, #f1dce6 87% 100%);
  box-shadow: inset 0 0 0 9px #fff;
}

.ai-panel {
  padding: 16px;
  text-align: left;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  box-shadow: 0 16px 36px rgba(109, 77, 255, 0.18);
}

.ai-chip {
  display: inline-flex;
  padding: 5px 9px;
  margin-bottom: 8px;
  color: #3b1025;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.ai-panel p {
  margin: 0;
  line-height: 1.45;
}

.tone-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.tone-row span {
  min-width: 0;
  padding: 8px 4px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.marquee-section {
  padding: 38px 0 0;
  overflow: hidden;
  background: var(--primary-soft);
}

.marquee-label {
  margin-bottom: 18px;
  text-align: center;
  color: var(--ink);
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 800;
}

.marquee-clip {
  overflow: hidden;
  padding-bottom: 34px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mq-card {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  margin: 0 8px;
  padding: 14px 18px;
  color: var(--ink);
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(81, 23, 50, 0.04);
}

.mq-card:hover {
  transform: translateY(-2px);
}

.mq-emoji {
  font-size: 27px;
}

.mq-name {
  font-size: 14px;
  font-weight: 800;
}

.mq-count {
  padding: 4px 9px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.features-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 78px 24px 58px;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.section-head p {
  margin: 12px auto 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.55;
}

.ac-scroll-wrap {
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 210px;
  padding: 20px;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(81, 23, 50, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 30, 104, 0.2);
  box-shadow: var(--shadow);
}

.ac-emoji {
  margin-bottom: 18px;
  font-size: 36px;
}

.ac-name {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
}

.ac-loc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.ac-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
}

.mini-avatars {
  display: inline-flex;
  align-items: center;
}

.mini-avatars i {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  margin-left: -8px;
  padding: 0 7px;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--violet));
}

.mini-avatars i:first-child {
  margin-left: 0;
}

.ac-going {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.scroll-hint {
  display: none;
}

.flow-section {
  padding: 76px 24px;
  background: linear-gradient(180deg, #fff, #fff2f8);
}

.flow-inner {
  max-width: 820px;
  margin: 0 auto;
}

.day-list {
  display: grid;
  gap: 0;
}

.day-item {
  display: grid;
  grid-template-columns: 70px 1fr;
}

.day-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.day-dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(81, 23, 50, 0.08);
  font-size: 23px;
}

.day-line {
  position: absolute;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--primary), rgba(217, 30, 104, 0.08));
}

.day-right {
  padding: 0 0 34px;
}

.day-time {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.day-text {
  color: var(--soft);
  font-size: clamp(18px, 3vw, 23px);
  line-height: 1.35;
}

.day-text b {
  color: var(--ink);
}

.story-section {
  padding: 76px 24px;
  background: #fff;
}

.story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-photo {
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 18px 38px rgba(217, 30, 104, 0.18);
}

.story-label {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}

.story-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
}

.story-text {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

.story-sig {
  margin-top: 22px;
  color: var(--ink);
  font-weight: 800;
}

.story-sig span {
  color: var(--primary);
}

.seo-section {
  padding: 78px 24px;
  background: linear-gradient(180deg, #fff, var(--primary-soft));
}

.seo-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.seo-eyebrow {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.seo-card {
  min-height: 210px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(81, 23, 50, 0.05);
}

.seo-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.seo-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.58;
}

.seo-faq {
  display: grid;
  gap: 10px;
  max-width: 880px;
  margin: 28px auto 0;
}

.seo-faq details {
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.seo-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.seo-faq p {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.6;
}

.seo-disclaimer {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.seo-page {
  padding: 132px 24px 80px;
  background:
    linear-gradient(180deg, rgba(255, 248, 251, 0.94), #fff 46%),
    linear-gradient(120deg, rgba(217, 30, 104, 0.08), rgba(255, 214, 102, 0.16));
}

.seo-page-inner {
  max-width: 920px;
  margin: 0 auto;
}

.seo-page-hero {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.seo-page-hero h1 {
  margin: 20px auto 16px;
  color: var(--ink);
  font-size: clamp(38px, 7vw, 70px);
  line-height: 0.98;
}

.seo-page-hero p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.seo-page-block {
  margin-top: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(81, 23, 50, 0.05);
}

.seo-page-block h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.1;
}

.seo-page-block p {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.72;
}

.seo-page-block p:last-child {
  margin-bottom: 0;
}

.seo-page-faq {
  display: grid;
  gap: 10px;
}

.seo-page-faq details {
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.seo-page-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.reviews-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--primary-soft), #fff);
}

.reviews-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.rating-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(81, 23, 50, 0.06);
}

.rating-big {
  text-align: center;
}

.rating-num {
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.rating-stars-big,
.review-stars {
  color: var(--amber);
  letter-spacing: 0;
}

.rating-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rating-bars {
  display: grid;
  gap: 10px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
}

.rating-bar-label {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.rating-bar-track {
  height: 9px;
  overflow: hidden;
  background: #f4dde7;
  border-radius: 999px;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--violet));
  border-radius: inherit;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 230px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(81, 23, 50, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-title {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.review-text {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.review-author {
  margin-top: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.cta-section {
  padding: 74px 24px;
  background: #fff;
}

.cta-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 54px 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, var(--primary), #7f1d6f 70%, #2f1338);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(91, 20, 58, 0.24);
}

.cta-box h2 {
  max-width: 620px;
  margin: 0 auto 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.04;
}

.cta-box p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.cta-btn {
  min-height: 52px;
  padding: 14px 28px;
}

.cta-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.cta-btn-w {
  color: var(--primary);
  background: #fff;
}

.cta-btn-o {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.38);
}

.card-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(40, 17, 30, 0.48);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.2s;
}

.card-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.card-modal {
  position: relative;
  width: min(440px, 100%);
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(34, 12, 24, 0.28);
  transform: scale(0.94) translateY(18px);
  transition: transform 0.22s;
}

.card-modal-overlay.open .card-modal {
  transform: scale(1) translateY(0);
}

.cm-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--soft);
  background: var(--primary-soft);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
}

.cm-emoji {
  font-size: 54px;
}

.cm-name {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 800;
}

.cm-loc {
  margin: 8px auto 18px;
  color: var(--soft);
  line-height: 1.5;
}

.cm-preview {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--primary-soft);
  border-radius: 20px;
}

.mini-bubble {
  padding: 11px 13px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.mini-bubble.ai {
  color: #fff;
  background: var(--primary);
}

.cm-buttons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.cm-cta {
  flex: 1;
  min-height: 48px;
  padding: 12px 14px;
}

.cm-open-app {
  color: #fff;
  background: var(--primary);
}

.cm-download {
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
}

footer {
  padding: 48px 24px 24px;
  background: #22131e;
  color: #fff;
}

.ft-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.ft-brand {
  max-width: 360px;
}

.ft-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
}

.ft-brand-row img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.ft-brand p,
.ft-col a,
.ft-bottom {
  color: rgba(255, 255, 255, 0.66);
}

.ft-links {
  display: flex;
  gap: 48px;
}

.ft-col {
  display: grid;
  gap: 10px;
}

.ft-col h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #fff;
}

.ft-col a {
  font-size: 14px;
}

.ft-col a:hover {
  color: #fff;
}

.ft-bottom {
  max-width: 1120px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .feature-grid,
  .reviews-grid,
  .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rating-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav {
    padding: 12px 16px;
  }

  .nav-right a:not(.nav-dl) {
    display: none;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .hero {
    padding: 118px 16px 44px;
  }

  .seo-page {
    padding: 116px 16px 56px;
  }

  .seo-page-block {
    padding: 22px;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-badge {
    font-size: 13px;
    padding: 8px 11px;
  }

  .phone-shell {
    transform: none;
  }

  .features-section,
  .flow-section,
  .story-section,
  .seo-section,
  .reviews-section,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 2px 0 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .feature-card {
    min-width: 260px;
    scroll-snap-align: start;
  }

  .scroll-hint {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 54px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 248, 251, 0), var(--cream));
  }

  .scroll-hint span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
  }

  .day-item {
    grid-template-columns: 54px 1fr;
  }

  .day-dot {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .day-line {
    top: 40px;
  }

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

  .ft-top,
  .ft-links,
  .cm-buttons {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero h1 span {
    font-size: 36px;
  }

  .dl-btn,
  .cta-btn {
    width: 100%;
  }

  .tone-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
