/* Roadworthy marketing site — shared styles
   Recreated from design_handoff_roadworthy_marketing_site (option "1A — Native Card"),
   inline styles extracted into a real stylesheet per the handoff's own instruction.
   Mobile/tablet breakpoints are this build's own addition — the handoff was explicitly
   desktop-width (1280px) only and flagged responsive design as not yet done. */

:root {
  --accent: #1B5FAE;
  --ink: #111418;
  --body-1: #5b6270;
  --body-2: #69707c;
  --body-3: #4b5563;
  --muted: #9aa1ac;
  --card-bg: #f6f7f9;
  --border: #eef0f3;
  --dark-bg: #0f1420;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap { max-width: 1280px; margin: 0 auto; }

/* ---------- Nav ---------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-brand span {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  color: var(--body-3);
}

.badge-disabled {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  opacity: 0.55;
  color: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: not-allowed;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* ---------- Hero ---------- */

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 72px 56px 88px;
}

.hero-copy { flex: 1; min-width: 0; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 560px;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--body-1);
  margin: 0 0 32px;
  max-width: 480px;
}

.cta-disabled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  opacity: 0.55;
  color: #fff;
  padding: 13px 22px;
  border-radius: 12px;
  cursor: not-allowed;
  font-size: 14px;
  font-weight: 600;
}

.hero-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.hero-phones {
  flex: 0 0 380px;
  display: flex;
  justify-content: center;
  position: relative;
  height: 520px;
}

.phone-main {
  position: absolute;
  right: 40px;
  top: 0;
  width: 260px;
  height: 520px;
  border-radius: 44px;
  background: var(--ink);
  padding: 10px;
  box-shadow: 0 40px 70px rgba(20, 30, 50, 0.28);
}

.phone-second {
  position: absolute;
  left: 0;
  top: 90px;
  width: 220px;
  height: 440px;
  border-radius: 38px;
  background: var(--ink);
  padding: 9px;
  box-shadow: 0 30px 50px rgba(20, 30, 50, 0.2);
  opacity: 0.94;
}

.screenshot-slot {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  display: block;
  object-fit: cover;
  object-position: top;
}
.phone-second .screenshot-slot { border-radius: 30px; }

/* ---------- Features ---------- */

.features { padding: 8px 56px 72px; }

.features h2 {
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 40px;
}

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

.feature-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 26px;
}

.feature-card svg { stroke: var(--accent); }

.feature-card h3 {
  font-size: 17px;
  color: var(--ink);
  margin: 16px 0 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--body-2);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Showcase strip ---------- */

.showcase {
  margin: 0 56px 72px;
  background: var(--dark-bg);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 44px 48px;
  overflow: hidden;
}

.showcase-copy { flex: 1; }

.showcase h3 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.showcase p {
  color: #9aa4b8;
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0;
}

.showcase-phone {
  flex: 0 0 220px;
  height: 280px;
  border-radius: 32px;
  background: #1c2230;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.showcase-phone .screenshot-slot { border-radius: 24px; }

/* ---------- Pricing ---------- */

.pricing { padding: 8px 56px 72px; }

.pricing h2 {
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 40px;
}

.pricing-grid {
  display: flex;
  gap: 24px;
}

.price-card {
  flex: 1;
  border-radius: 20px;
  padding: 32px;
}

.price-card.free {
  border: 1px solid var(--border);
}

.price-card.pro {
  background: var(--accent);
  color: #fff;
}

.plan-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--body-2);
}
.price-card.pro .plan-label { opacity: 0.85; color: #fff; }

.plan-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin: 10px 0 24px;
}
.price-card.pro .plan-price { color: #fff; margin: 10px 0 4px; }
.plan-price .suffix { font-size: 16px; font-weight: 500; opacity: 0.85; }

.plan-sub {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 24px;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card li {
  font-size: 14.5px;
  color: var(--body-3);
}
.price-card.pro li { color: #fff; }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer span { font-size: 13px; color: var(--muted); }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--body-2);
}
.footer-links a:hover { color: var(--accent); }

/* ---------- Privacy policy page ---------- */

.policy-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 22px 100px;
  color: #171a1f;
}

.policy-bar {
  height: 6px;
  border-radius: 3px;
  margin-bottom: 28px;
  background: var(--accent);
}

.policy-back {
  font-size: 13px;
  color: var(--accent);
}

.policy-page h1 {
  font-size: 30px;
  margin: 18px 0 4px;
  letter-spacing: -0.01em;
}

.policy-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.policy-page p {
  font-size: 17px;
  line-height: 1.6;
}

.policy-page h2 {
  font-size: 20px;
  margin: 32px 0 8px;
}

.policy-page a { color: var(--accent); }

/* ---------- Responsive (this build's own addition) ---------- */

@media (max-width: 1080px) {
  .nav, .hero, .features, .pricing, .footer { padding-left: 32px; padding-right: 32px; }
  .showcase { margin-left: 32px; margin-right: 32px; }
  .hero { flex-direction: column; align-items: flex-start; }
  .hero-phones { width: 100%; height: 460px; margin-top: 40px; align-self: center; }
}

@media (max-width: 860px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { flex-direction: column; align-items: flex-start; }
  .showcase-phone { align-self: center; }
}

@media (max-width: 680px) {
  .nav, .hero, .features, .pricing, .footer { padding-left: 20px; padding-right: 20px; }
  .showcase { margin-left: 20px; margin-right: 20px; padding: 32px; }
  .nav-links { gap: 18px; }
  .nav-links .nav-link { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .features h2, .pricing h2 { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; }
  .hero-phones { height: 340px; }
  .phone-main { width: 190px; height: 380px; right: 20px; }
  .phone-second { width: 160px; height: 320px; top: 60px; }
  .footer { flex-direction: column; align-items: flex-start; }
}
