/* ========================================
   LOCKRUNNER — Theme CSS
   ======================================== */

:root {
  --bg: #0f0f0f;
  --bg-alt: #1a1a1a;
  --bg-card: #1e1e1e;
  --fg: #f0ede8;
  --fg-muted: #8a8680;
  --accent: #e8702a;
  --accent-hover: #f08040;
  --accent-dim: rgba(232, 112, 42, 0.12);
  --border: #2e2e2e;
  --border-light: #3a3a3a;
}

/* ---- Reset & Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-phone a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 112, 42, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -50px;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 112, 42, 0.04) 0%, transparent 70%);
  bottom: 100px;
  left: 200px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--fg);
  margin-bottom: 22px;
  line-height: 1.1;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero-response {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.response-bar {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

/* ---- Hero Visual ---- */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-graphic svg {
  width: 260px;
  height: 260px;
}

/* ---- Section Shared ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 12px;
}

/* ---- Services ---- */
.services {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.service-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- Pricing ---- */
.pricing {
  background: var(--bg-alt);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  margin-bottom: 56px;
}

.pricing-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.price-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}

.price-item-accent {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.price-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.price-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 6px;
}

.price-item-accent .price-value {
  color: var(--accent);
}

.price-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pricing-disclaimer {
  font-size: 0.78rem;
  color: #5a5858;
}

/* ---- Coverage ---- */
.coverage {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-placeholder svg {
  display: block;
  width: 100%;
  height: auto;
}

.coverage-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 32px;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.coverage-city {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
}

.check {
  flex-shrink: 0;
}

.coverage-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ---- Closing ---- */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 100px 24px;
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 44px;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-closing {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 20px 40px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-closing:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.closing-sub {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ---- Footer ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: #4a4848;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .nav-phone span {
    display: none;
  }
}