/* Triont — Design System v2 (Clerk-inspired) */

/* Announcement Banner */
.announcement-bar {
  background: linear-gradient(90deg, #0f766e, #0d9488);
  color: #fff;
  padding: 10px 24px;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-badge {
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.announcement-bar a {
  color: #fff;
  font-weight: 500;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

.announcement-arrow {
  display: inline-block;
  transition: transform 0.15s;
}

.announcement-bar a:hover .announcement-arrow {
  transform: translateX(3px);
}

:root {
  /* Light mode — refined, authoritative */
  --bg: #ffffff;
  --bg-subtle: #f8fafb;
  --card: #ffffff;
  --text: #111827;
  --text-secondary: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-subtle: #f3f4f6;
  --link: #0f766e;
  --accent: #0d9488;
  --accent-hover: #0a7c72;
  --accent-glow: rgba(13, 148, 136, 0.08);
  --accent-solid: #0d9488;
  --max: 1100px;
  --max-narrow: 720px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

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

/* Navigation */
header {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand a { color: var(--text); }
.brand a:hover { text-decoration: none; }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.2);
}
.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.hero-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--accent-glow);
  border-radius: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--text);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(13, 148, 136, 0.15), 0 1px 2px rgba(13, 148, 136, 0.1);
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3), 0 2px 4px rgba(13, 148, 136, 0.15);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.2);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--line);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: #d1d5db;
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Code Mockup */
.code-mockup {
  max-width: 700px;
  margin: 50px auto 0;
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  text-align: left;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #0f172a;
  border-bottom: 1px solid #334155;
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #334155;
}

.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: #eab308; }
.code-dot.green { background: #22c55e; }

.code-title {
  margin-left: 12px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.code-body {
  padding: 20px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e2e8f0;
  overflow-x: auto;
}

.code-body .comment { color: #64748b; }
.code-body .string { color: #a5f3fc; }
.code-body .key { color: #c4b5fd; }
.code-body .url { color: #86efac; }

/* Main Content */
main {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 60px 24px 80px;
}

main.wide {
  max-width: var(--max);
}

/* Section Styling */
.section {
  padding: 80px 24px;
}

.section-subtle {
  background: var(--bg-subtle);
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0;
}

/* Centered content containers */
.section-narrow {
  max-width: var(--max-narrow);
  margin-left: auto;
  margin-right: auto;
}

.section-medium {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* CTA button group */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Standalone pullquote */
.pullquote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  position: relative;
}

.pullquote::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* Feature Grid (Bento-style) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06), 0 0 0 1px rgba(13, 148, 136, 0.05);
  transform: translateY(-2px);
}

.feature-card.large {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .feature-card.large {
    grid-column: span 1;
  }
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Prose Content (Articles) */
.prose h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 32px 0 12px;
}

.prose p {
  margin: 0 0 18px;
  color: var(--text-secondary);
}

.prose ul, .prose ol {
  margin: 16px 0 16px 24px;
  color: var(--text-secondary);
}

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

.prose strong {
  color: var(--text);
  font-weight: 600;
}

/* Kicker & Byline */
.kicker {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.byline {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

/* Cards */
.card {
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.card p:last-child { margin-bottom: 0; }

.card-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

/* Blockquote */
blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: var(--accent-glow);
  border-radius: 0 8px 8px 0;
}

blockquote p { margin: 0; color: var(--text); }

/* CTA Section */
.cta-section {
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 32px;
  margin: 60px 0;
  text-align: center;
}

.cta-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.cta-section p {
  color: var(--text-secondary);
  margin: 0 0 24px;
  font-size: 1.05rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-content {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

/* Articles Grid */
.articles-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.article-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.article-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.article-card .date {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.article-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.35;
}

.article-card h3 a { color: var(--text); }
.article-card h3 a:hover { color: var(--accent); text-decoration: none; }

.article-card .excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

.article-card .read-more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Hero CTA group */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Compact hero (no terminal mockup) */
.hero-compact {
  min-height: auto;
  padding: 100px 24px 80px;
}

/* Three- and four-column grid variants */
.features-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .features-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid.three-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .features-grid.four-col {
    grid-template-columns: 1fr;
  }
}

/* Feature card link */
.feature-card .card-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
  color: var(--accent);
}
.feature-card .card-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.step-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Comparison table */
.table-wrap {
  max-width: var(--max);
  margin: 40px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  min-width: 600px;
}

.comparison-table thead th {
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table thead th:first-child {
  background: var(--bg-subtle);
  color: var(--text-secondary);
  font-weight: 500;
}

.comparison-table tbody td {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
}

.pricing-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  position: relative;
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.5) 0%, var(--bg) 100%);
}

.pricing-card.featured:hover {
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 10px;
  text-transform: uppercase;
}

.pricing-card .tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card .tier-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-card .tier-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card .tier-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Testimonials */
.section-testimonials {
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
  border-top: 1px solid #99f6e4;
  border-bottom: 1px solid #99f6e4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-card {
  padding: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 246, 228, 0.3);
  transition: all 0.2s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.testimonial-card .quote {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px;
}

.testimonial-card .attribution {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

/* Forms */
.form-input,
.form-textarea {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-subtle);
  color: var(--text);
  font-size: 0.9rem;
  width: 100%;
}

.form-textarea {
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Legal pages */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  color: var(--text);
  line-height: 1.8;
}

.legal-body h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-body .effective {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--text);
}

.legal-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text);
}

.legal-body p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-body ul {
  color: var(--text-secondary);
  margin: 0 0 16px 20px;
}

.legal-body ul li {
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--accent);
  text-decoration: none;
}

.legal-body a:hover {
  text-decoration: underline;
}

/* Pricing highlight */
.pricing-amount {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 8px;
}

.pricing-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0 0 32px;
}

/* Back link */
.back-link {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.back-link:hover {
  color: var(--text);
  text-decoration: none;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0b;
    --bg-subtle: #111113;
    --card: #18181b;
    --text: #fafafa;
    --text-secondary: #a1a1aa;
    --muted: #71717a;
    --line: #27272a;
    --line-subtle: #1c1c1e;
    --accent-glow: rgba(13, 148, 136, 0.2);
  }

  header {
    background: rgba(10,10,11,.9);
  }

  .code-mockup {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  }

  .feature-card:hover,
  .article-card:hover {
    border-color: #3f3f46;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }
}

/* Print */
@media print {
  header, footer, .hero-bg, .code-mockup, .cta-section, .btn { display: none; }
  body { background: #fff; color: #000; }
  .prose p, .prose li { color: #000; }
}

/* Responsive */
@media (max-width: 640px) {
  .hero { padding: 50px 20px 70px; }
  .hero-compact { padding: 60px 20px 50px; }
  .hero h1 { font-size: 2rem; }
  .hero-lead { font-size: 1.1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 360px; justify-content: center; }
  .code-mockup { margin: 30px -8px 0; border-radius: 8px; }
  .code-body { font-size: 0.8rem; padding: 16px; }
  .section { padding: 50px 20px; }
  .features-grid { gap: 16px; }
  .feature-card { padding: 22px; }
  .btn { padding: 12px 20px; font-size: 0.95rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-group .cta-row { flex-direction: column; align-items: center; }
  .cta-group .cta-row .btn { width: 100%; max-width: 360px; }
}
