:root {
  --bg: #f0f0f1;
  --primary: #77206e;
  --primary-dark: #5e1857;
  --secondary: #ffffff;
  --text: #1c1c1f;
  --muted: #6e6e78;
  --border: rgba(119, 32, 110, 0.12);
  --shadow: 0 18px 55px rgba(31, 16, 30, 0.09);
  --radius: 28px;
  --section-gap: 80px;
  --section-pad: 56px;
  --section-pad-mobile: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(119, 32, 110, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(119, 32, 110, 0.08), transparent 26%),
    var(--bg);
}

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

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

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.page {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(119, 32, 110, 0.82), rgba(59, 23, 54, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(17, 8, 17, 0.14);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(150px, 22vw, 268px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: default;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1 1 auto;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

.hero {
  margin-top: -50px;
  padding: clamp(42px, 7vw, 76px);
  border-radius: 0 0 34px 34px;
  background: linear-gradient(135deg, #77206e 0%, #65205c 44%, #3b1736 100%);
  color: #fff;
  box-shadow: 0 24px 48px rgba(23, 11, 22, 0.16);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.15rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.hero p {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 14px 28px rgba(17, 8, 17, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.section,
.cta {
  margin-top: var(--section-gap);
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2,
.cta h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-title h2 {
  color: #1a1a1d;
}

.section-title p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
  font-size: 0.98rem;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(119, 32, 110, 0.12);
  border-radius: var(--radius);
  padding: var(--section-pad);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.card ul {
  color: var(--muted);
}

.highlight {
  color: var(--primary-dark);
  font-weight: 700;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: var(--section-pad);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(119, 32, 110, 0.08), rgba(119, 32, 110, 0.03));
  border: 1px solid var(--border);
}

.cta p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.proof-section,
.faq-section {
  margin-top: var(--section-gap);
}

.proof-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-card,
.faq-item {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.3;
}

.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.contact-section {
  margin-top: var(--section-gap);
  padding: var(--section-pad);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at bottom right, rgba(119, 32, 110, 0.12), transparent 34%),
    #151518;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px 30px 0 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-section .section-title {
  display: block;
  margin-bottom: 18px;
  text-align: center;
}

.contact-section .section-title > div {
  width: 100%;
}

.contact-section .section-title h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.9rem);
  letter-spacing: -0.04em;
}

.contact-section .section-title p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
  margin: 12px auto 0;
}

.contact-section .section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
  gap: 22px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.contact-column {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.contact-form-embed {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  min-height: 360px;
}

.contact-form-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.contact-map {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-map-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  min-height: 360px;
}

.contact-map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

footer {
  margin-top: 0;
  padding: 22px 18px;
  background: #151518;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-social .footer-phone {
  width: auto;
  min-height: 42px;
  padding: 0 14px;
  gap: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 920px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang-switch {
    order: 1;
  }

  .nav {
    width: 100%;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .proof-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100%, calc(100% - 20px));
    padding-top: 12px;
  }

  .brand img {
    width: clamp(120px, 34vw, 150px);
  }

  .topbar,
  .hero,
  .card,
  .cta {
    border-radius: 22px;
  }

  .hero,
  .card,
  .cta {
    padding: var(--section-pad-mobile);
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
  }

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

  .proof-card,
  .faq-item {
    padding: 18px;
  }

  .contact-section {
    padding: var(--section-pad-mobile);
  }

  .contact-layout {
    gap: 16px;
  }

  .contact-form-embed {
    min-height: 620px;
  }

  .contact-form-embed iframe {
    min-height: 620px;
    height: 620px;
  }

  .contact-map-card {
    min-height: 240px;
  }

  .contact-map-card iframe {
    min-height: 240px;
    height: 240px;
  }

  .faq-item summary {
    padding: 18px 18px 16px;
  }

  .faq-item summary::after {
    right: 16px;
    top: 14px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .footer-social {
    gap: 10px;
    margin-bottom: 12px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  footer {
    padding: 18px 14px;
    border-radius: 0 0 18px 18px;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: clamp(104px, 38vw, 132px);
  }
}

@media (max-width: 360px) {
  .brand img {
    width: clamp(96px, 40vw, 118px);
  }
}
