:root {
  --rose: #ed1c70;
  --rose-2: #fa5294;
  --rose-deep: #c20d5c;
  --blush: #ffe8f2;
  --blush-2: #fff4f8;
  --cream: #fffaf5;
  --lilac: #b88af5;
  --ink: #291a24;
  --muted: #7d6173;
  --line: rgba(237, 28, 112, 0.14);
  --shadow: 0 24px 70px rgba(237, 28, 112, 0.14);
  --shadow-soft: 0 14px 34px rgba(237, 28, 112, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 232, 242, 0.95), transparent 32rem),
    radial-gradient(circle at 85% 10%, rgba(250, 82, 148, 0.18), transparent 24rem),
    linear-gradient(180deg, #fff 0%, var(--blush-2) 47%, #fff 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--rose-deep); }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(237, 28, 112, 0.10);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(1.4) blur(20px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 13px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 1.15rem;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.brand span small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-links a {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 800;
  padding: .62rem .82rem;
  border-radius: 999px;
}
.nav-links a[aria-current="page"], .nav-links a:hover {
  color: var(--rose-deep);
  background: rgba(237, 28, 112, .08);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-deep);
  padding: .72rem .9rem;
  font-weight: 900;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 74px 0 54px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before {
  width: 260px; height: 260px;
  background: rgba(237, 28, 112, .10);
  left: -110px; top: 50px;
  filter: blur(2px);
}
.hero::after {
  width: 360px; height: 360px;
  background: rgba(184, 138, 245, .12);
  right: -150px; bottom: 10px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, .97fr);
  align-items: center;
  gap: 46px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--rose-deep);
  background: rgba(237, 28, 112, .09);
  border: 1px solid var(--line);
  padding: .55rem .82rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .86rem;
}
.dot { width: .55rem; height: .55rem; border-radius: 999px; background: var(--rose); box-shadow: 0 0 0 6px rgba(237, 28, 112, .12); }

h1, h2, h3 { line-height: 1.04; margin: 0; letter-spacing: -.055em; }
h1 {
  margin-top: 1rem;
  font-size: clamp(2.75rem, 7.5vw, 6.25rem);
  max-width: 780px;
}
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.2rem; letter-spacing: -.03em; }
.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 690px;
  margin: 1.2rem 0 0;
}
.accent { color: var(--rose); }

.actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.6rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .88rem 1.15rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 950;
  box-shadow: none;
  cursor: pointer;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-2));
  box-shadow: 0 18px 36px rgba(237, 28, 112, .26);
}
.btn-secondary {
  color: var(--rose-deep);
  background: rgba(255,255,255,.78);
  border-color: var(--line);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary:hover { color: #fff; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 2rem;
}
.trust-pill {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: .9rem;
  box-shadow: var(--shadow-soft);
}
.trust-pill strong { display: block; font-size: .95rem; }
.trust-pill span { color: var(--muted); font-size: .86rem; }

.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-card {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,232,242,.76));
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04);
}
.phone-card {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: min(300px, 66%);
  border-radius: 34px;
  padding: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 26px 60px rgba(41, 26, 36, .14);
  backdrop-filter: blur(16px);
}
.phone-top { display: flex; align-items: center; gap: 12px; }
.phone-top img { width: 52px; height: 52px; border-radius: 16px; }
.phone-top strong { display: block; font-size: 1rem; }
.phone-top span { color: var(--muted); font-size: .86rem; }
.budget-line { margin: 16px 0; }
.budget-line small { color: var(--muted); font-weight: 800; }
.progress { height: 12px; background: rgba(237,28,112,.12); border-radius: 999px; overflow: hidden; margin-top: 7px; }
.progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--rose), var(--rose-2)); }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric { border-radius: 18px; padding: 12px; background: var(--blush-2); border: 1px solid var(--line); }
.metric strong { display: block; color: var(--rose-deep); font-size: 1.1rem; }
.metric span { color: var(--muted); font-size: .8rem; font-weight: 800; }

.section { padding: 64px 0; }
.section-header { display: flex; justify-content: space-between; gap: 1.5rem; align-items: end; margin-bottom: 1.4rem; }
.section-header p { color: var(--muted); max-width: 560px; margin: .7rem 0 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.card p { color: var(--muted); margin: .65rem 0 0; }
.icon {
  width: 48px; height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--rose), var(--rose-2));
  color: #fff;
  font-weight: 950;
  margin-bottom: 1rem;
}
.feature-list { display: grid; gap: 12px; margin-top: 18px; }
.check-row { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check-row::before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(237,28,112,.10);
  color: var(--rose-deep);
  font-weight: 950;
}

.showcase {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.showcase-panel {
  border-radius: 38px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(255,232,242,.82), rgba(255,255,255,.92));
  border: 1px solid rgba(237,28,112,.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.showcase-panel img { border-radius: 28px; box-shadow: var(--shadow-soft); aspect-ratio: 1 / 1; object-fit: cover; }
.timeline { display: grid; gap: 14px; }
.timeline-item { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; }
.timeline-number {
  width: 46px; height: 46px; border-radius: 16px;
  display: grid; place-items: center;
  color: #fff;
  background: var(--rose);
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(237,28,112,.20);
}
.timeline-item p { margin: .3rem 0 0; color: var(--muted); }

.testimonials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.testimonial { overflow: hidden; padding: 0; }
.testimonial img { height: 230px; width: 100%; object-fit: cover; object-position: top; }
.testimonial blockquote { margin: 0; padding: 20px; color: var(--muted); }
.testimonial cite { display: block; margin-top: .7rem; color: var(--rose-deep); font-weight: 950; font-style: normal; }

.legal-strip {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: #fff;
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(237,28,112,.22);
}
.legal-strip h2, .legal-strip p { color: #fff; }
.legal-strip p { opacity: .86; }
.legal-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.legal-grid a, .legal-grid span {
  display: block;
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 900;
}
.legal-grid small { display: block; opacity: .78; font-weight: 750; margin-top: .35rem; }

.page-hero { padding: 64px 0 28px; }
.page-hero .lead { max-width: 820px; }
.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding-bottom: 70px;
}
.toc {
  position: sticky;
  top: 96px;
  padding: 18px;
}
.toc a { display: block; padding: .5rem .6rem; color: var(--muted); font-weight: 850; border-radius: 12px; }
.toc a:hover { background: rgba(237,28,112,.08); color: var(--rose-deep); }
.legal-doc {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow-soft);
}
.legal-doc section + section { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.legal-doc h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); margin-bottom: .8rem; }
.legal-doc h3 { margin-top: 1.2rem; }
.legal-doc p, .legal-doc li { color: var(--muted); }
.legal-doc ul, .legal-doc ol { padding-left: 1.2rem; }
.legal-doc a { color: var(--rose-deep); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.notice {
  border-radius: 22px;
  padding: 18px;
  background: var(--blush-2);
  border: 1px solid var(--line);
  color: var(--muted);
}
.notice strong { color: var(--rose-deep); }

.contact-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 20px;
  align-items: start;
}
.contact-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.contact-card p { color: var(--muted); }
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 14px;
  background: var(--blush-2);
  border: 1px solid var(--line);
  margin-top: 12px;
}
.contact-method strong { display: block; }
.contact-method span { color: var(--muted); font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 7px; margin-bottom: 14px; }
.form-field.full { grid-column: 1 / -1; }
label { color: var(--ink); font-weight: 900; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(237,28,112,.18);
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  padding: .92rem 1rem;
  color: var(--ink);
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(237,28,112,.10);
}
.form-note { color: var(--muted); font-size: .9rem; margin: .8rem 0 0; }
.success-banner {
  display: none;
  border-radius: 18px;
  background: rgba(37, 174, 111, .10);
  border: 1px solid rgba(37, 174, 111, .24);
  color: #126b42;
  padding: 14px;
  margin-bottom: 14px;
  font-weight: 850;
}
.success-banner.is-visible { display: block; }

.faq { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.74);
  padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 950; color: var(--ink); }
details p { color: var(--muted); margin-bottom: 0; }

.site-footer {
  border-top: 1px solid rgba(237,28,112,.12);
  background: rgba(255,255,255,.68);
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}
.footer-grid p { color: var(--muted); margin: .8rem 0 0; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: var(--muted); font-weight: 820; }
.footer-links a:hover { color: var(--rose-deep); }
.footer-title { font-weight: 950; margin-bottom: .75rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid rgba(237,28,112,.10);
  padding-top: 18px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .85rem 1rem; }
  .hero-grid, .showcase, .legal-layout, .contact-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-visual { min-height: 480px; }
  .toc { position: static; }
  .trust-row, .grid-3, .grid-2, .testimonials, .legal-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-header { display: block; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, var(--container)); }
  .hero-visual { min-height: 420px; }
  .phone-card { left: 18px; right: 18px; width: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .brand span small { display: none; }
}

.language-select {
  width: auto;
  min-height: 40px;
  border-radius: 999px;
  padding: .48rem 2rem .48rem .8rem;
  font-weight: 900;
  color: var(--rose-deep);
  background-color: rgba(255,255,255,.78);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .language-select { width: 100%; }
}
