/* ─── Reset & Base ──────────────────────────────────────────── */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", Roboto, "Helvetica Neue", sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: #6366f1; text-decoration: none; transition: color 0.2s; }
a:hover { color: #4f46e5; }
img { max-width: 100%; height: auto; }
code {
  background: #eef2ff;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9em;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  color: #4f46e5;
}
pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 20px 24px;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0;
  border: 1px solid rgba(255,255,255,0.05);
}
pre code { background: transparent; padding: 0; color: inherit; }
h1, h2, h3, h4 { line-height: 1.3; letter-spacing: -0.02em; }
h1 { font-size: 3em; font-weight: 800; }
h2 { font-size: 1.6em; font-weight: 700; margin-bottom: 24px; }
h3 { font-size: 1.15em; font-weight: 600; }
p { margin-bottom: 8px; color: #475569; line-height: 1.7; }

/* ─── Gradient Mesh Background ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(99,102,241,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(139,92,246,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(59,130,246,0.05) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
  width: 100%;
}

/* ─── Navbar ────────────────────────────────────────────────── */
.nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo:hover { text-decoration: none; opacity: 0.85; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  transition: all 0.2s;
}
.nav-link:hover { background: #f1f5f9; color: #1e293b; text-decoration: none; }
.nav-link.pro-link {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(99,102,241,0.3);
}
.nav-link.pro-link:hover { opacity: 0.9; box-shadow: 0 4px 16px rgba(99,102,241,0.4); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; padding: 4px; color: #475569; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none !important;
}
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  box-shadow: 0 2px 10px rgba(99,102,241,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99,102,241,0.4); color: white; }
.btn-outline {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #475569;
}
.btn-outline:hover { border-color: #6366f1; color: #6366f1; background: #f8faff; transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }

/* ─── Hero Section ──────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(139,92,246,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(59,130,246,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero h1 {
  font-size: 3.5em;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
  letter-spacing: -1px;
  line-height: 1.1;
  position: relative;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #6366f1, #a78bfa, #6366f1);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.hero p {
  font-size: 1.15em;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
  line-height: 1.8;
}
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 20px;
  font-size: 13px;
  color: #6366f1;
  margin-bottom: 20px;
  position: relative;
}

/* ─── Section ───────────────────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section:last-of-type { padding-bottom: 60px; }
.section h2 {
  font-size: 1.5em;
  margin-bottom: 32px;
  color: #0f172a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #e2e8f0 0%, transparent 100%);
}

/* ─── Tool Grid ─────────────────────────────────────────────── */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.tool-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none !important;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1, #a78bfa);
  opacity: 0;
  transition: opacity 0.3s;
}
.tool-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 30px rgba(99,102,241,0.08);
  transform: translateY(-3px);
}
.tool-card:hover::before { opacity: 1; }
.tool-card-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #eef2ff, #f0f4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.tool-card:hover .tool-card-icon { transform: scale(1.05); }
.tool-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: #1e293b; }
.tool-card p { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* ─── Blog List ─────────────────────────────────────────────── */
.blog-list { display: flex; flex-direction: column; gap: 12px; }
.blog-card {
  display: block;
  padding: 24px 28px;
  background: white;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1, #a78bfa);
  opacity: 0;
  transition: opacity 0.3s;
}
.blog-card:hover::before { opacity: 1; }
.blog-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 30px rgba(99,102,241,0.08);
  transform: translateY(-2px);
}
.blog-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: #1e293b; }
.blog-card p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 0; }
.blog-card-meta { display: flex; gap: 10px; align-items: center; margin-top: 10px; flex-wrap: wrap; }
.blog-card-meta span { font-size: 12px; color: #94a3b8; }
.blog-tag {
  font-size: 11px;
  padding: 3px 10px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  color: #6366f1;
  font-weight: 500;
}

/* ─── Blog Post ─────────────────────────────────────────────── */
.blog-post { max-width: 760px; margin: 0 auto; padding: 40px 0; }
.blog-post h2 { font-size: 1.8em; margin-bottom: 8px; }
.blog-meta { color: #94a3b8; font-size: 13px; margin-bottom: 28px; display: flex; gap: 10px; align-items: center; }
.blog-content p { margin-bottom: 16px; line-height: 1.8; color: #475569; }
.blog-content h2 { font-size: 1.4em; margin: 40px 0 16px; padding-bottom: 12px; border-bottom: 1px solid #e2e8f0; }
.blog-content h3 { font-size: 1.15em; margin: 24px 0 10px; color: #1e293b; }
.blog-content ul, .blog-content ol { margin: 12px 0 20px 24px; }
.blog-content li { margin-bottom: 6px; color: #475569; }
.blog-content hr { margin: 32px 0; border: none; border-top: 1px solid #e2e8f0; }
.blog-content blockquote {
  border-left: 3px solid #6366f1;
  padding: 14px 22px;
  margin: 20px 0;
  background: #f8faff;
  border-radius: 0 10px 10px 0;
  color: #475569;
  font-style: italic;
}
.blog-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; border-radius: 10px; overflow: hidden; }
.blog-content th { padding: 12px 16px; text-align: left; font-weight: 600; background: #f1f5f9; border-bottom: 2px solid #e2e8f0; color: #1e293b; }
.blog-content td { padding: 10px 16px; border-bottom: 1px solid #f1f5f9; color: #475569; }

/* ─── Pro Page ──────────────────────────────────────────────── */
.pro-hero {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.pro-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 60%, rgba(139,92,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(59,130,246,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.pro-hero h1 { font-size: 2.8em; font-weight: 800; margin-bottom: 16px; position: relative; }
.pro-hero .text-gradient {
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pro-subtitle { font-size: 1.1em; color: #64748b; margin-bottom: 8px; position: relative; }
.pro-desc { font-size: 1em; color: #64748b; max-width: 560px; margin: 0 auto 32px; position: relative; line-height: 1.7; }
.pro-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 20px;
  font-size: 13px;
  color: #6366f1;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
}
.pro-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid #eef2f6; position: relative; }
.pro-stat { text-align: center; }
.pro-stat-num { display: block; font-size: 28px; font-weight: 800; background: linear-gradient(135deg, #6366f1, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pro-stat span { font-size: 13px; color: #64748b; margin-top: 4px; display: block; }

/* ─── Pain Points ───────────────────────────────────────────── */
.pain-points {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.pain-card {
  padding: 28px 24px;
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.pain-card:hover { border-color: #c7d2fe; box-shadow: 0 8px 30px rgba(99,102,241,0.08); transform: translateY(-2px); }
.pain-icon { font-size: 36px; display: block; margin-bottom: 14px; }
.pain-card h3 { font-size: 15px; margin-bottom: 8px; color: #1e293b; }
.pain-card p { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* ─── Features Grid ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.feature-card {
  padding: 28px 24px;
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.feature-card:hover { border-color: #c7d2fe; box-shadow: 0 8px 30px rgba(99,102,241,0.08); transform: translateY(-2px); }
.feature-icon { font-size: 30px; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 15px; margin-bottom: 8px; color: #1e293b; }
.feature-card p { font-size: 13px; color: #64748b; line-height: 1.7; margin: 0; }

/* ─── Comparison Table ──────────────────────────────────────── */
.comparison-table { overflow-x: auto; border-radius: 14px; border: 1px solid #eef2f6; box-shadow: 0 2px 12px rgba(0,0,0,0.02); }
.comparison-table table { width: 100%; border-collapse: collapse; font-size: 14px; background: white; }
.comparison-table th { padding: 14px 18px; text-align: left; font-weight: 600; background: #f8faff; border-bottom: 1px solid #e2e8f0; color: #1e293b; }
.comparison-table td { padding: 12px 18px; border-bottom: 1px solid #f1f5f9; color: #475569; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #fafbff; }
.comparison-table .pro-highlight { background: linear-gradient(135deg, #6366f1, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
.price-highlight { background: linear-gradient(135deg, #6366f1, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.testimonial-card {
  padding: 28px 24px;
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 48px;
  color: #eef2ff;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: #475569; font-style: italic; line-height: 1.7; margin-bottom: 14px; position: relative; z-index: 1; }
.testimonial-author { font-size: 13px; color: #94a3b8; font-weight: 500; }

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.pricing-card {
  padding: 36px 32px;
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.pricing-card:hover { border-color: #c7d2fe; box-shadow: 0 12px 40px rgba(99,102,241,0.08); transform: translateY(-4px); }
.pricing-card.featured {
  border: 2px solid #6366f1;
  position: relative;
  background: linear-gradient(180deg, #f8faff 0%, white 100%);
  box-shadow: 0 4px 20px rgba(99,102,241,0.06);
}
.pro-badge-card {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.3);
}
.pricing-card h3 { font-size: 18px; margin-bottom: 12px; color: #0f172a; }
.pricing-amount { font-size: 44px; font-weight: 800; color: #0f172a; margin-bottom: 20px; letter-spacing: -1px; }
.pricing-per { font-size: 14px; color: #64748b; font-weight: 400; }
.pricing-card ul { list-style: none; padding: 0; margin-bottom: 24px; text-align: left; }
.pricing-card li { padding: 6px 0; font-size: 14px; color: #475569; display: flex; align-items: center; gap: 8px; }
.pricing-note { font-size: 12px; color: #94a3b8; margin-bottom: 16px; }

/* ─── Claim Page ────────────────────────────────────────────── */
.claim-form { display: flex; gap: 12px; max-width: 440px; margin: 24px 0; flex-wrap: wrap; }
.claim-form input {
  flex: 1; min-width: 200px; padding: 12px 16px; border-radius: 10px;
  border: 1px solid #d1d5db; font-size: 16px; outline: none;
  background: white; transition: all 0.2s;
}
.claim-form input:focus { border-color: #6366f1; box-shadow: 0 0 0 4px rgba(99,102,241,0.1); }
.claim-result { background: linear-gradient(135deg, #f0fdf4, #f8faff); border: 1px solid #bbf7d0; border-radius: 14px; padding: 28px; margin-top: 20px; }
.claim-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 12px; padding: 16px 24px; margin-top: 16px; color: #991b1b; }

/* ─── Search ────────────────────────────────────────────────── */
.search-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15,23,42,0.6); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.search-modal {
  background: white; border-radius: 16px; padding: 24px;
  width: 90%; max-width: 480px; display: flex; gap: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.search-modal input {
  flex: 1; padding: 12px 16px; border-radius: 10px;
  border: 1px solid #d1d5db; font-size: 15px; outline: none;
  transition: all 0.2s;
}
.search-modal input:focus { border-color: #6366f1; box-shadow: 0 0 0 4px rgba(99,102,241,0.1); }
.search-modal button {
  padding: 12px 24px; background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white; border: none; border-radius: 10px; cursor: pointer; font-weight: 600;
  transition: all 0.2s;
}
.search-modal button:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── Cookie Consent ────────────────────────────────────────── */
.cookie-consent {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: white; border: 1px solid #eef2f6; border-radius: 14px;
  padding: 16px 20px; display: flex; gap: 16px; align-items: center;
  z-index: 999; max-width: 500px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.cookie-consent p { font-size: 13px; color: #64748b; margin: 0; }
.cookie-consent button {
  padding: 8px 18px; background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: 600;
  font-size: 13px; white-space: nowrap; flex-shrink: 0;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: #0f172a;
  padding: 56px 24px 24px;
  margin-top: 80px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3), transparent);
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px; margin-bottom: 32px;
}
.footer-col h4 { font-size: 14px; font-weight: 600; color: #f1f5f9; margin-bottom: 14px; }
.footer-col p { font-size: 13px; color: #64748b; line-height: 1.7; }
.footer-col a { display: block; font-size: 13px; color: #64748b; padding: 4px 0; transition: all 0.2s; }
.footer-col a:hover { color: #a78bfa; text-decoration: none; transform: translateX(3px); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #475569; margin: 0; }
.footer-badges a { font-size: 12px; color: #475569; }
.footer-badges a:hover { color: #a78bfa; text-decoration: none; }

/* ─── Entry Animation ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero, .section { animation: fadeUp 0.6s ease-out both; }
.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }

/* ─── Mobile ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; width: 100%;
    flex-direction: column; background: white; border-bottom: 1px solid #e2e8f0;
    padding: 8px 16px; gap: 2px; box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav.open .nav-links { display: flex; }
  .nav-link { padding: 12px 14px; border-radius: 8px; }
  .hero { padding: 80px 20px 60px; }
  .hero h1 { font-size: 2.2em; }
  .pro-hero { padding: 60px 20px; }
  .pro-hero h1 { font-size: 1.8em; }
  .section { padding: 48px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 24px; }
}
