*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff url('ios-bg.jpg') no-repeat center top / cover fixed;
  color: #1d1d1f;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 0;
  pointer-events: none;
}

/* ── Top Alert Bar ── */
.top-bar {
  position: relative;
  z-index: 101;
  background: #1d1d1f;
  color: #f5f5f7;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: -0.1px;
}

.top-bar-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

.top-bar-link {
  color: #f5f5f7;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(245,245,247,0.4);
}

.top-bar-link:hover {
  border-bottom-color: #f5f5f7;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo {
  margin-bottom: 5px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0);
  display: block;
}

.navbar-divider {
  width: 1px;
  height: 14px;
  background: #d2d2d7;
  display: block;
}

.navbar-title {
  font-size: 17px;
  font-weight: 400;
  color: #1d1d1f;
  letter-spacing: -0.2px;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 64px 24px 40px;
  border-bottom: 1px solid #d2d2d7;
}

.hero-inner {
  max-width: 620px;
  margin: 0 auto;
}

.hero-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.hero-icon svg {
  width: 100%;
  height: 100%;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: #6e6e73;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Content ── */
.content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.content-inner {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Detail block ── */
.detail-block {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #6e6e73;
  font-weight: 400;
}

.detail-value {
  color: #1d1d1f;
  font-weight: 500;
}

.detail-value.locked {
  color: #ff3b30;
  font-weight: 600;
}

/* ── Body text ── */
.body-text {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}

/* ── Primary button — Apple pill style ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #1d1d1f;
  color: #fff;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.2px;
  text-decoration: none;
  border-radius: 980px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-width: 220px;
  justify-content: center;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary:hover {
  background: #3a3a3c;
}

.btn-primary:active {
  background: #2c2c2e;
}

/* ── Phone number ── */
.phone-number {
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.3px;
  margin-top: 20px;
}

.availability {
  font-size: 13px;
  color: #6e6e73;
  margin-top: 6px;
  margin-bottom: 28px;
}

/* ── Secondary link ── */
.link-secondary {
  font-size: 15px;
  color: #0071e3;
  text-decoration: none;
  letter-spacing: -0.1px;
}

.link-secondary:hover {
  text-decoration: underline;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #d2d2d7;
  padding: 20px 24px;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: #6e6e73;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-links a {
  font-size: 12px;
  color: #6e6e73;
  text-decoration: none;
}

.footer-links a:hover {
  color: #0071e3;
  text-decoration: underline;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .hero {
    padding: 48px 20px 32px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .btn-primary {
    width: 100%;
    font-size: 16px;
  }

  .phone-number {
    font-size: 20px;
  }

  .footer-links {
    gap: 8px 12px;
  }
}
