/* ── Reset & base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #171717;
  --red:     #dc2626;
  --red-dk:  #b91c1c;
  --bg:      #f5f3ef;
  --bg-card: #ffffff;
  --muted:   #a8a29e;
  --line:    #e7e5e0;
  --text2:   #44403c;

  --font: 'Inter', system-ui, sans-serif;
  --max:  1120px;
  --r:    14px;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── Wordmark ────────────────────────────────────────────────────────────── */
.wordmark {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  user-select: none;
}
.wordmark .c { color: var(--ink); }
.wordmark .h { color: var(--red); margin-left: 2px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover  { opacity: .88; }
.btn:active { transform: scale(.98); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-red     { background: var(--red); color: #fff; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(10,10,10,.72) 0%, rgba(10,10,10,.55) 60%, rgba(10,10,10,.72) 100%),
    url('https://images.unsplash.com/photo-1533107862482-0e6974b06ec4?w=1600&q=85');
  background-size: cover;
  background-position: center 35%;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 24px;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline-white:hover { border-color: #fff; }
.hero-meta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-meta-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-meta-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Image strips ────────────────────────────────────────────────────────── */
.img-strip {
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.img-strip-rounded {
  border-radius: var(--r);
  overflow: hidden;
  height: 300px;
  margin-top: 40px;
  margin-bottom: 48px;
}
.img-strip-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.img-atmosphere {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.img-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
.img-atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23,23,23,.3) 0%, rgba(23,23,23,.1) 100%);
}

/* ── Section headings ────────────────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text2);
  max-width: 500px;
  line-height: 1.6;
}

/* ── Services ────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: #f5f3ef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.55;
}
.service-card .service-price {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.service-card .service-price span {
  color: var(--ink);
}

/* ── How it works ────────────────────────────────────────────────────────── */
.how-section { background: var(--ink); color: #fff; }
.how-section .section-label { color: rgba(255,255,255,.4); }
.how-section .section-title { color: #fff; }
.how-section .section-subtitle { color: rgba(255,255,255,.6); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,.15);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}

/* ── Digital tracking callout ────────────────────────────────────────────── */
.track-section { background: var(--bg-card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.track-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.track-features { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.track-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text2);
}
.track-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.track-image {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
}
.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* keep old phone styles in case still referenced */
.track-phone {
  background: var(--bg);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}
.phone-status {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.phone-status-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.phone-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.green  { background: #16a34a; }
.status-dot.amber  { background: #d97706; }
.status-dot.blue   { background: #2563eb; }
.phone-status-name { font-size: 14px; font-weight: 600; }
.phone-status-sub  { font-size: 12px; color: var(--muted); margin-left: auto; }
.phone-cta {
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ── Pricing teaser ──────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pricing-card.featured .price-sub { color: rgba(255,255,255,.5); }
.pricing-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,.5); }
.price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-items { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-items li {
  font-size: 14px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card.featured .price-items li { color: rgba(255,255,255,.75); }
.price-items li::before {
  content: '—';
  color: var(--muted);
  font-weight: 600;
}
.pricing-card.featured .price-items li::before { color: rgba(255,255,255,.3); }
.pricing-card .btn { margin-top: 28px; }

/* ── Info strip ──────────────────────────────────────────────────────────── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
}
.info-item {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.info-item:last-child { border-right: none; }
.info-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.info-item-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.info-item-value a:hover { color: var(--red); }

/* ── CTA banner ──────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white { background: #fff; color: var(--red); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
footer .wordmark .c { color: #fff; }
footer .wordmark .h { color: var(--red); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 10px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; }
.footer-col a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 64px 0 56px; }
  .hero-meta { gap: 24px; }
  .steps { gap: 32px; }
  .steps::before { display: none; }
  .step { padding: 0; }
  .track-inner { grid-template-columns: 1fr; }
  .track-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--line); }
  .info-item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .info-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
