/* directshot-site/style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #111;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.nav-logo {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-logo span { color: #E87E04; }

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.nav-links a:hover { color: #fff; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.hero-eyebrow {
  color: #E87E04;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-sub {
  color: #ccc;
  font-size: 19px;
  margin-bottom: 36px;
}

.app-store-btn {
  display: inline-block;
  background: #E87E04;
  color: #fff;
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.app-store-btn:hover { background: #cf7003; }

/* ── GALLERY ── */
.gallery { overflow: hidden; }
.gallery img { width: 100%; display: block; }

/* ── SHARED SECTION ── */
.section {
  padding: 80px 32px;
  max-width: 760px;
  margin: 0 auto;
}

.section-divider {
  border: none;
  border-top: 1px solid #1e1e1e;
}

.section-label {
  color: #E87E04;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ── HOW IT WORKS ── */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 64px;
}

.step { display: flex; gap: 20px; align-items: flex-start; }

.step-num {
  background: #E87E04;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-text h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.step-text p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-label { margin-top: 0; }

.faq {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}

.faq-item {
  border-top: 1px solid #222;
  padding: 22px 0;
}

.faq-item:last-child { border-bottom: 1px solid #222; }

.faq-q {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-a {
  color: #aaa;
  font-size: 15px;
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact-block {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 28px 32px;
}

.contact-block h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-block a {
  color: #E87E04;
  text-decoration: none;
  font-size: 15px;
}

/* ── PRIVACY ── */
.privacy h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.privacy .updated {
  color: #555;
  font-size: 13px;
  margin-bottom: 36px;
}

.privacy h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 28px 0 8px;
  color: #ddd;
}

.privacy p,
.privacy li {
  color: #888;
  font-size: 14px;
  line-height: 1.8;
}

.privacy ul { padding-left: 20px; }
.privacy ul li { margin-bottom: 4px; }
.privacy p + p { margin-top: 10px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid #1e1e1e;
  padding: 28px 32px;
  text-align: center;
  color: #444;
  font-size: 13px;
}

footer a {
  color: #555;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover { color: #888; }
