/* ============================================================
   OwnABiz Landing Page — styles.css
   Palette: Navy (#1B1F4B) + Indigo (#4F56C8) + Teal (#0EA5A0)
   ============================================================ */

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

:root {
  --navy:         #1B1F4B;
  --navy-mid:     #2D3275;
  --indigo:       #4F56C8;
  --indigo-light: #E8EAFF;
  --teal:         #0EA5A0;
  --teal-light:   #E0F7F6;
  --teal-bright:  #14D4CE;
  --amber:        #F59E0B;
  --green:        #10B981;
  --text:         #0F1128;
  --text-mid:     #4B5066;
  --text-soft:    #8B90AA;
  --border:       rgba(79, 86, 200, 0.12);
  --surface:      #F8F9FF;
  --white:        #FFFFFF;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --shadow-card:  0 2px 40px rgba(27, 31, 75, 0.08);
  --shadow-btn:   0 4px 20px rgba(27, 31, 75, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ───────────────────────────────────────────── */

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--indigo) !important;
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 48px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 440px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  background: var(--navy);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 86, 200, 0.28);
}

.btn-ghost {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--navy);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.avatar:first-child { margin-left: 0; }
.av1 { background: var(--indigo); }
.av2 { background: var(--teal); }
.av3 { background: var(--amber); }
.av4 { background: #6366F1; }

.trust-text {
  font-size: 13px;
  color: var(--text-soft);
}

.trust-text strong {
  color: var(--text-mid);
  font-weight: 500;
}

/* ── DEAL CARD ────────────────────────────────────────────── */

.hero-right {
  animation: fadeUp 0.7s 0.3s ease both;
}

.deal-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.deal-card-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-card-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.deal-card-biz {
  font-size: 15px;
  font-weight: 500;
  color: white;
}

.score-pill {
  background: var(--teal);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.score-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.deal-card-body {
  padding: 20px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.metric-cell {
  background: var(--surface);
  border-radius: 8px;
  padding: 12px;
}

.metric-label {
  font-size: 10px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.metric-val {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.metric-sub {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 3px;
}

.metric-cell.good .metric-val { color: var(--green); }
.metric-cell.warn .metric-val { color: var(--amber); }

.ai-box {
  background: linear-gradient(135deg, var(--indigo-light), var(--teal-light));
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.ai-box-label {
  font-size: 10px;
  color: var(--indigo);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.ai-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ai-bullet {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}

.ai-bullet::before {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
}

.ai-bullet.pos::before { content: "✓"; color: var(--teal); font-weight: 700; }
.ai-bullet.neg::before { content: "⚠"; color: var(--amber); }

.score-bar-label {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 5px;
}

.score-bar-track {
  height: 6px;
  background: var(--indigo-light);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 6px;
  width: 72%;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  border-radius: 3px;
}

/* ── DATA SOURCES BAND ────────────────────────────────────── */

.logos-band {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logos-label {
  font-size: 12px;
  color: var(--text-soft);
  margin-right: 4px;
}

.logo-pill {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
}

/* ── SECTIONS (shared) ────────────────────────────────────── */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 48px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 480px;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ── FEATURES ─────────────────────────────────────────────── */

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

.feature-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(79, 86, 200, 0.3);
  box-shadow: 0 4px 24px rgba(27, 31, 75, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.feature-icon.navy  { background: var(--indigo-light); }
.feature-icon.teal  { background: var(--teal-light); }
.feature-icon.amber { background: #FEF3C7; }

.feature-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ── PRICING ──────────────────────────────────────────────── */

.pricing-section {
  background: var(--surface);
  max-width: 100%;
  padding: 80px 48px;
}

.pricing-section .section-header,
.pricing-cards,
.price-guarantee {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
}

.price-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27, 31, 75, 0.1);
}

.price-card.featured {
  border: 1.5px solid var(--indigo);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-tier {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-num {
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  font-family: var(--font-body);
}

.price-period {
  font-size: 14px;
  color: var(--text-soft);
}

.price-desc {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.price-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.price-items li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-items li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all 0.2s;
}

.price-cta.outline {
  border: 1px solid var(--border);
  color: var(--navy);
  background: white;
}

.price-cta.outline:hover {
  background: var(--surface);
}

.price-cta.solid {
  background: var(--navy);
  color: white;
  box-shadow: 0 2px 12px rgba(27, 31, 75, 0.2);
}

.price-cta.solid:hover {
  background: var(--indigo);
  box-shadow: 0 4px 20px rgba(79, 86, 200, 0.3);
}

.price-guarantee {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-soft);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */

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

.testimonial-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

blockquote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
  font-style: italic;
}

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

.reviewer-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.ra1 { background: var(--indigo); }
.ra2 { background: var(--teal); }
.ra3 { background: #6366F1; }

.reviewer-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.reviewer-role {
  font-size: 12px;
  color: var(--text-soft);
}

/* ── CTA BAND ─────────────────────────────────────────────── */

.cta-band {
  background: var(--navy);
  padding: 72px 48px;
  text-align: center;
}

.cta-band h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 14px;
}

.cta-band h2 em {
  color: var(--teal-bright);
}

.cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-weight: 300;
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-teal:hover {
  background: var(--teal-bright);
  transform: translateY(-2px);
}

.cta-sub {
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

/* ── FOOTER ───────────────────────────────────────────────── */

.footer {
  border-top: 0.5px solid var(--border);
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-soft);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--navy);
}

/* ── ANIMATIONS ───────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left    { animation: fadeUp 0.6s 0.1s ease both; }
.hero-right   { animation: fadeUp 0.7s 0.3s ease both; }
.nav-wrapper  { animation: fadeDown 0.5s ease both; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
  }

  h1 { font-size: 38px; }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav { padding: 14px 24px; }
  .logos-band { padding: 16px 24px; gap: 8px; }
  .section { padding: 60px 24px; }
}

@media (max-width: 600px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }

  .features-grid,
  .testimonials-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.nav-cta) { display: none; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
  .cta-band { padding: 48px 24px; }
}
