:root {
  --ink: #21131f;
  --muted: #716071;
  --line: #eadce7;
  --paper: #ffffff;
  --soft: #F6EDF4;
  --primary: #8F2477;
  --primary-dark: #5e124d;
  --primary-soft: #b7439e;
  --sun: #f3bd63;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(66, 20, 56, .13);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143, 36, 119, .12), transparent 30rem),
    radial-gradient(circle at top right, rgba(246, 237, 244, .98), transparent 34rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(221, 229, 239, .8);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 40px rgba(66, 20, 56, .08);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.trust-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  display: block;
  width: 184px;
  height: auto;
}

.nav {
  gap: 26px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.nav a,
.header-cta,
.button,
.site-footer a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--primary);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}

.language-switcher a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.language-switcher a.is-active {
  color: var(--white);
  background: var(--primary);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--primary);
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100svh - 90px);
  padding: 74px 0 64px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(54px, 7vw, 94px);
  line-height: .92;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(20px, 2vw, 25px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 0 24px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 18px 34px rgba(143, 36, 119, .24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(143, 36, 119, .14);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(246, 237, 244, .8);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.app-preview-frame {
  position: relative;
  width: min(390px, 100%);
  padding: 10px;
  border: 1px solid rgba(143, 36, 119, .14);
  border-radius: 34px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-preview-frame::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 230px;
  height: 230px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(143, 36, 119, .18), transparent 65%);
}

.app-preview-frame img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 96px;
}

.benefits article,
.steps article,
.feature-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 45px rgba(18, 24, 38, .06);
}

.benefits article {
  padding: 24px;
}

.benefits p,
.steps p,
.feature-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  color: var(--primary-dark);
  background: var(--soft);
  font-size: 14px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 110px;
}

.split p:last-child {
  margin: 0;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.process,
.features,
.audience,
.difference,
.faq,
.final-cta {
  margin-bottom: 110px;
}

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

.steps article,
.feature-grid article {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

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

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

.chips span {
  min-height: 54px;
  padding: 0 20px;
  font-size: 17px;
}

.dark-panel {
  overflow: hidden;
  position: relative;
  padding: clamp(34px, 7vw, 78px);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(246, 237, 244, .26), transparent 18rem),
    linear-gradient(135deg, var(--primary-dark), var(--primary) 62%, #35102d);
}

.dark-panel .eyebrow {
  color: var(--sun);
}

.dark-panel h2,
.dark-panel p {
  max-width: 780px;
}

.dark-panel p {
  color: rgba(255, 255, 255, .76);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}

.faq details p {
  max-width: 820px;
  margin: 16px 0 0;
  font-size: 17px;
}

.final-cta {
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(143, 36, 119, .13), transparent 19rem),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta p {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(260px, 1fr) auto;
  align-items: start;
  gap: 28px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand img {
  display: block;
  width: 176px;
  height: auto;
  margin-bottom: 10px;
}

.footer-brand p,
.footer-company span,
.footer-company a {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.footer-company {
  display: grid;
  gap: 6px;
  font-style: normal;
}

.footer-company strong {
  color: var(--ink);
}

.footer-company a,
.footer-links a,
.footer-links button {
  color: var(--primary);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  left: clamp(14px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.cookie-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.cookie-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(33, 19, 31, .62);
}

.cookie-modal-card {
  width: min(100%, 720px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.modal-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.modal-close {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--soft);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.cookie-options {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: var(--soft);
}

.cookie-option input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.cookie-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.policy-page {
  max-width: 980px;
  padding-top: 72px;
  padding-bottom: 80px;
}

.policy-page h1 {
  max-width: 860px;
  font-size: clamp(46px, 7vw, 74px);
}

.policy-page h2 {
  margin-top: 44px;
  font-size: clamp(28px, 4vw, 42px);
}

.policy-page h3 {
  margin-top: 24px;
}

.policy-page ul {
  color: var(--muted);
  font-size: 18px;
}

.policy-table-wrap {
  overflow: hidden;
  margin: 22px 0 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.policy-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.policy-table-wrap th,
.policy-table-wrap td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table-wrap th {
  color: var(--primary);
  background: var(--soft);
}

.policy-table-wrap tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .nav {
    display: none;
  }

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

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

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-visual {
    order: -1;
  }

  .benefits,
  .steps,
  .feature-grid,
  .site-footer,
  .cookie-banner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
  }

  .brand img {
    width: 148px;
  }

  .header-cta {
    display: none;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .language-switcher a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .section-shell {
    width: calc(100% - 28px);
  }

  .hero {
    gap: 34px;
    padding: 34px 0 46px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

  .app-preview-frame {
    width: min(360px, 100%);
    padding: 8px;
    border-radius: 28px;
  }

  .app-preview-frame img {
    border-radius: 22px;
  }

  .benefits,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .process,
  .features,
  .audience,
  .difference,
  .faq,
  .final-cta,
  .split,
  .benefits {
    margin-bottom: 70px;
  }

  .split p:last-child {
    font-size: 24px;
  }

  .chips span {
    width: 100%;
  }

  .site-footer {
    width: calc(100% - 28px);
    gap: 20px;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    padding: 14px;
    border-radius: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .modal-heading {
    align-items: flex-start;
  }

  .policy-table-wrap {
    overflow-x: auto;
  }

  .policy-table-wrap table {
    min-width: 680px;
  }
}
