@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --bg: #09090b;
  --surface: #18181b;
  --surface-2: #1f1f23;
  --border: #27272a;
  --border-light: #3f3f46;
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --success: #10b981;
  --amber: #f59e0b;
}

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { background: var(--surface); border-color: var(--text-muted); }
.btn-large { padding: 14px 28px; font-size: 1rem; }

/* Hero */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.12), transparent);
}
.breadcrumb { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-light); }
.vs-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.vs-badge span { color: var(--text-secondary); font-weight: 500; }
.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; line-height: 1.15; letter-spacing: -0.02em; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { font-size: 1.125rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto 32px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 80px 0; }
section h2 { font-size: 2rem; font-weight: 600; margin-bottom: 12px; text-align: center; letter-spacing: -0.01em; }
section > p { color: var(--text-secondary); text-align: center; max-width: 600px; margin: 0 auto 48px; }

/* Savings Banner */
.savings-hero {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  margin: 32px 0;
}
.savings-hero .number { font-size: 3rem; font-weight: 700; color: white; }
.savings-hero .label { color: rgba(255,255,255,0.9); font-size: 1rem; margin-top: 4px; }

/* Problems Section */
.problems-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
}
.problems-section h3 {
  color: var(--amber);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-quotes { display: flex; flex-direction: column; gap: 16px; }
.quote {
  border-left: 2px solid var(--amber);
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 8px 8px 0;
}
.quote p { font-style: italic; margin-bottom: 8px; color: var(--text-secondary); font-size: 0.95rem; }
.quote .source { color: var(--text-muted); font-size: 0.8rem; }

/* Pros and Cons */
.pros-cons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 32px 0; }
@media (max-width: 768px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-box, .cons-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.pros-box h3, .cons-box h3 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pros-box h3 { color: var(--success); }
.cons-box h3 { color: #ef4444; }
.pros-box ul, .cons-box ul { list-style: none; }
.pros-box li, .cons-box li { padding: 8px 0; padding-left: 24px; position: relative; color: var(--text-secondary); font-size: 0.9rem; }
.pros-box li::before { content: ""; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.cons-box li::before { content: ""; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: #ef4444; }

/* Comparison Table */
.comparison-table { margin: 32px 0; overflow: hidden; border-radius: 12px; border: 1px solid var(--border); }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  background: var(--surface);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--surface); }
.check { color: var(--success); font-weight: 500; }
.cross { color: #ef4444; }
.partial { color: var(--amber); }

/* Cards Grid */
.features-grid, .reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 48px; }
.feature-card, .reason-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.feature-card:hover, .reason-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.feature-card .icon, .reason-card .icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 16px;
}
.feature-card h3, .reason-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p, .reason-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 32px 0; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--surface) 100%);
  position: relative;
}
.pricing-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.pricing-card .tool { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 12px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 700; margin-bottom: 4px; }
.pricing-card .price.linkedify { color: var(--success); }
.pricing-card .price.competitor { color: var(--text-muted); }
.pricing-card .period { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 16px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 16px; }
.pricing-card li { padding: 6px 0; color: var(--text-secondary); font-size: 0.85rem; }
.savings-badge {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 48px; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.testimonial-card .stars { color: #fbbf24; margin-bottom: 12px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; margin-bottom: 16px; color: var(--text-secondary); line-height: 1.6; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card .author-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.testimonial-card .author-info span { color: var(--text-muted); font-size: 0.8rem; }
.testimonial-card .switch-badge {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}

/* Migration Steps */
.migration-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
}
.faq-question:hover { color: var(--primary-light); }
.faq-answer { padding: 0 0 20px; color: var(--text-secondary); display: none; font-size: 0.95rem; line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-toggle { transition: transform 0.2s; color: var(--text-muted); }

/* Trust Signals */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.trust-item { text-align: center; }
.trust-item .number { font-size: 2rem; font-weight: 700; color: var(--text); }
.trust-item .label { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(99, 102, 241, 0.12), transparent);
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* Footer */
footer {
  background: var(--surface);
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--text-secondary); }
.footer-content p { color: var(--text-muted); font-size: 0.85rem; }

/* Trust Signals in Hero */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* Savings Banner */
.savings-banner {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}
.savings-banner .number { font-size: 2.5rem; font-weight: 700; color: white; }
.savings-banner .label { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-top: 4px; }
.savings-banner .subtext { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 8px; }

/* Warning Box */
.warning-box {
  background: var(--surface);
  border: 1px solid var(--amber);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}
.warning-box h3 {
  color: var(--amber);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.warning-box p { color: var(--text-secondary); margin-bottom: 16px; }
.warning-box ul { list-style: none; }
.warning-box li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.warning-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* Quote Cards */
.quote-card {
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
  background: var(--surface);
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}
.quote-card:last-child { margin-bottom: 0; }
.quote-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.quote-source {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Pros and Cons Container */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 768px) { .pros-cons { grid-template-columns: 1fr; } }

/* Problems List */
.problems-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.problem-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.problem-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.problem-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Feature Detail in Table */
.feature-detail {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Section Dark */
.section-dark {
  background: var(--surface);
}

/* Linkedify Features */
.linkedify-features {
  margin: 32px 0;
}
.linkedify-features h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
.linkedify-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.linkedify-feature {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.linkedify-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.linkedify-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Pricing Comparison */
.pricing-comparison {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(255,255,255,0.02); }
.pricing-row .plan {
  font-weight: 500;
  color: var(--text);
}
.pricing-row .price {
  font-weight: 600;
}
.pricing-row .price.linkedify { color: var(--success); }
.pricing-row .price.competitor { color: var(--text-muted); }

@media (max-width: 768px) {
  .pricing-header, .pricing-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    font-size: 0.8rem;
    padding: 12px 16px;
  }
}

/* Testimonial Card Text/Author */
.testimonial-card .text {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}
.testimonial-card .name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-card .role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 120px 0 60px; }
  section { padding: 60px 0; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .trust-signals { gap: 16px; }
  .trust-item { font-size: 0.85rem; }
}
