:root {
  --bg: #0c0f14;
  --card: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.08);
  --text: #e9ecf1;
  --muted: #b8c1ce;
  --accent: #b6ff5a;
  --accent-2: #7ae0ff;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #0c0f14 0%, #0b1320 50%, #0e1728 100%);
  background-size: 200% 200%;
  animation: bgMove 18s ease-in-out infinite alternate;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="160" height="160" filter="url(%23n)" opacity="0.12"/></svg>');
  opacity: 0.5;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  backdrop-filter: blur(14px);
  background: rgba(12, 15, 20, 0.8);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.3px;
}
.logo span { color: var(--accent); }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 22px;
  font-weight: 500;
}
nav a:hover { color: var(--text); }

main {
  width: min(1200px, 92vw);
  margin: 0 auto 80px;
  padding-top: 30px;
}

.hero, .panel, .card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  background-size: cover;
  background-position: center;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.07;
}
.hero .lede { color: var(--muted); max-width: 520px; }
.hero-left { display: grid; gap: 14px; align-content: start; }
.hero-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.hero-meta div { border: 1px solid var(--border); padding: 12px 14px; border-radius: var(--radius); color: var(--muted); }
.hero-meta span { display: block; font-size: 22px; color: var(--text); font-weight: 700; }

.hero-right { display: grid; gap: 12px; }
.hero-img {
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: float 8s ease-in-out infinite;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 60px rgba(0,0,0,0.45); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.panel {
  margin: 70px 0 0;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.panel.soft { background: rgba(255, 255, 255, 0.03); }

.panel-header h2 { margin: 8px 0 6px; font-size: clamp(26px, 4vw, 34px); }
.panel-header .lede { color: var(--muted); }

.eyebrow { color: var(--accent-2); letter-spacing: 0.6px; font-weight: 700; text-transform: uppercase; font-size: 12px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 20px; }

.card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card h3 { margin: 4px 0 8px; }
.card p { color: var(--muted); }
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 255, 90, 0.35);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(182, 255, 90, 0.16);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
.pill.subtle { color: var(--muted); background: rgba(255, 255, 255, 0.06); }

.price { color: var(--accent-2); font-weight: 700; }

.team { align-items: stretch; }
.profile { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; }
.avatar {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(140deg, rgba(182, 255, 90, 0.4), rgba(122, 224, 255, 0.4));
  display: grid; place-items: center; font-weight: 800; color: #05060b;
}

.cta-inline { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0; }

.reviews .quote { font-style: italic; }
.reviews span { color: var(--muted); font-size: 14px; }

.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: center;
}
.contact-list { list-style: none; padding: 0; color: var(--muted); }
.contact-list li { margin-bottom: 8px; }
.note { color: var(--muted); }

.map iframe { border-radius: 18px; box-shadow: var(--shadow); }

footer {
  width: min(1200px, 92vw);
  margin: 40px auto 60px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .nav { padding: 14px 18px; gap: 10px; }
  nav { display: none; }
  .hero { padding-top: 30px; }
  .panel { padding: 24px; }
  .hero-img { min-height: 180px; }
}

@keyframes bgMove {
  0% { background-position: 0% 30%; }
  100% { background-position: 100% 70%; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
