:root {
  --ink: #10121f;
  --midnight: #14162b;
  --aubergine: #251633;
  --wine: #6d1f4a;
  --rose: #d93f7b;
  --amber: #ffb84d;
  --cream: #fff7eb;
  --pearl: #fffdf8;
  --muted: #ecd9cf;
  --soft: #bfa9a2;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(20, 22, 43, 0.12);
  --shadow: 0 26px 70px rgba(16, 18, 31, 0.28);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: #fff;
  background:
    radial-gradient(
      circle at 14% 8%,
      rgba(255, 184, 77, 0.23),
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(217, 63, 123, 0.22),
      transparent 30%
    ),
    linear-gradient(180deg, #14162b 0%, #251633 46%, #171423 100%);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: 10px;
  border-radius: 10px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(20, 22, 43, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.025em;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  box-shadow: 0 14px 32px rgba(217, 63, 123, 0.28);
}
.logo-mark i {
  font-size: 18px;
  color: #fff;
}
.logo span {
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 850;
  color: #f7e8df;
}
.nav-links a {
  opacity: 0.86;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #fff;
}
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(217, 63, 123, 0.25);
}
.menu-btn {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 14px;
  padding: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--amber));
  box-shadow: 0 18px 35px rgba(217, 63, 123, 0.22);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-dark {
  background: var(--midnight);
  color: #fff;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 184, 77, 0.14);
  border: 1px solid rgba(255, 184, 77, 0.28);
  color: #fff5e4;
  font-size: 13px;
  font-weight: 950;
}
.eyebrow {
  font-weight: 950;
  color: #ffd68d;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  margin-bottom: 14px;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(46px, 7vw, 78px);
}
h2 {
  font-size: clamp(34px, 5vw, 54px);
  text-align: center;
}
h3 {
  font-size: 24px;
}
p {
  margin: 0;
}
.lead {
  font-size: 19px;
  color: #fff0e8;
  font-weight: 650;
  margin: 22px 0 32px;
  max-width: 690px;
}
.gradient-text {
  background: linear-gradient(135deg, #fff 4%, #ffd68d 45%, #ff75aa 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero {
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  right: -180px;
  top: 110px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 184, 77, 0.22),
    transparent 70%
  );
  animation: floatOrb 8s ease-in-out infinite alternate;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
  position: relative;
  z-index: 2;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-panel {
  border-radius: var(--radius);
  background-image:
    linear-gradient(hsla(260, 70%, 17%, 0.72), rgba(33, 13, 73, 0.72)),
    url("../img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 455px;
}
.hero-panel:before {
  content: "";
  position: absolute;
  inset: -42% -30% auto auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 184, 77, 0.35),
    rgba(217, 63, 123, 0.22)
  );
}
.hero-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.hero-card-title i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  color: #fff;
  font-size: 21px;
}
.analysis-sheet {
  position: relative;
  z-index: 2;
  background: #ffffff40;
  border: 1px solid #f2ddd1;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 48px rgba(16, 18, 31, 0.12);
  animation: softFloat 5s ease-in-out infinite alternate;
}
.sheet-row {
  height: 12px;
  background: #eadbd2;
  border-radius: 999px;
  margin: 15px 0;
}
.sheet-row.short {
  width: 62%;
}
.sheet-row.mid {
  width: 82%;
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.risk {
  border-radius: 16px;
  padding: 15px 12px;
  text-align: center;
  color: #fff;
  font-weight: 950;
}
.risk:nth-child(1) {
  background: linear-gradient(135deg, #ff6b6b, #ffb84d);
}
.risk:nth-child(2) {
  background: linear-gradient(135deg, #d93f7b, #6d1f4a);
}
.risk:nth-child(3) {
  background: linear-gradient(135deg, #7a4cff, #d93f7b);
}
.floating-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(217, 63, 123, 0.24);
  animation: pulseGlow 2.8s ease-in-out infinite;
}
.floating-note strong {
  display: block;
  font-size: 27px;
  line-height: 1;
}
section {
  padding: 74px 0;
}
.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head p {
  color: var(--muted);
  font-weight: 650;
  font-size: 17px;
  margin: 18px 0 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.045)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 28px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 77, 0.42);
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  box-shadow: 0 14px 32px rgba(217, 63, 123, 0.2);
}
.icon i {
  font-size: 22px;
  color: #fff;
}
.card p,
.muted {
  color: var(--muted);
  font-weight: 600;
}
.small {
  font-size: 14px;
  color: var(--soft);
}
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}
.light-section {
  background: linear-gradient(180deg, var(--cream), #fff);
  color: var(--ink);
}
.light-section .section-head p,
.light-section .card p,
.light-section .muted {
  color: #715f5b;
}
.light-section .card {
  background: #fff;
  border-color: var(--dark-line);
  box-shadow: 0 18px 55px rgba(16, 18, 31, 0.08);
}
.process-list {
  display: grid;
  gap: 18px;
}
.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
}
.process-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: linear-gradient(135deg, var(--rose), var(--amber));
}
.visual-brief {
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 390px;
}
.visual-brief:after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 184, 77, 0.22),
    rgba(217, 63, 123, 0.2)
  );
}
.visual-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.visual-top i {
  font-size: 42px;
  color: var(--rose);
}
.doc-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}
.doc-line {
  height: 50px;
  border-radius: 14px;
  background: #fff7eb;
  border: 1px solid #edd8cc;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  font-weight: 850;
}
.doc-line i {
  color: var(--rose);
}
.service-wide {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.045)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.service-media {
  min-height: 295px;
  border-radius: 22px;
  overflow: hidden;
  background-image:
    linear-gradient(hsla(260, 70%, 17%, 0.72), rgba(33, 13, 73, 0.72)),
    url("../img/about.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.service-media:before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
}
.service-media i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 118px;
  color: rgba(255, 255, 255, 0.88);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.22));
}
.service-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffd68d;
  margin-top: 1px;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat {
  padding: 22px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: #ffd68d;
  letter-spacing: -0.05em;
}
.stat span {
  font-weight: 850;
  color: #fff0e8;
}
.faq {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.faq details {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 950;
  font-size: 18px;
}
.faq p {
  color: var(--muted);
  font-weight: 600;
  margin-top: 12px;
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: start;
}
.form-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin: 0 0 8px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 13px;
  padding: 14px 15px;
  font: inherit;
  font-weight: 650;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: #cdb8b1;
}
select option {
  background: #251633;
}
.form-row {
  margin-bottom: 18px;
}
textarea {
  min-height: 118px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  text-align: center;
  color: #d9c4bd;
  margin-top: 12px;
}
.notice {
  display: none;
  margin-top: 14px;
  background: rgba(255, 184, 77, 0.14);
  border: 1px solid rgba(255, 184, 77, 0.32);
  border-radius: 16px;
  padding: 16px;
  color: #fff7eb;
  font-weight: 750;
}
.info-grid {
  display: grid;
  gap: 20px;
}
.info-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 24px;
}
.info-line {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  color: #fff0e8;
  font-weight: 650;
  margin: 13px 0;
}
.info-line i {
  color: #ffd68d;
  margin-top: 3px;
}
.map-slot {
  margin-top: 18px;
  min-height: 315px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  background-image:
    linear-gradient(rgba(20, 22, 43, 0.16), rgba(20, 22, 43, 0.16)),
    url("../img/map-placeholder.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.footer {
  background: #0c1020;
  padding: 54px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 42px;
}
.footer h4 {
  margin: 0 0 14px;
  font-size: 15px;
}
.footer a,
.footer p {
  display: block;
  color: #bfc2d0;
  font-size: 14px;
  margin: 0 0 9px;
  font-weight: 550;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 38px;
  padding-top: 26px;
  color: #bfc2d0;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.subhero {
  padding: 78px 0 66px;
  text-align: center;
}
.subhero h1 {
  font-size: clamp(42px, 6vw, 68px);
}
.subhero p {
  max-width: 770px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}
.price-card {
  text-align: center;
  padding: 34px 26px;
}
.price-card.featured {
  border-color: rgba(255, 184, 77, 0.72);
  background: linear-gradient(
    145deg,
    rgba(255, 184, 77, 0.15),
    rgba(255, 255, 255, 0.06)
  );
  transform: translateY(-10px);
}
.price {
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.05em;
  margin: 12px 0 4px;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: rgba(12, 16, 32, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
  border-radius: 20px;
  padding: 18px;
  display: none;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: auto;
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  margin: 0;
  color: #dfe1eb;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  border: 0;
  color: #fff;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 950;
  cursor: pointer;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--rose), var(--amber));
}
.cookie-settings,
.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
}
.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(8, 9, 16, 0.7);
  display: none;
  place-items: center;
  padding: 20px;
}
.cookie-panel.show {
  display: grid;
}
.cookie-modal {
  background: #0c1020;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  padding: 26px;
  box-shadow: var(--shadow);
}
.cookie-modal h3 {
  margin-bottom: 12px;
}
.toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}
.switch {
  position: relative;
  width: 50px;
  height: 28px;
  flex: 0 0 50px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #565a6e;
  border-radius: 999px;
  transition: 0.2s;
}
.slider:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}
.switch input:checked + .slider {
  background: linear-gradient(135deg, var(--rose), var(--amber));
}
.switch input:checked + .slider:before {
  transform: translateX(22px);
}
.legal-page .longtext {
  width: min(850px, 100%);
  margin: 0 auto;
  color: #fff0e8;
  font-weight: 610;
}
.legal-page .longtext h2 {
  text-align: left;
  font-size: 30px;
  margin: 34px 0 12px;
}
.legal-page .longtext p {
  margin-bottom: 18px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes softFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(217, 63, 123, 0.22);
  }
  50% {
    box-shadow: 0 18px 52px rgba(255, 184, 77, 0.32);
  }
}
@keyframes floatOrb {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(38px) scale(1.08);
  }
}
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    background: #14162b;
    border: 1px solid var(--line);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 8px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
    border-radius: 12px;
  }
  .nav-cta {
    text-align: center;
  }
  .menu-btn {
    display: grid;
    place-items: center;
  }
  .hero-grid,
  .split,
  .split.reverse,
  .service-wide,
  .form-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .grid-3,
  .grid-4,
  .stats-strip,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding-top: 50px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .grid-3,
  .grid-4,
  .stats-strip,
  .footer-grid,
  .risk-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  section {
    padding: 58px 0;
  }
  .cookie-banner {
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner.show {
    display: flex;
  }
  .cookie-actions button {
    flex: 1;
  }
}
