:root {
  --color-ink: #23191d;
  --color-muted: #6f6267;
  --color-line: #eadfe2;
  --color-page: #fff7f8;
  --color-surface: #ffffff;
  --color-primary: #d71954;
  --color-primary-dark: #8c1238;
  --color-accent: #f6b73c;
  --color-deep: #201014;
  --shadow-soft: 0 16px 40px rgba(85, 22, 43, 0.14);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 248, 0.92);
  border-bottom: 1px solid rgba(234, 223, 226, 0.85);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max-width));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

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

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.lang-button img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(35, 25, 29, 0.12);
}

.lang-button.is-active {
  background: var(--color-deep);
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--color-primary), #ff6f8d);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(215, 25, 84, 0.24);
}

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

.button.secondary {
  background: var(--color-surface);
  color: var(--color-primary-dark);
  border: 1px solid rgba(215, 25, 84, 0.22);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(32, 16, 20, 0.92) 0%, rgba(82, 15, 39, 0.7) 46%, rgba(32, 16, 20, 0.2) 100%),
    url("../assets/hero-bg.svg") center/cover;
}

.hero-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 92px 0 58px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 600px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.trust-badge {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: #fff;
}

.section-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.06rem;
}

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

.step {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.step-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #ffe8ee;
  color: var(--color-primary);
}

.step h3,
.testimonial h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.step p,
.testimonial p,
.legal-content p,
.legal-content li {
  color: var(--color-muted);
}

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

.testimonial {
  padding: 26px;
  border-left: 4px solid var(--color-primary);
  background: #fff;
  box-shadow: 0 10px 24px rgba(60, 27, 38, 0.08);
}

.final-cta {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(32, 16, 20, 0.9), rgba(215, 25, 84, 0.84)),
    url("../assets/cta-bg.svg") center/cover;
}

.final-cta .section-inner {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-cta h2 {
  max-width: 720px;
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background: var(--color-deep);
  color: #fff;
}

.footer-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: min(420px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cookie-notice p {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: 0.94rem;
}

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

.cookie-actions a {
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-hero {
  padding: 74px 0 42px;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}

.legal-content {
  width: min(100% - 32px, 860px);
  margin: 0 auto;
  padding: 48px 0 76px;
}

.legal-content h2 {
  margin-top: 34px;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-panel label {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-weight: 800;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--color-ink);
}

.contact-panel textarea {
  resize: vertical;
}
