@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --accent: #ff3c00;
  --accent2: #ffbe00;
  --accent3: #00c2ff;
  --bg: #f5f5f3;
  --text: #0d0d0d;
  --text-muted: #666;
  --border: rgba(13,13,13,0.1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.7; }
a { text-decoration: none; color: inherit; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 40px; height: 64px; background: var(--black);
}
.nav-logo { font-family: 'Unbounded', sans-serif; font-size: 17px; font-weight: 900; color: var(--white); letter-spacing: -0.02em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  padding: 10px 22px; background: var(--accent); color: var(--white);
  border: none; cursor: pointer; transition: background 0.2s; display: inline-block; text-transform: uppercase;
}
.nav-cta:hover { background: #e63000; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); }

/* HERO */
.hero {
  min-height: 100vh; padding-top: 64px;
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left { padding: 80px 60px 80px 40px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  font-family: 'Unbounded', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  padding: 7px 14px; margin-bottom: 32px; width: fit-content; text-transform: uppercase;
}
.hero-title {
  font-family: 'Unbounded', sans-serif; font-size: 52px; font-weight: 900;
  line-height: 1.05; color: var(--white); margin-bottom: 24px; letter-spacing: -0.03em;
}
.hero-title .accent { color: var(--accent); }
.hero-title .yellow { color: var(--accent2); }
.hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.85; max-width: 360px; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 15px 32px; background: var(--accent); color: var(--white);
  border: none; cursor: pointer; transition: background 0.2s; display: inline-block; text-transform: uppercase;
}
.btn-primary:hover { background: #e63000; }
.btn-outline {
  font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  padding: 15px 32px; background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s; display: inline-block; text-transform: uppercase;
}
.btn-outline:hover { border-color: var(--white); }
.hero-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 11px; font-weight: 500; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.45); }

.hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 48px 40px; }
.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 4px; width: 100%; max-width: 460px; }
.mosaic-item { overflow: hidden; position: relative; background: #1a1a1a; aspect-ratio: 1; }
.mosaic-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s, transform 0.4s; }
.mosaic-item:hover img { opacity: 1; transform: scale(1.04); }
.mosaic-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 20px 12px 10px;
  font-family: 'Unbounded', sans-serif; font-size: 9px; font-weight: 700;
  color: var(--white); letter-spacing: 0.08em; text-transform: uppercase;
}
.mosaic-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 36px; min-height: 160px; }

/* TICKER */
.ticker { background: var(--accent); overflow: hidden; padding: 13px 0; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-item { font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; padding: 0 28px; }
.ticker-item::after { content: '✦'; margin-left: 28px; opacity: 0.5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(4,1fr); background: var(--black); }
.stat { padding: 36px 20px; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.stat-num .a { color: var(--accent); }
.stat-label { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; }

/* SECTIONS */
.section { padding: 80px 40px; }
.section-white { background: var(--white); }
.section-dark { background: var(--black); color: var(--white); }
.section-grey { background: var(--bg); }
.section-eyebrow { font-family: 'Unbounded', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-dark .section-eyebrow { color: var(--accent2); }
.section-title { font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
.section-sub { font-size: 14px; color: var(--text-muted); max-width: 500px; margin-top: 14px; line-height: 1.85; }
.section-dark .section-sub { color: rgba(255,255,255,0.45); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 48px; }
.service-card { background: var(--white); padding: 36px 28px; position: relative; overflow: hidden; transition: transform 0.2s; cursor: default; }
.service-card:hover { transform: translateY(-3px); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover::after { transform: scaleX(1); }
.service-num { font-family: 'Unbounded', sans-serif; font-size: 52px; font-weight: 900; color: rgba(13,13,13,0.05); line-height: 1; margin-bottom: 8px; }
.service-icon { font-size: 30px; margin-bottom: 16px; display: block; }
.service-name { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.35; }
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.service-from { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #bbb; margin-bottom: 4px; }
.service-price { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700; color: var(--accent); }
.service-link { font-family: 'Unbounded', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; }
.step { padding: 32px 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.step:last-child { border-right: none; }
.step-num { font-family: 'Unbounded', sans-serif; font-size: 56px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 16px; opacity: 0.6; }
.step-title { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 48px; }
.why-card { background: var(--white); padding: 32px 28px; }
.why-icon { font-size: 28px; margin-bottom: 14px; }
.why-title { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.85; }

/* ORDER FORM */
.order-section { padding: 80px 40px; background: var(--black); }
.order-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.order-info h2 { font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; }
.order-info p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 14px; }
.order-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.order-detail-icon { font-size: 18px; color: var(--accent); flex-shrink: 0; }
.order-detail-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.order-detail-text a { color: var(--accent2); transition: opacity 0.2s; }
.order-detail-text a:hover { opacity: 0.7; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.hours-block { background: rgba(255,255,255,0.06); padding: 16px; }
.hours-day { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.hours-time { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700; color: var(--accent2); }

.order-form { background: var(--white); padding: 40px; }
.form-title { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 28px; letter-spacing: -0.01em; }
.form-group { margin-bottom: 18px; }
.form-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #aaa; margin-bottom: 8px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; background: var(--bg);
  border: 1.5px solid transparent; color: var(--text);
  font-family: 'Jost', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); background: var(--white); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.file-drop { border: 2px dashed rgba(13,13,13,0.15); padding: 24px 16px; text-align: center; cursor: pointer; transition: border-color 0.2s; background: var(--bg); }
.file-drop:hover, .file-drop.drag-over { border-color: var(--accent); }
.file-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.file-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid var(--border); padding: 4px 10px; font-size: 12px; color: var(--text-muted); }
.file-tag .remove { cursor: pointer; color: #bbb; font-size: 14px; transition: color 0.15s; }
.file-tag .remove:hover { color: var(--accent); }
.form-submit {
  width: 100%; padding: 15px; margin-top: 8px;
  background: var(--accent); color: var(--white);
  font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: #e63000; }
.form-error { display:none; margin-top:12px; padding:10px 14px; background:#fff0ee; border:1.5px solid #ffb3a3; font-size:13px; color:#c0392b; }
.form-success { display:none; text-align:center; padding:32px 0; }
.form-success-icon { font-size:40px; margin-bottom:14px; }

/* CONTACTS */
.contacts-section { padding: 80px 40px; background: var(--black); color: var(--white); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.contact-value { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 28px; }
.contact-value a { transition: color 0.2s; }
.contact-value a:hover { color: var(--accent2); }
.map-frame { width: 100%; height: 300px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* PRICE */
.price-section { padding: 60px 40px 80px; }
.price-category { margin-bottom: 56px; }
.price-cat-header { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; border-bottom: 2px solid var(--accent); margin-bottom: 4px; }
.price-cat-icon { font-size: 22px; }
.price-cat-title { font-family: 'Unbounded', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.price-table tr:hover { background: rgba(255,60,0,0.03); }
.price-table td { padding: 13px 8px; font-size: 14px; }
.price-table td:last-child { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent); text-align: right; white-space: nowrap; }
.price-note { font-size: 12px; color: #aaa; margin-top: 10px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-top: 48px; }
.gallery-item { overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }

/* FOOTER */
.footer { background: #060606; padding: 56px 40px 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.8; max-width: 220px; }
.footer-col-title { font-family: 'Unbounded', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-vk { font-size: 12px; color: rgba(255,255,255,0.3); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.footer-vk:hover { color: var(--white); }

/* PAGE HEADER */
.page-header { padding: 120px 40px 64px; background: var(--black); }
.page-header-tag { display: inline-block; background: var(--accent); color: var(--white); font-family: 'Unbounded', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; padding: 6px 14px; margin-bottom: 20px; text-transform: uppercase; }
.page-header h1 { font-family: 'Unbounded', sans-serif; font-size: 44px; font-weight: 900; color: var(--white); line-height: 1.05; letter-spacing: -0.03em; }
.page-header p { font-size: 15px; color: rgba(255,255,255,0.4); max-width: 500px; margin-top: 16px; line-height: 1.85; }

/* MOBILE */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--black); padding: 24px 20px; z-index: 99; flex-direction: column; gap: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
  .nav-mobile .nav-cta { display: block; text-align: center; padding: 13px; color: var(--white); background: var(--accent); }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 20px; }
  .hero-title { font-size: 32px; }
  .hero-right { display: none; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .section { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .order-section { padding: 56px 20px; }
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contacts-section { padding: 56px 20px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .page-header { padding: 100px 20px 48px; }
  .page-header h1 { font-size: 28px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .price-section { padding: 40px 20px 60px; }
  .hours-grid { grid-template-columns: 1fr; }
}
