:root {
  color-scheme: light;
  --header-height: 84px;
  --pink-900: #ff4f9b;
  --pink-700: #ff6aa9;
  --pink-500: #ff8dbd;
  --pink-200: #ffe0ec;
  --peach-200: #ffd9c9;
  --peach-100: #fff0e8;
  --gray-900: #1f1b24;
  --gray-700: #4a4458;
  --gray-500: #7c7684;
  --gray-200: #efe8f1;
  --white: #ffffff;
  --shadow-lg: 0 30px 60px rgba(255, 92, 168, 0.15);
  --shadow-md: 0 18px 30px rgba(47, 24, 62, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--gray-900);
  background: radial-gradient(circle at top left, #fff8fb 0%, #fff5f8 40%, #fff 100%);
  line-height: 1.6;
}

.thanks-page {
  background: #fff6f9;
}

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

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

main {
  overflow: hidden;
}

.legal-page main {
  overflow: visible;
}

.legal-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px 0;
}

.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

.legal-card {
  background: #fff;
  border: 1px solid rgba(255, 92, 168, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 24px rgba(47, 24, 62, 0.08);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.legal-card h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--gray-500);
  margin-bottom: 20px;
}

.legal-card h2 {
  font-size: 1.08rem;
  margin: 24px 0 10px;
  color: var(--gray-900);
  padding-left: 14px;
  border-left: 3px solid rgba(255, 92, 168, 0.5);
}

.legal-card p {
  color: var(--gray-700);
  margin-bottom: 12px;
}

.legal-card ul {
  margin: 8px 0 14px 18px;
  color: var(--gray-700);
  display: grid;
  gap: 6px;
}

.legal-quickfacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 22px;
}

.legal-fact {
  background: #fff6fa;
  border: 1px solid rgba(255, 92, 168, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
}

.legal-fact span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-fact strong {
  font-size: 0.92rem;
  color: var(--gray-900);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 122, 179, 0.15);
}

.cv-reader-page .site-header {
  background: rgba(255, 241, 247, 0.92);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mobile-nav-toggle {
  display: none;
  border: 1px solid rgba(255, 92, 168, 0.25);
  background: #fff;
  color: var(--pink-900);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-menu {
  display: none;
}

.cta-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(255, 122, 179, 0.15);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  z-index: 110;
}

.cta-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 64px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-banner-inner p {
  font-weight: 600;
  color: var(--gray-700);
}

body.sticky-visible .cta-banner {
  transform: translateY(0);
}

body.sticky-visible {
  padding-top: 64px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
}

.brand-word {
  width: 110px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--gray-700);
  margin-left: auto;
}

.nav-links a:hover {
  color: var(--pink-900);
}

.lang-switch {
  position: relative;
  margin-left: 12px;
  font-weight: 700;
  color: var(--gray-700);
}

.lang-switch-mobile {
  display: none;
}

.lang-switch:hover {
  color: var(--pink-900);
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 12px;
  min-width: 44px;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 122, 179, 0.25);
  background: #fff;
  font-size: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.lang-caret {
  font-size: 0.7rem;
  line-height: 1;
  color: var(--gray-500);
}

.lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid rgba(255, 122, 179, 0.25);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: var(--shadow-md);
  min-width: 60px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lang-menu a {
  color: var(--gray-700);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.lang-switch.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lang-switch:hover .lang-current {
  border-color: rgba(255, 122, 179, 0.5);
  background: #fff6f9;
}

.lang-menu a:hover {
  background: #fff1f6;
  color: var(--pink-900);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(120deg, var(--pink-900), var(--pink-700));
  color: var(--white);
  box-shadow: 0 18px 30px rgba(255, 92, 168, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 35px rgba(255, 92, 168, 0.35);
}

.starter-cta {
  margin-top: 12px;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 92, 168, 0.4);
  color: var(--pink-900);
}

.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 92, 168, 0.12);
  color: var(--pink-900);
}

.nav-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
}

.thanks-page .hero {
  padding-top: 0px;
}

.notfound-page .hero {
  min-height: calc(100dvh - var(--header-height));
}

@supports not (height: 100dvh) {
  .notfound-page .hero {
    min-height: calc(100vh - var(--header-height));
  }
}

.thanks-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
}

.hero-content {
  grid-column: span 5;
}

.hero-visual {
  grid-column: span 7;
}

.thanks-page .hero-content {
  grid-column: span 6;
}

.thanks-page .hero-visual {
  grid-column: span 6;
}

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--pink-200);
  color: var(--pink-900);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: var(--gray-700);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.hero-metrics div {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-metrics strong {
  font-size: 1.4rem;
  color: var(--pink-900);
}

.hero-metrics span {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 24px;
}

.hero-image {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-md);
  align-items: center;
}

.hero-card img {
  width: 64px;
}

.hero-card-title {
  font-weight: 700;
}

.hero-card-sub {
  color: var(--gray-500);
  font-size: 0.9rem;
}

section {
  padding: 70px 24px;
}

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

.section-head h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.accent {
  color: var(--pink-900);
}

.section-head p {
  color: var(--gray-700);
}

.benefit-grid,
.step-row,
.pricing-grid,
.stat-grid,
.faq-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 92, 168, 0.12);
  box-shadow: 0 10px 24px rgba(47, 24, 62, 0.08);
}

.card h3 {
  margin-bottom: 0;
}

.benefit-grid .card {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.benefit-grid .card p {
  color: var(--gray-700);
  line-height: 1.55;
}

.benefit-card-upcoming {
  position: relative;
  border: 2px solid rgba(255, 92, 168, 0.35);
}

.benefit-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  background: var(--pink-900);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.benefit-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 10px;
}

.benefit-title h3 {
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.2;
  min-height: 2.4em;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #ffeaf3;
  color: var(--pink-900);
  flex-shrink: 0;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-grid .card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 92, 168, 0.28);
    box-shadow: 0 16px 28px rgba(255, 92, 168, 0.14);
  }
}

.steps {
  background: linear-gradient(120deg, var(--peach-100), #fff);
}

.step-row {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: var(--pink-200);
  color: var(--pink-900);
  font-weight: 700;
  margin-bottom: 14px;
}

.social-proof {
  background: radial-gradient(circle at top right, #fff1f6, #fff);
}

.logo-row {
  max-width: var(--max-width);
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--gray-500);
  font-weight: 700;
}

.stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.stat strong {
  color: var(--pink-900);
  font-size: 1.6rem;
}

.pricing {
  background: linear-gradient(120deg, #fff, #fff1f7);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  overflow: visible;
}

.billing-toggle {
  max-width: var(--max-width);
  margin: 0 auto 22px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.billing-option {
  border: none;
  background: transparent;
  color: var(--gray-700);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.billing-toggle {
  background: #fff7fb;
  border: 1px solid rgba(255, 92, 168, 0.24);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
}

.billing-option span {
  font-weight: 600;
  color: var(--pink-900);
}

.billing-option.is-active {
  background: var(--pink-900);
  color: var(--white);
  box-shadow: 0 6px 14px rgba(255, 92, 168, 0.25);
}

.billing-option.is-active span {
  color: var(--white);
}

.price-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.price-card:hover,
.price-card:focus-within {
  z-index: 40;
  transform: none;
}

.pricing .btn-primary:hover,
.pricing .btn-outline:hover,
.pricing .price-card:hover {
  transform: none;
}

.price-card ul {
  list-style: none;
  margin: 20px 0;
  display: grid;
  gap: 10px;
  color: var(--gray-700);
}

.price-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink-900);
  font-size: 0.8rem;
}

.tooltip-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 1px;
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 155, 0.45);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink-900);
  cursor: help;
  position: relative;
  line-height: 1;
  z-index: 5;
}

.tooltip-help::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  min-width: 220px;
  max-width: 280px;
  background: #fff;
  color: var(--gray-900);
  border: 1px solid rgba(255, 79, 155, 0.25);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 30;
}

.tooltip-help:hover::after,
.tooltip-help:focus::after {
  opacity: 1;
  visibility: visible;
}

.tooltip-help:hover,
.tooltip-help:focus {
  z-index: 60;
}

.price-card .btn,
.price-card button,
.price-card a.btn {
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  justify-content: center;
}


.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-900);
}

.price span {
  font-size: 1rem;
  color: var(--gray-500);
}

.price .price-value {
  font-size: inherit;
  color: inherit;
}

.price-note {
  margin: 8px 0 6px;
  font-size: 0.86rem;
  color: var(--gray-700);
}

.price-strike {
  margin-left: 10px;
  font-size: 1rem;
  color: var(--gray-500);
  text-decoration: line-through;
  text-decoration-color: var(--pink-900);
  font-weight: 600;
}

.featured {
  transform: none;
  border: 2px solid rgba(255, 92, 168, 0.35);
}

.badge {
  position: absolute;
  top: -16px;
  right: 20px;
  background: var(--pink-900);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.faq {
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
  padding-bottom: 110px;
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.faq details {
  background: var(--white);
  border-radius: 18px;
  padding: 20px 22px;
  padding-bottom: 54px;
  border: 1px solid rgba(255, 92, 168, 0.18);
  box-shadow: 0 12px 24px rgba(47, 24, 62, 0.08);
  position: relative;
}

.faq summary {
  list-style: none;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gray-900);
  cursor: pointer;
  display: block;
  padding-right: 42px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-900);
  background: #fff1f7;
  border: 1px solid rgba(255, 92, 168, 0.25);
  font-weight: 800;
  font-size: 0.95rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin-top: 12px;
  color: var(--gray-700);
  line-height: 1.65;
  font-size: 0.96rem;
}

.faq-summary-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fff1f7;
  border: 1px solid rgba(255, 92, 168, 0.22);
  color: var(--pink-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: absolute;
  left: 22px;
  bottom: 16px;
}

.faq-tag .material-symbols-outlined {
  order: 2;
  font-size: 0.9rem;
  line-height: 1;
}

.demo-cta-section {
  padding: 36px 24px 130px;
  background: linear-gradient(180deg, #fff7fb 0%, #fff2f8 100%);
}

.demo-cta-inner {
  margin: 0 auto;
  max-width: 840px;
  text-align: center;
  padding: 0;
}

.demo-cta-inner h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.demo-cta-inner p {
  color: var(--gray-700);
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.demo {
  padding: 80px 24px 100px;
}

.demo-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.demo-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.demo-card {
  margin: 0 0 0 auto;
  background: linear-gradient(120deg, var(--pink-200), var(--peach-100));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.demo-card h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.demo-form {
  display: grid;
  gap: 16px;
  justify-self: stretch;
}

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


.demo-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--gray-700);
}

.demo-form input,
.demo-form select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(47, 24, 62, 0.15);
  font-size: 1rem;
  width: 100%;
  min-height: 48px;
}

.cv-ai-section {
  padding: 0 24px 64px;
}

.cv-ai-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.cv-ai-row-reverse .cv-ai-content {
  order: 1;
}

.cv-ai-row-reverse .cv-ai-image {
  order: 2;
}

.cv-ai-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.cv-ai-content h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.cv-ai-content p {
  margin-bottom: 14px;
  color: var(--gray-700);
}

.hero-mobile-copy {
  display: none;
}

.hero-checklist {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.hero-checklist li {
  position: relative;
  padding-left: 18px;
}

.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink-900);
  font-weight: 700;
}

.cv-reader-page .hero-mobile-copy + .hero-actions {
  margin-top: 20px;
}

.cv-ai-content .hero-actions {
  margin-top: 24px;
}

.cv-reader-page .hero h1 {
  margin-bottom: 10px;
}

.cv-reader-page .hero p {
  margin-bottom: 12px;
}

.cv-reader-page .hero-mobile-copy p {
  margin-bottom: 8px;
}

.cv-ai-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--gray-700);
}

.cv-ai-list li {
  position: relative;
  padding-left: 18px;
}

.cv-ai-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink-900);
  font-size: 0.9rem;
}

.site-footer {
  padding: 40px 24px 60px;
  background: var(--gray-900);
  color: #f8f4fb;
  display: grid;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  width: 120px;
  margin: 0 auto 10px;
  filter: brightness(1.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 2px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-legal-links a {
  color: #f8f4fb;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
}

.footer-legal-links a + a::before {
  content: "·";
  opacity: 0.6;
  margin: 0 10px;
}

.footer-legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-footer small {
  opacity: 0.82;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.messenger-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0084ff;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 132, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.messenger-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 132, 255, 0.42);
}

.chat-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  pointer-events: auto;
  display: block;
  opacity: 1;
  visibility: visible;
}

.chat-float-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: #22b07d;
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
  letter-spacing: 0.1px;
  box-shadow: 0 14px 28px rgba(34, 176, 125, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 1;
  visibility: visible;
}

.chat-float-toggle i {
  margin-left: 8px;
}

.chat-float-toggle:hover {
  transform: translateY(-2px);
  background: #1e9b6f;
  box-shadow: 0 18px 34px rgba(34, 176, 125, 0.4);
}

.chat-float-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  background: #fff8fb;
  border: 1px solid rgba(255, 92, 168, 0.2);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  min-width: 190px;
  overflow: hidden;
}

.chat-float-menu a {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 11px 14px;
  color: var(--gray-700);
  font-weight: 600;
}

.chat-float-menu a i {
  margin-right: 0.35em;
  width: auto;
  text-align: center;
}

.chat-float-menu a:hover {
  background: #fff1f7;
  color: var(--pink-900);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(31, 27, 36, 0.6);
  padding: 24px;
  overflow-y: auto;
  z-index: 20;
}

.modal.open {
  display: grid;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-content ul {
  margin: 16px 0;
  padding-left: 20px;
  color: var(--gray-700);
}

.demo-popup-modal .modal-content {
  width: min(92vw, 1200px);
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.demo-popup-modal {
  z-index: 210;
  align-items: start;
  padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

.demo-popup-modal .modal-close {
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: var(--pink-900);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(255, 79, 155, 0.35);
}

.demo-popup-modal .modal-close:hover {
  background: #e8488e;
}

.demo-popup-image-link {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(31, 27, 36, 0.26);
}

.demo-popup-image-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .demo-popup-modal {
    padding: calc(var(--header-height) + 10px) 12px 12px;
  }
}

.pricing-modal-content {
  max-width: 980px;
  background: linear-gradient(160deg, #fff8fb, #fff1f7);
  border: 1px solid rgba(255, 92, 168, 0.18);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
}

.pricing-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.pricing-modal-plan {
  border: 1px solid rgba(255, 92, 168, 0.22);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(255, 92, 168, 0.12);
}

.pricing-modal-plan h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--gray-900);
}

.pricing-modal-price {
  color: var(--pink-900);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.pricing-modal-price span {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.pricing-modal-note {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--gray-700);
}

.pricing-modal-plan ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.pricing-modal-plan li + li {
  margin-top: 8px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

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

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

@media (max-width: 900px) {
  .legal-quickfacts {
    grid-template-columns: 1fr;
  }

  .site-header .nav > .btn.btn-primary {
    display: none;
  }

  body.sticky-visible {
    padding-top: 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cv-reader-page .nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
  }

  .cv-reader-page .brand-word {
    width: 120px;
    max-width: 100%;
  }

  .cv-reader-page .nav .btn {
    padding: 10px 14px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .cta-banner {
    display: none;
  }

  .hero {
    padding-top: 60px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cv-reader-page .hero {
    padding-top: 0;
    gap: 14px;
  }

  .cv-reader-page .thanks-header {
    padding-bottom: 8px;
  }

  .cv-reader-page .hero-visual .hero-image img {
    width: 80%;
    margin: 0 auto;
  }

  .cv-reader-page .hero-content > p {
    display: none;
  }

  .cv-reader-page .hero-mobile-copy {
    display: block;
  }

  .hero-content,
  .hero-visual {
    grid-column: auto;
  }

  .hero-visual {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero h1 {
    font-size: 1.75rem;
  }


  .demo-layout {
    grid-template-columns: 1fr;
  }

  .cv-ai-row {
    grid-template-columns: 1fr;
  }

  .cv-reader-page .hero-visual,
  .cv-reader-page .cv-ai-image {
    order: 1;
  }

  .cv-reader-page .hero-content,
  .cv-reader-page .cv-ai-content {
    order: 2;
  }

  .demo-card {
    padding: 32px;
    margin: 0;
  }

  .pricing-modal-grid {
    grid-template-columns: 1fr;
  }

  .pricing-modal-content {
    max-height: calc(100dvh - 24px);
  }

  .chat-float {
    left: auto;
    right: 12px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 9999;
    display: block;
    opacity: 0;
    visibility: visible;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
  }

  .chat-float-toggle {
    display: flex;
    width: auto;
    padding: 12px 16px;
    font-size: 0.92rem;
  }

}

@media (max-width: 640px) {
  .nav {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .brand {
    margin-right: auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: 8px;
  }

  .mobile-nav-menu {
    display: none;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 8px 24px 14px;
    background: #fff;
    border-bottom: 1px solid rgba(255, 122, 179, 0.15);
  }

  .mobile-nav-menu.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-nav-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff7fb;
    color: var(--gray-700);
    font-weight: 600;
  }

  .cv-reader-page .nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .cv-reader-page .brand-word {
    width: 108px;
  }

  .cv-reader-page .nav .btn {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .cv-reader-page .nav .btn.btn-primary {
    display: none;
  }

  .cv-reader-page [data-open-pricing] {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    flex-wrap: wrap;
    gap: 8px;
  }

  .featured {
    transform: none;
  }

  .demo-card {
    padding: 24px;
  }

  .demo-row {
    grid-template-columns: 1fr;
  }

  .lang-switch {
    display: none;
  }

  .lang-switch.lang-switch-mobile {
    display: inline-flex;
    position: absolute;
    top: 12px;
    right: 24px;
    z-index: 5;
  }

  .messenger-float {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  .chat-float {
    left: auto;
    right: 12px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 9999;
    display: block;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }

  .chat-float-toggle {
    display: flex;
    width: auto;
    padding: 12px 16px;
    font-size: 0.92rem;
  }
}

@media (max-width: 900px) {
  .chat-float.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
