/* ══════════════════════════════════════════════════════════
   Pruva — Global Styles
   ══════════════════════════════════════════════════════════ */

:root {
  --amber: #D97706;
  --amber-dark: #92400E;
  --amber-light: #FEF3C7;
  --green: #10B981;
  --green-light: #D1FAE5;
  --purple: #6C47FF;
  --purple-light: #F3F0FF;
  --red: #EF4444;
  --bg: #FAFAF8;
  --card: #FFFFFF;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #E5E7EB;
  --radius: 16px;
  --max-w: 1200px;
  --nav-h: 56px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Navbar (Apple style) ───────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  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;
  gap: 32px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--amber-dark);
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active { border-bottom: 2px solid var(--amber); }
.nav-cta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--amber);
  padding: 8px 20px;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(217,119,6,0.3); }

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px 80px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--amber); }
.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 14px; font-size: 15px;
  font-weight: 600; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: #fff; box-shadow: 0 4px 16px rgba(217,119,6,0.3); }
.btn-secondary { background: var(--card); color: var(--text); border: 1.5px solid var(--border); }

/* ── Feature Cards ──────────────────────────────────────── */

.features {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px;
}
.features h2 {
  font-size: 32px; font-weight: 700; text-align: center;
  margin-bottom: 48px; letter-spacing: -0.5px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── Product Sections ───────────────────────────────────── */

.product-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-section.reverse { direction: rtl; }
.product-section.reverse > * { direction: ltr; }
.product-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.product-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.product-visual {
  background: linear-gradient(135deg, var(--amber-light), #FFF);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  font-size: 80px;
}

/* ── Footer ─────────────────────────────────────────────── */

.footer {
  background: var(--text);
  color: #fff;
  padding: 48px 24px;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { font-size: 18px; font-weight: 800; }
.footer-logo span { color: var(--amber); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── Choice Section ─────────────────────────────────────── */

.choice-section {
  max-width: var(--max-w);
  margin: 0 auto 80px;
  padding: 0 24px;
  text-align: center;
}
.choice-title {
  font-size: 32px; font-weight: 800;
  margin-bottom: 10px;
}
.choice-sub {
  color: var(--muted); font-size: 16px;
  margin-bottom: 40px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.choice-card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: block;
}
.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.choice-business:hover { border-color: #0A2A7A; }
.choice-online:hover   { border-color: var(--green); }

.choice-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: #0A2A7A; color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.choice-badge-green { background: var(--green); }

.choice-icon { font-size: 40px; margin-bottom: 12px; }

.choice-card h3 {
  font-size: 22px; font-weight: 800;
  margin-bottom: 8px;
}
.choice-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.6; margin-bottom: 20px;
}
.choice-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 28px;
}
.choice-list li {
  font-size: 13px;
  color: var(--text);
}
.choice-list li:has(✗) { color: var(--muted); }

.choice-cta {
  font-size: 14px; font-weight: 700;
  color: #0A2A7A;
}
.choice-cta-green { color: var(--green); }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 768px) {
  .product-section { grid-template-columns: 1fr; gap: 30px; }
  .product-section.reverse { direction: ltr; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 40px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-title { font-size: 24px; }
}
