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

:root {
  --accent: #7c3aed;
  --accent-dark: #6d28d9;
  --accent-light: #f5f3ff;
  --orange: #f97316;
  --amber: #f59e0b;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
  --gradient-subtle: linear-gradient(135deg, #f5f3ff 0%, #fef3f2 50%, #fff7ed 100%);
  --dark: #18181b;
  --gray-900: #27272a;
  --gray-700: #3f3f46;
  --gray-500: #71717a;
  --gray-300: #d4d4d8;
  --gray-100: #f4f4f5;
  --white: #ffffff;
  --radius: 14px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: var(--gray-500); font-size: 0.9rem; font-weight: 500; text-decoration: none; }
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 8px;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--gray-700) !important; text-decoration: none !important; }

/* Logo */
.logo { font-size: 1.4rem; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; }
.logo-dot { color: var(--accent); }

/* Hero */
.hero {
  background: var(--gradient-subtle);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.badge {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.hero-note { font-size: 0.85rem; color: var(--gray-500); margin-top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--gray-700); }
.btn-outline { background: var(--white); color: var(--dark); border: 2px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--dark); }
.btn-full { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* Stats */
.stats { background: var(--dark); padding: 1.5rem; }
.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.8rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 36px; background: #334155; }

/* Sections */
.section { padding: 4rem 1.5rem; }
.section-dark { background: var(--gray-100); }
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.section-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* Steps */
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.step p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.6; }

/* Platform Cards */
.platforms {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.platform-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
}
.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.platform-chatgpt { background: #10a37f; color: white; }
.platform-claude { background: #d4a27a; color: white; }
.platform-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--dark); }
.platform-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.platform-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.ps-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Features */
.features {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feature {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--dark); }
.feature p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* Coverages */
.coverages {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.coverage {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.coverage h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.coverage p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* CTA */
.cta-section { text-align: center; padding: 4rem 1.5rem; }
.cta-section h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.cta-section p { color: var(--gray-500); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* Footer */
.footer {
  border-top: 1px solid var(--gray-100);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.disclaimer { font-size: 0.78rem; color: #94a3b8; line-height: 1.6; margin-bottom: 1rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; }
.footer-links a { color: var(--gray-500); font-size: 0.85rem; text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .steps { grid-template-columns: 1fr; }
  .platforms { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .coverages { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 1.5rem; }
  .stat-divider { display: none; }
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .section { padding: 3rem 1rem; }
  .coverages { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ---- get-quotes page reuse ---- */
.form-container { max-width: 640px; margin: 0 auto; padding: 2rem 1.5rem; }
.contact-form {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.contact-form h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.contact-form > p { color: var(--gray-500); margin-bottom: 1.5rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.35rem; font-size: 0.9rem; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.btn-primary {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.15s;
}
.btn-primary:hover { background: var(--accent-dark); }
.success-message {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.success-message h2 { color: #166534; margin-bottom: 0.5rem; }
.success-message p { color: #15803d; }
