:root {
  --bg: #f2f4f7;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --text: #1f2937;
  --muted: #667085;
  --primary: #2563eb;
  --primary-600: #1d4ed8;
  --accent: #7c5cff;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --border: #d0d5dd;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  background: linear-gradient(180deg, var(--bg), #ffffff);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-wrap { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .3px; }
.brand-icon { font-size: 22px; }
.brand-text { color: var(--text); }

.nav { margin-left: auto; }
.nav-toggle { display: none; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; }
.nav-list { display: flex; gap: 18px; list-style: none; padding: 0; margin: 0; }
.nav-list a { color: #475569; padding: 8px 6px; border-radius: 8px; transition: color .2s ease, background .2s ease; }
.nav-list a:hover { color: var(--text); background: rgba(2,6,23,0.05); }

.header-cta { display: flex; gap: 10px; margin-left: 8px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 10px; background: var(--primary); color: #ffffff; font-weight: 600; border: 1px solid #93c5fd; box-shadow: var(--shadow); transition: transform .1s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(2,132,199,0.25); background: var(--primary-600); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.btn-outline:hover { background: rgba(2,6,23,0.06); }
.btn-alt { background: var(--accent); color: #0e0f16; border-color: #4a34b8; }
.btn-block { width: 100%; }
.btn-lg { padding: 12px 20px; font-size: 1rem; }

.hero { position: relative; min-height: 90vh; display: grid; place-items: center; text-align: center; }
.hero-media { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(245,247,250,0.7), rgba(133, 165, 212, 0.35)); }
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero h1 { font-size: clamp(1.8rem, 3.6vw, 3rem); margin: 0 0 12px; letter-spacing: .2px; }
.hero .subtext { color: var(--muted); font-size: clamp(1rem, 2vw, 1.125rem); margin-bottom: 22px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.section { padding: 60px 0; }
.section h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 0 0 18px; }
.section p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1100px) { .cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 740px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.card .icon { width: 44px; height: 44px; color: var(--primary); margin-bottom: 10px; }
.card h3 { margin: 8px 0 8px; font-size: 1.05rem; }
.card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(17,24,39,0.12); }
.card { transition: transform .2s ease, box-shadow .2s ease; }
.service-img { width: 100%; height: 150px; object-fit: cover; border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--border); will-change: transform; }
.service-img:hover { transform: scale(1.02); }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .price-cards { grid-template-columns: 1fr; } }
.price-card { background: linear-gradient(180deg, #ffffff, #f7fafc); border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: var(--shadow); position: relative; }
.price-card { transition: transform .2s ease, box-shadow .2s ease; }
.price-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,24,39,0.12); }
.price-card .price { color: var(--muted); margin: 6px 0 12px; }
.price-card ul { margin: 0 0 18px; padding-left: 18px; color: var(--muted); }
.price-card .badge { position: absolute; top: -12px; right: 16px; background: var(--accent); color: #0e0f16; padding: 6px 10px; border-radius: 10px; font-weight: 700; border: 1px solid #4a34b8; }
.price-card.featured { border-color: #4258ca; box-shadow: 0 16px 36px rgba(66,88,202,0.35); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { display: flex; align-items: center; gap: 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.why-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: rgba(43,176,255,0.15); color: var(--primary); border-radius: 8px; font-weight: 800; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery figure { margin: 0; background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 200px; object-fit: cover; }
.gallery video { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery figure img { transition: transform .25s ease; will-change: transform; }
.gallery figure video { transition: transform .25s ease; will-change: transform; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figure:hover video { transform: scale(1.03); }
.gallery figcaption { padding: 10px 12px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.contact-map { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 18px; display: grid; place-items: center; color: var(--muted); }
.map-placeholder { width: 100%; height: 200px; border: 1px dashed var(--border); border-radius: 12px; display: grid; place-items: center; }
.contact-cta { display: flex; gap: 10px; margin-top: 10px; }

.quote-form { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.quote-form .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.quote-form label { color: var(--muted); }
.quote-form input, .quote-form select, .quote-form textarea { background: #ffffff; color: var(--text); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; outline: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(43,176,255,.15); }
.quote-form .form-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.form-note { color: var(--muted); margin: 0; }

.site-footer { border-top: 1px solid var(--border); background: rgba(255,255,255,.9); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; padding: 24px 0; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav-list { position: absolute; top: 58px; right: 0; background: rgba(255,255,255,.98); border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px; border-radius: 0 0 0 12px; display: none; flex-direction: column; gap: 10px; min-width: 220px; }
  .nav-list.show { display: flex; }
  .header-cta { display: none; }
}

.about p { max-width: 70ch; }

.reveal { opacity: 0; transform: translateY(12px) scale(0.98); transition: opacity 500ms ease, transform 600ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }