:root {
  --bg: #0f0f12;
  --card: #17171b;
  --text: #f7f7fb;
  --muted: #cfcfe3;
  --accent: #ff4fa3;
  --accent-2: #a45bff;
  --accent-3: #4fd1c5;
  --ring: rgba(255,79,163,.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: 
    radial-gradient(1200px 800px at 80% -10%, rgba(255,79,163,.14), transparent 60%),
    radial-gradient(1000px 600px at 20% -10%, rgba(164,91,255,.12), transparent 60%),
    radial-gradient(900px 600px at -10% 100%, rgba(255,79,163,.10), transparent 60%),
    radial-gradient(900px 600px at 110% 100%, rgba(164,91,255,.10), transparent 60%),
    var(--bg);
  background-attachment: fixed, fixed, fixed, fixed, fixed;
  line-height: 1.6;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(15,15,18,.7); backdrop-filter: blur(12px); border-bottom: 1px solid #23232a; }
.site-header::after { content: ""; position: absolute; inset: auto 0 -1px 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,79,163,.4), rgba(164,91,255,.4), transparent); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 8px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo { width: 36px; height: 36px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); position: relative; box-shadow: 0 10px 30px var(--ring); display: grid; place-items: center; text-decoration: none; cursor: pointer; }
.logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text); opacity: .9; }
.brand-title { font-weight: 800; letter-spacing: .2px; font-size: 16px; text-decoration: none; color: var(--text); transition: color .2s; }
.brand-title:hover { color: var(--accent); }
.brand-subtitle { color: var(--muted); font-size: 12px; margin-top: -4px; }
.header-right { display: flex; align-items: center; gap: 18px; }
.phone { color: var(--text); text-decoration: none; font-weight: 800; background: linear-gradient(135deg, #fff, #ffe2f0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.menu-toggle { display: inline-flex; flex-direction: column; gap: 4px; width: 36px; height: 28px; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; height: 3px; background: var(--text); border-radius: 2px; }
.site-nav { display: none; padding: 0; border-top: 0; justify-self: center; }
.site-nav a { color: var(--text); text-decoration: none; margin-right: 6px; padding: 8px 10px; border-radius: 10px; }
.site-nav a:hover { background: #1a1a21; }
.site-nav .cta { padding: 8px 14px; border-radius: 10px; background: var(--accent); color: #101015; font-weight: 700; }

@media (min-width: 880px) {
  .menu-toggle { display: none; }
  .site-nav { display: flex; align-items: center; justify-content: center; gap: 10px; }
}

/* Hero */
.hero { padding: clamp(32px, 5vw, 80px) 0; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(24px, 4vw, 48px); }
.hero h1 { font-family: "Playfair Display", serif; font-size: clamp(32px, 5vw, 56px); margin: 0 0 8px; letter-spacing: .2px; }
.hero p { color: var(--muted); margin: 0 0 18px; }
.hero-actions { display: flex; gap: 12px; margin: 18px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; text-decoration: none; font-weight: 700; border: 1px solid #2a2a33; color: var(--text); }
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #101015; box-shadow: 0 10px 30px var(--ring); }
.btn.ghost { background: transparent; }
.btn.small { padding: 10px 14px; font-weight: 700; }
.btn.contrast { background: linear-gradient(135deg, var(--text), #ffe2f0); color: #141418; }
.hero-highlights { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; padding: 0; margin: 18px 0 0; list-style: none; }
.hero-highlights li { background: #16161b; border: 1px solid #23232a; padding: 10px 12px; border-radius: 10px; color: var(--muted); }
.hero-art { position: relative; height: 360px; }
.ball { position: absolute; border-radius: 50%; filter: blur(.2px); }
.ball.big { width: 240px; height: 240px; right: 10%; top: 12%; background: radial-gradient(circle at 30% 30%, #fff 0, #ffd5e7 15%, var(--accent) 60%, transparent 70%); opacity: .9; }
.ball.small { width: 120px; height: 120px; left: 12%; bottom: 8%; background: radial-gradient(circle at 30% 30%, #fff 0, #e3d4ff 18%, var(--accent-2) 60%, transparent 70%); opacity: .95; }
.ring { position: absolute; inset: 16% 12% 24% 18%; border: 2px dashed rgba(255,255,255,.2); border-radius: 50%; transform: rotate(-8deg); }
.badge { position: absolute; left: 6%; top: 10%; background: #fff; color: #121217; padding: 8px 12px; border-radius: 999px; font-weight: 800; letter-spacing: .4px; box-shadow: 0 8px 26px rgba(255,79,163,.35); }

@media (max-width: 879px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; height: 240px; }
  .site-nav { display: none; grid-column: 1 / -1; }
  .site-nav.open { display: grid; gap: 10px; padding: 10px 0; }
}

/* About */
.about { padding: 56px 0; }
.about-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: center; }
.about h2, .pricing h2, .contact h2 { font-size: clamp(24px, 3.5vw, 36px); margin: 0 0 16px; }
.about p { color: var(--muted); }
.about-list { margin: 12px 0 18px; padding-left: 18px; }
.about-list li { margin: 6px 0; }
.about-photo .photo-card { height: 320px; border-radius: 18px; background: linear-gradient(135deg, rgba(255,79,163,.25), rgba(164,91,255,.25)), url('photo.jpg') center/cover no-repeat; border: 1px solid #23232a; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.socials { display: flex; gap: 10px; }
.social { display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 12px; text-decoration: none; color: var(--text); background: #14141a; border: 1px solid #23232a; }
.social.tg { border-color: rgba(79,209,197,.4); }
.social.vk { border-color: rgba(86,128,233,.4); }
.social.ig { border-color: rgba(255,79,163,.4); }

@media (max-width: 879px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* Credentials */
.credentials { padding: 8px 0 56px; background: linear-gradient(135deg, rgba(255,79,163,.05), rgba(164,91,255,.05)); }
.credentials h2 { text-align: center; margin-bottom: 32px; font-size: clamp(24px, 3.5vw, 36px); }
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.credential-card { background: var(--card); border: 1px solid #23232a; border-radius: 16px; padding: 24px; text-align: center; transition: transform .2s, box-shadow .2s; }
.credential-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.credential-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.credential-card h3 { margin: 0 0 12px; color: var(--text); font-size: 18px; font-weight: 700; }
.credential-card p { margin: 0; color: var(--muted); line-height: 1.5; }

@media (max-width: 879px) {
  .credentials-grid { grid-template-columns: 1fr; }
}

/* Pricing */
.pricing { padding: 56px 0; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; align-items: stretch; }
.card { background: var(--card); border: 1px solid #23232a; border-radius: 16px; padding: 18px; display: grid; grid-template-rows: auto auto 1fr auto; }
.card.featured { border-color: var(--accent); box-shadow: 0 10px 36px rgba(255,79,163,.15); }
.card h3 { margin: 4px 0 8px; }
.price { font-size: 24px; font-weight: 800; letter-spacing: .3px; margin: 6px 0 12px; background: linear-gradient(135deg, #fff, #ffe2f0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.card ul { margin: 0 0 14px 16px; }

@media (max-width: 879px) {
  .cards { grid-template-columns: 1fr; }
}

/* Contact */
.contact { padding: 56px 0 72px; }
/* Map */
.map-section { margin-top: 24px; }
.map-section h3 { margin: 0 0 12px; color: var(--text); font-size: 18px; font-weight: 600; }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid #23232a; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.map-address { color: var(--muted); margin-top: 8px; font-size: 14px; }
.contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.form { background: var(--card); border: 1px solid #23232a; border-radius: 16px; padding: 16px; }
.field { display: grid; gap: 8px; margin-bottom: 12px; }
label { font-weight: 600; }
input, textarea { width: 100%; background: #121219; border: 1px solid #2a2a33; color: var(--text); border-radius: 12px; padding: 12px 12px; font: inherit; transition: border-color .2s, box-shadow .2s; }
/* Убираем стрелки у числа */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,79,163,.15); }
.captcha .captcha-row { display: grid; grid-template-columns: max-content 130px 40px; gap: 10px; align-items: center; justify-content: start; }
.captcha #captchaQuestion { white-space: nowrap; margin-right: 8px; color: var(--muted); }
.captcha .captcha-row input { max-width: 160px; }
.captcha #captcha_answer { text-align: center; font-weight: 700; letter-spacing: .4px; }
.icon-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid #2a2a33; background: linear-gradient(135deg, #1a1a21, #15151b); color: var(--text); cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.icon-btn:hover { border-color: var(--accent); }
.actions { display: flex; align-items: center; justify-content: flex-start; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
#formStatus { font-size: 14px; color: var(--muted); min-height: 20px; }

@media (max-width: 879px) {
  .contact-inner { grid-template-columns: 1fr; }
  .captcha .captcha-row { grid-template-columns: 1fr 110px 40px; }
}

/* Footer */
.site-footer { border-top: 1px solid #23232a; padding: 18px 0; color: var(--muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: var(--text); text-decoration: none; opacity: .85; }
.footer-socials a:hover { color: var(--accent); opacity: 1; }

/* Links under site */
a { color: var(--text); text-underline-offset: 3px; text-decoration-color: rgba(255,79,163,.55); }
a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.contact a { color: var(--accent); }

