:root {
  --bg: #0b111b;
  --panel: #111827;
  --panel-2: #182230;
  --accent: #5eead4;
  --accent-2: #38bdf8;
  --gold: #fbbf24;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --white: #ffffff;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 20px 40px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #09101a 0%, #0d1624 100%);
  color: var(--text);
  line-height: 1.6;
}
.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(9, 16, 26, 0.88);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .4px;
}
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
nav a, .footer a, .policy-links a {
  color: var(--text);
  text-decoration: none;
}
nav a:hover, .footer a:hover, .policy-links a:hover {
  color: var(--accent);
}
.hero {
  position: relative;
  padding: 78px 0 50px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,16,26,.92) 0%, rgba(9,16,26,.78) 42%, rgba(9,16,26,.58) 100%),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}
.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.12);
  color: #99f6e4;
  border: 1px solid rgba(94, 234, 212, 0.32);
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.06;
  margin: 0 0 18px;
  color: var(--white);
  max-width: 760px;
}
.hero p {
  color: #d5dee9;
  font-size: 1.06rem;
  max-width: 680px;
}
.hero-points {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #d9fff7;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn-secondary, .btn-ghost {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
.btn-secondary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #07131b;
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.form-card, .card, .price-card, .contact-box {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.form-card {
  padding: 24px;
}
.form-card h2 {
  margin-top: 0;
  color: var(--white);
}
label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
input, select, textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid rgba(255,255,255,0.09);
  background: #0b1220;
  color: var(--text);
  padding: 13px 14px;
  border-radius: 12px;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
}
button {
  width: 100%;
  border: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #08111f;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
}
button:hover { opacity: 0.95; }
.small-note, .pricing-note, .form-message {
  color: var(--muted);
  font-size: 0.88rem;
}
.stats {
  padding: 12px 0 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats-grid div, .price-card {
  padding: 22px;
}
.stats-grid div {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.stats-grid strong {
  display: block;
  font-size: 1.7rem;
  color: var(--white);
}
.stats-grid span { color: var(--muted); }
.section {
  padding: 72px 0;
}
.section.alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section.alt-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--white);
}
.cards, .pricing-grid, .contact-grid {
  display: grid;
  gap: 20px;
}
.cards { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  overflow: hidden;
}
.card h3, .price-card h3 {
  margin-top: 0;
  color: var(--white);
}
.with-images .card-body {
  padding: 22px;
}
.card-media {
  height: 230px;
  background-size: cover;
  background-position: center;
}
.media-polish {
  background-image: url('https://images.unsplash.com/photo-1489824904134-891ab64532f1?auto=format&fit=crop&w=1200&q=80');
}
.media-deep {
  background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1200&q=80');
}
.media-coating {
  background-image: url('https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1200&q=80');
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
  grid-auto-rows: 220px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.72) 100%);
}
.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
}
.gallery-item.large {
  grid-row: span 2;
}
.media-gallery-1 { background-image: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1400&q=80'); }
.media-gallery-2 { background-image: url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=1200&q=80'); }
.media-gallery-3 { background-image: url('https://images.unsplash.com/photo-1541899481282-d53bffe3c35d?auto=format&fit=crop&w=1200&q=80'); }
.media-gallery-4 { background-image: url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1200&q=80'); }
.media-gallery-5 { background-image: url('https://images.unsplash.com/photo-1553440569-bcc63803a83d?auto=format&fit=crop&w=1200&q=80'); }
.price {
  font-size: 1.7rem;
  font-weight: 800;
  color: #93c5fd;
  margin-bottom: 10px;
}
.price-card ul {
  padding-left: 18px;
  margin: 0;
  color: #d1d5db;
}
.price-card.featured {
  border-color: rgba(94, 234, 212, 0.5);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(94,234,212,.08), rgba(17,24,39,.94));
}
.two-col, .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.policy-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.policy-links li { margin-bottom: 10px; }
.footer {
  padding: 28px 0;
  background: #08101a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr;
  gap: 24px;
}
.footer a {
  display: block;
  margin-bottom: 8px;
}
.policy-page {
  padding: 70px 0;
}
.policy-page .content {
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.policy-page h1, .policy-page h2 {
  color: var(--white);
}
.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  text-decoration: none;
}
@media (max-width: 980px) {
  .hero-grid, .cards, .pricing-grid, .two-col, .contact-grid, .footer-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.large {
    grid-row: span 1;
  }
  .price-card.featured { transform: none; }
}
