/* =====================================================
   VertualMe — vertualme.com — Main Stylesheet
   ===================================================== */
:root {
  --purple:       #7C3AED;
  --purple-dark:  #4C1D95;
  --purple-light: #EDE9FE;
  --teal:         #0D9488;
  --teal-light:   #CCFBF1;
  --gold:         #D97706;
  --gold-light:   #FEF3C7;
  --dark:         #0F172A;
  --grey:         #334155;
  --muted:        #64748B;
  --border:       #E2E8F0;
  --bg:           #FFFFFF;
  --bg-soft:      #F8FAFC;
  --white:        #FFFFFF;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 32px rgba(124,58,237,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--dark); background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-teal   { color: var(--teal); }
.text-muted  { color: var(--muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 600; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--purple); color: var(--white); box-shadow: 0 4px 14px rgba(124,58,237,0.3); }
.btn-primary:hover { background: var(--purple-dark); box-shadow: 0 6px 20px rgba(124,58,237,0.4); }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple-light); }
.btn-teal { background: var(--teal); color: var(--white); box-shadow: 0 4px 14px rgba(13,148,136,0.3); }
.btn-teal:hover { background: #0f766e; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-white { background: var(--white); color: var(--purple); }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ── NAVIGATION ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); padding: 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.nav-brand {
  font-size: 20px; font-weight: 800; color: var(--purple); letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-brand span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 6px 12px; border-radius: 6px; font-size: 14px; font-weight: 500;
  color: var(--grey); text-decoration: none; transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--purple-light); color: var(--purple); }
.nav-links .nav-signin {
  color: var(--purple); font-weight: 600; border: 1.5px solid var(--purple);
  padding: 6px 14px; border-radius: 50px; margin-left: 4px; font-size: 14px;
}
.nav-links .nav-signin:hover { background: var(--purple-light); color: var(--purple); }
.nav-links .nav-cta {
  background: var(--purple); color: var(--white); padding: 8px 18px;
  border-radius: 50px; margin-left: 8px; font-size: 14px;
}
.nav-links .nav-cta:hover { background: var(--purple-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--grey); border-radius: 2px; transition: 0.2s; }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border); gap: 4px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 16px; }
  .nav-links .nav-cta { text-align: center; margin: 8px 0 0; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 45%, #0D9488 100%);
  color: var(--white); padding: 96px 24px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.hero-eyebrow {
  display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px; padding: 6px 18px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(32px, 6vw, 60px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #A78BFA; }
.hero p { font-size: clamp(16px, 2.5vw, 20px); opacity: 0.9; max-width: 620px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num { font-size: 32px; font-weight: 800; }
.hero-stat-label { font-size: 13px; opacity: 0.8; margin-top: 4px; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%);
  color: var(--white); padding: 64px 24px; text-align: center;
}
.page-header h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; margin-bottom: 12px; }
.page-header p { font-size: 18px; opacity: 0.9; max-width: 560px; margin: 0 auto; }

/* ── SECTIONS ── */
section { padding: 80px 0; }
section.bg-soft { background: var(--bg-soft); }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--purple); margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 48px; }
.divider { width: 48px; height: 4px; background: var(--purple); border-radius: 2px; margin: 16px auto 40px; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

/* ── LAYER BLOCKS ── */
.layer-block { border-radius: var(--radius-lg); padding: 36px; margin-bottom: 24px; position: relative; }
.layer-block .layer-num {
  position: absolute; top: -16px; left: 32px;
  background: var(--white); border: 2px solid currentColor;
  border-radius: 50px; padding: 4px 16px; font-size: 12px; font-weight: 700; letter-spacing: 1px;
}
.layer-1 { background: var(--purple-light); border: 2px solid var(--purple); color: var(--purple); }
.layer-1 .layer-num { border-color: var(--purple); color: var(--purple); }
.layer-2 { background: #DBEAFE; border: 2px solid #1D4ED8; color: #1D4ED8; }
.layer-2 .layer-num { border-color: #1D4ED8; color: #1D4ED8; }
.layer-3 { background: #F1F5F9; border: 2px solid #334155; color: #334155; }
.layer-3 .layer-num { border-color: #334155; color: #334155; }
.layer-block h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin: 8px 0 12px; }
.layer-block p { color: var(--grey); margin-bottom: 16px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill {
  display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--white);
}
.pill-purple { background: var(--purple); }
.pill-blue   { background: #1D4ED8; }
.pill-dark   { background: #334155; }
.pill-gold   { background: var(--gold); }
.pill-soft   { background: rgba(255,255,255,0.7); color: var(--dark); border: 1px solid rgba(0,0,0,0.1); }

/* ── BEST OF ME HIGHLIGHT ── */
.best-of-me-band {
  background: linear-gradient(135deg, var(--gold-light), #FFF7ED);
  border: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 32px 36px;
  margin-top: 12px;
}
.best-of-me-band .bom-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.best-of-me-band h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.best-of-me-band p { color: var(--grey); font-size: 15px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.pricing-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--purple); box-shadow: var(--shadow-lg); }
.pricing-header { padding: 28px 28px 20px; }
.pricing-card.featured .pricing-header { background: var(--purple); color: var(--white); }
.pricing-card.gold-card .pricing-header { background: var(--gold); color: var(--white); }
.pricing-badge {
  display: inline-block; background: rgba(255,255,255,0.2); border-radius: 50px;
  padding: 3px 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px;
}
.pricing-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.pricing-price { font-size: 40px; font-weight: 800; line-height: 1; }
.pricing-price span { font-size: 16px; font-weight: 400; opacity: 0.8; }
.pricing-body { padding: 24px 28px 28px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--grey); display: flex; gap: 8px; }
.pricing-features li:last-child { border: none; }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pricing-features li.muted::before { content: '—'; color: var(--muted); }
.pricing-cta { width: 100%; display: block; text-align: center; }

/* ── AI INTEGRATIONS ── */
.ai-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ai-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ai-card-icon { font-size: 32px; flex-shrink: 0; width: 52px; text-align: center; }
.ai-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ai-card-body p { font-size: 13px; color: var(--muted); margin-bottom: 8px; line-height: 1.5; }
.ai-badge {
  display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 10px;
  border-radius: 50px; letter-spacing: 0.3px;
}
.badge-planned  { background: #FEF3C7; color: var(--gold); }
.badge-ready    { background: var(--teal-light); color: var(--teal); }
.badge-core     { background: var(--purple-light); color: var(--purple); }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; position: relative; padding-bottom: 32px; }
.step:last-child { padding-bottom: 0; }
.step:last-child::before { display: none; }
.step::before {
  content: ''; position: absolute; left: 19px; top: 44px; bottom: 0;
  width: 2px; background: var(--border);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-size: 16px; flex-shrink: 0; position: relative; z-index: 1;
}
.step-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; padding-top: 8px; }
.step-body p { font-size: 14px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; position: relative;
}
.testimonial::before { content: '"'; font-size: 64px; color: var(--purple-light); position: absolute; top: 8px; left: 20px; line-height: 1; }
.testimonial p { font-size: 15px; color: var(--grey); line-height: 1.7; padding-top: 20px; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--purple-light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 60%, #0D9488 100%);
  color: var(--white); padding: 80px 24px; text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.cta-band p { font-size: 18px; opacity: 0.9; margin-bottom: 36px; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--dark); background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.alert-success { background: #DCFCE7; color: #166534; border: 1px solid #86EFAC; border-radius: var(--radius); padding: 12px 16px; margin-top: 16px; display: none; }

/* ── TRUST PAGE ── */
.trust-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.trust-item:last-child { border: none; }
.trust-icon { font-size: 32px; flex-shrink: 0; width: 48px; text-align: center; }
.trust-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.trust-body p { color: var(--muted); font-size: 15px; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.8); padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: #A78BFA; }
.footer-tagline { font-size: 14px; opacity: 0.7; line-height: 1.6; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; opacity: 0.5;
}
