:root {
  --background: #070a12;
  --surface: #111727;
  --text: #f7f7fb;
  --muted: #aeb5c7;
  --gold: #f4c76b;
  --gold-light: #fff0b5;
  --border: rgba(255,255,255,.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background: radial-gradient(circle at 50% -10%, #29365c 0, transparent 34%), radial-gradient(circle at 10% 70%, rgba(66,133,244,.12), transparent 28%), radial-gradient(circle at 90% 60%, rgba(244,199,107,.1), transparent 26%), var(--background);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.orb { position: fixed; border-radius: 50%; filter: blur(70px); opacity: .22; pointer-events: none; }
.orb-one { width: 280px; height: 280px; background: #3159a8; top: 10%; left: -100px; }
.orb-two { width: 240px; height: 240px; background: #b47d25; right: -90px; bottom: 12%; }
main { position: relative; z-index: 1; width: min(940px, calc(100% - 32px)); margin: auto; padding: 28px 0 42px; }
header { display: flex; justify-content: center; align-items: center; padding: 6px 0 22px; }
.brand { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  max-height: 75px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.28));
  transition: transform .25s ease, filter .25s ease;
}
.brand:hover .brand-logo { transform: translateY(-2px); filter: drop-shadow(0 12px 28px rgba(244,199,107,.18)); }
.hero { text-align: center; padding: 34px 0 24px; }
h1 { font-family: "Playfair Display", serif; font-size: clamp(42px,7vw,76px); line-height: .98; letter-spacing: -.045em; margin: 0 auto 18px; max-width: 800px; }
h1 span { background: linear-gradient(110deg,#fff 15%,var(--gold-light) 55%,var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-description { margin: 0 auto; max-width: 610px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.review-card { position: relative; max-width: 680px; margin: 26px auto 0; padding: 32px 26px 28px; border: 1px solid rgba(244,199,107,.25); border-radius: 30px; background: linear-gradient(145deg,rgba(20,27,45,.94),rgba(9,13,24,.96)); box-shadow: 0 35px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.07); backdrop-filter: blur(22px); overflow: hidden; }
.review-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg,rgba(255,255,255,.08),transparent 30%,rgba(244,199,107,.05)); }
.stars { position: relative; display: flex; justify-content: center; gap: 7px; margin: 2px 0 17px; }
.stars span { font-size: 36px; color: var(--gold); filter: drop-shadow(0 0 12px rgba(244,199,107,.28)); animation: float 3s ease-in-out infinite; }
.stars span:nth-child(2){animation-delay:.12s}.stars span:nth-child(3){animation-delay:.24s}.stars span:nth-child(4){animation-delay:.36s}.stars span:nth-child(5){animation-delay:.48s}
@keyframes float { 50% { transform: translateY(-4px) scale(1.04); } }
.review-card h2 { position: relative; font-size: 20px; margin: 0 0 7px; }
.review-card > p { position: relative; color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0 auto 24px; max-width: 470px; }
.review-button { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 17px 22px; border-radius: 17px; background: linear-gradient(135deg,#fff,#f5f7fb); color: #101522; font-size: 16px; font-weight: 700; text-decoration: none; box-shadow: 0 12px 35px rgba(0,0,0,.28); transition: transform .22s ease, box-shadow .22s ease; }
.review-button:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(0,0,0,.38); }
.review-button:active { transform: translateY(0); }
.review-button svg { width: 23px; height: 23px; }
.note { position: relative; margin: 14px 0 0 !important; color: #737c90 !important; font-size: 12px !important; }
.note strong { color: #aeb5c7; }
.trust-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 15px; }
.trust-item { padding: 14px 10px; border: 1px solid var(--border); background: rgba(255,255,255,.028); border-radius: 16px; color: #c5cada; font-size: 12px; line-height: 1.45; }
.trust-item strong { display: block; color: #fff; font-size: 13px; margin-bottom: 3px; }
.sparkles { position: absolute; inset: 0; pointer-events: none; }
.sparkles i { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: #fff; opacity: .55; animation: twinkle 2.7s infinite; }
.sparkles i:nth-child(1){left:10%;top:18%}.sparkles i:nth-child(2){left:88%;top:26%;animation-delay:1s}.sparkles i:nth-child(3){left:78%;top:72%;animation-delay:1.8s}.sparkles i:nth-child(4){left:17%;top:78%;animation-delay:1.3s}
@keyframes twinkle { 50% { opacity: .1; transform: scale(.4); } 100% { opacity: .55; } }
footer { text-align: center; color: #667087; font-size: 12px; padding-top: 25px; }
footer strong { color: #aeb5c7; }
.toast { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%,20px); opacity: 0; pointer-events: none; background: #151d31; border: 1px solid var(--border); color: #fff; padding: 12px 16px; border-radius: 13px; font-size: 13px; box-shadow: 0 15px 40px rgba(0,0,0,.4); transition: opacity .25s ease, transform .25s ease; z-index: 10; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
@media (max-width:600px) {
  main { width: min(100% - 20px,940px); padding-top: 18px; }
  .brand-logo { width: 155px; max-height: 65px; }
  .hero { padding-top: 25px; }
  h1 { font-size: 46px; }
  .hero-description { font-size: 15px; }
  .review-card { padding: 28px 17px 22px; }
  .stars { gap: 4px; }
  .stars span { font-size: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 11px; }
}
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation:none !important; transition:none !important; scroll-behavior:auto !important; } }
