:root {
  --bg: #071b24;
  --bg-2: #0d2a36;
  --text: #eefcff;
  --muted: #a8c7cf;
  --accent: #7df2c7;
  --glass: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1180px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(10,12,14,.55);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.logo { font-weight: 800; letter-spacing: .08em; }
.nav { display: flex; gap: 18px; font-size: 14px; color: var(--muted); }
.nav a:hover, .phone:hover { color: var(--accent); }
.phone { font-weight: 800; white-space: nowrap; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/img/photo-1486406146926-c627a92ad1ab-103b3874.jpg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 70%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.44), rgba(0,0,0,.78));
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; padding-top: 90px; }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 800;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
  line-height: .96;
  letter-spacing: -.04em;
  margin: 0;
}
h1 { font-size: clamp(46px, 8vw, 104px); max-width: 930px; }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { margin: 0; font-size: 22px; }
p { color: var(--muted); line-height: 1.75; }
.hero-text { max-width: 680px; font-size: 19px; margin: 28px 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.primary { background: var(--accent); color: #071013; border-color: transparent; }
.secondary { background: rgba(255,255,255,.08); color: var(--text); }
.hero-card {
  position: absolute;
  right: 8%;
  bottom: 9%;
  z-index: 2;
  width: 220px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.hero-card span, .hero-card small { color: var(--muted); }
.hero-card strong { display: block; font-size: 48px; margin: 6px 0; color: var(--accent); }

.section { padding: 110px 0; }
.about, .pricing { background: var(--bg-2); }
.about-grid, .contact-grid, .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.stats div, .step, .price-card, .faq-item {
  border: 1px solid var(--border);
  background: var(--glass);
  border-radius: 26px;
  padding: 24px;
}
.stats strong { display: block; color: var(--accent); font-size: 34px; }
.stats span { color: var(--muted); font-size: 14px; }
.about-photo img, .case img { height: 100%; object-fit: cover; }
.about-photo { border-radius: 34px; overflow: hidden; min-height: 520px; box-shadow: 0 25px 70px rgba(0,0,0,.35); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case {
  border-radius: 30px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--border);
  transition: transform .25s ease;
}
.case:hover { transform: translateY(-6px); }
.case-photo { height: 280px; overflow: hidden; }
.case-photo img { transition: transform .5s ease; }
.case:hover img { transform: scale(1.08); }
.case-content { padding: 26px; }

.process-grid, .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.step span {
  display: inline-flex;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 34px;
}
.price-card strong { display: block; font-size: 34px; color: var(--accent); margin: 18px 0; }

.faq-list { display: grid; gap: 14px; }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.active .faq-answer { max-height: 180px; }
.faq-item.active .plus { transform: rotate(45deg); }
.plus { transition: transform .3s ease; color: var(--accent); }

.contact {
  background:
    radial-gradient(circle at 78% 25%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28%),
    var(--bg);
}
.contact-list { list-style: none; padding: 0; display: grid; gap: 12px; color: var(--muted); }
.lead-form {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
label { display: grid; gap: 9px; margin-bottom: 18px; color: var(--muted); font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(0,0,0,.24);
  color: var(--text);
  padding: 16px;
  font: inherit;
  outline: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--accent); }
.form-message { min-height: 24px; }
.footer { padding: 34px 0; background: #050607; }
.footer-inner { display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.footer a { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav { display: none; }
  .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .cards-grid, .process-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
}
