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

:root {
  --primary: #10B981;
  --primary-dark: #047857;
  --ink: #111827;
  --ink-light: #4B5563;
  --bg: #F9FAFB;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--primary);
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(249,250,251,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--ink);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.sub {
  font-size: 20px;
  color: var(--ink-light);
  max-width: 680px;
  margin: 0 auto 40px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.main-cta {
  font-size: 1.1rem;
  padding: 18px 40px;
  background-color: var(--primary);
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.main-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
}

.sample-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 600px;
}

.sample-offer p {
  font-size: 0.95rem;
  color: var(--ink-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.sample-form-inline {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sample-form-inline input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.sample-form-inline input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.secondary-cta {
  background-color: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 12px 24px;
}

.secondary-cta:hover {
  background-color: var(--border);
  transform: translateY(-1px);
}

.sample-form .cta {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
}

.cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.small {
  font-size: 14px;
  color: var(--ink-light);
}

.small-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--ink-light);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 20px;
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  color: var(--ink-light);
}

/* Pricing */
.pricing-section {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-wrapper {
  display: flex;
  justify-content: center;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.price-card::before {
  content: '7 Day FREE Trial';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.price {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--ink);
}

.price small {
  font-size: 18px;
  color: var(--ink-light);
  font-weight: 500;
  letter-spacing: 0;
}

ul.plain {
  list-style: none;
  margin: 0 0 36px;
  text-align: left;
}

ul.plain li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

ul.plain li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}

.price-card .cta {
  width: 100%;
  margin-bottom: 16px;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.faq dt {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--ink);
}

.faq dd {
  margin-left: 0;
  color: var(--ink-light);
}

/* Footer */
footer {
  padding: 64px 0;
  font-size: 14px;
  color: var(--ink-light);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

footer a {
  color: var(--ink-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--primary);
}

.gov-license {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  background: rgba(0,0,0,0.03);
  padding: 12px 24px;
  border-radius: 8px;
}

/* Privacy Page specific */
.prose {
  background: var(--white);
  padding: 64px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.prose h1 {
  font-size: 40px;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.prose h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.prose p {
  margin-bottom: 16px;
  color: var(--ink-light);
  font-size: 17px;
}

.prose ul {
  margin-left: 24px;
  margin-bottom: 24px;
  color: var(--ink-light);
}

.prose li {
  margin-bottom: 8px;
  font-size: 17px;
}

.prose a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.prose a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--ink-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .hero { padding: 60px 0 40px; }
  h1 { font-size: 36px; }
  .prose { padding: 32px; }
  .price-card { padding: 32px; }
}
