/* People Route Website Styles */
/* Big-Me Softwares */

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C2F;
  --orange-dim: rgba(255, 107, 0, 0.12);
  --bg: #FFFFFF;
  --bg-alt: #F8F8F8;
  --text: #111111;
  --text-secondary: #555555;
  --border: #E5E5E5;
  --radius: 14px;
  --max-w: 1080px;
  --nav-h: 62px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo:hover {
  color: var(--text);
  text-decoration: none;
}
.nav-logo .dot { color: var(--orange); }
.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); text-decoration: none; }
.nav-links .cta-link {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-links .cta-link:hover { background: var(--orange-light); }

/* ── Sections ─────────────────────────────────────────────────────────────── */
section { padding: 80px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
#hero {
  padding: 100px 24px 80px;
  background: linear-gradient(165deg, #fff5ee 0%, #ffffff 55%);
  text-align: center;
}
#hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
#hero h1 span { color: var(--orange); }
#hero .sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Feature Cards ────────────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* ── How It Works ─────────────────────────────────────────────────────────── */
#how { background: var(--bg-alt); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 0.88rem; color: var(--text-secondary); }

/* ── Example Gallery ──────────────────────────────────────────────────────── */
.example-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.example-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(2, 6, 23, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.example-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.12);
}
.example-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e2e8f0;
}
.example-copy {
  padding: 16px 16px 18px;
}
.example-copy h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.example-copy p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── Siri ─────────────────────────────────────────────────────────────────── */
#siri .siri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  max-width: 560px;
}
.siri-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
}
.siri-chip .quote { font-style: italic; color: var(--text-secondary); }

/* ── Quick icon menu section ─────────────────────────────────────────────── */
.quick-menu-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.quick-menu-copy .lead {
  margin-bottom: 16px;
}
.quick-menu-list {
  list-style: none;
  margin-top: 14px;
}
.quick-menu-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.quick-menu-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--orange);
}
.quick-menu-image-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
}
.quick-menu-image {
  width: 100%;
  border-radius: 12px;
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
#pricing { background: var(--bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.plan {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.plan:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.plan.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange-dim);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.plan-price { font-size: 1.6rem; font-weight: 800; color: var(--orange); margin: 8px 0 4px; }
.plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-secondary); }
.plan-helps { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 16px; }
.plan-note { font-size: 0.78rem; color: var(--text-secondary); }

/* ── FollowFollow ─────────────────────────────────────────────────────────── */
.ff-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 20px;
}
.ff-block ul { list-style: none; margin-top: 20px; }
.ff-block li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.ff-block li::before { content: "✓"; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.ff-visual {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  font-size: 4rem;
  line-height: 1;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand .logo .brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}
.footer-brand .tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.82rem;
  text-align: center;
}
.footer-bottom strong { color: #fff; }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.alt-bg { background: var(--bg-alt); }
.text-center { text-align: center; }
.text-center .lead { margin: 0 auto 40px; }
.orange { color: var(--orange); }
.privacy-note {
  background: var(--orange-dim);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 24px;
  color: var(--text);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .nav-links { display: none; }
  .ff-block { grid-template-columns: 1fr; }
  .quick-menu-showcase { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  #siri .siri-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
