/* ==========================================================================
   GHUFRAN GEN — Free Unlimited Creator Suite (Official Billing & Pricing Theme)
   Palette: Dark Obsidian, Emerald, Mint & Glowing Cyber Jade
   ========================================================================== */

:root {
  --bg-primary: #050a07;
  --bg-secondary: #08110c;
  --bg-card: rgba(10, 20, 15, 0.72);
  --bg-card-hover: rgba(14, 28, 21, 0.85);
  --bg-glass: rgba(12, 24, 18, 0.65);
  
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-900: #064e3b;
  
  --accent-glow: rgba(16, 185, 129, 0.35);
  --accent-border: rgba(16, 185, 129, 0.22);
  --accent-border-bright: rgba(52, 211, 153, 0.5);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Menlo, monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 28px rgba(16, 185, 129, 0.2);
  --shadow-glow-strong: 0 0 45px rgba(16, 185, 129, 0.38);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #0d281a 0%, #050a07 60%);
}

/* Background Ambient Elements */
.bg-ambient-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.18), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.bg-grid-pattern {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(16, 185, 129, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 185, 129, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  padding: 80px 0;
}

/* Typography Helpers */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #6ee7b7 0%, #10b981 60%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-full);
  color: var(--emerald-400);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--accent-border);
  color: var(--emerald-300);
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.16);
  border-color: var(--accent-border-bright);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--emerald-400);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-block {
  width: 100%;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 10, 7, 0.85);
  border-bottom: 1px solid var(--accent-border);
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #064e3b, #022c19);
  border: 1px solid var(--emerald-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.brand-text-box {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--emerald-400);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--emerald-400);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 70px;
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-headline {
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* Mockup UI */
.hero-mockup-wrapper {
  margin: 0 auto;
  max-width: 580px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 78, 59, 0.05));
  border: 1px solid var(--accent-border-bright);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-strong), 0 30px 60px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}

.mockup-extension-box {
  background: #08110c;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.mockup-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
}

.mockup-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald-500);
  color: var(--emerald-400);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mockup-code-card {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  margin-bottom: 16px;
}

.mockup-code-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.mockup-code-digits {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--emerald-400);
  text-shadow: 0 0 16px rgba(52, 211, 153, 0.5);
}

.mockup-timer-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.mockup-timer-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
}

.mockup-tools-row {
  display: flex;
  gap: 8px;
}

.mockup-tool-chip {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-secondary);
}

/* Product Description Section */
.product-intro-section {
  background: linear-gradient(180deg, transparent, rgba(6, 30, 18, 0.3), transparent);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-text-card h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.intro-text-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-pills-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-pill-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: all 0.25s;
}

.feature-pill-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border-bright);
  transform: translateX(4px);
}

.pill-icon {
  font-size: 1.3rem;
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.pill-title {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.pill-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  border-color: var(--accent-border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(6, 40, 24, 0.6));
  border-color: var(--emerald-500);
  box-shadow: var(--shadow-glow-strong);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.plan-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 40px;
}

.plan-price-box {
  text-align: center;
  margin: 16px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-400);
  vertical-align: super;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-check {
  color: var(--emerald-400);
  font-weight: 800;
  flex-shrink: 0;
}

/* Feature Comparison Table */
.comparison-section {
  padding-top: 40px;
}

.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, 
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  background: rgba(16, 185, 129, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table th.col-highlight {
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.12);
}

.comparison-table td {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.table-check {
  color: var(--emerald-400);
  font-size: 1.1rem;
  font-weight: 800;
}

.table-dash {
  color: var(--text-dim);
  font-weight: 700;
}

/* How It Works Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border-bright);
}

.step-num-badge {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #064e3b, #022c19);
  border: 1px solid var(--emerald-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.payment-assurance-box {
  margin-top: 36px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.payment-assurance-box strong {
  color: var(--emerald-400);
}

/* Why GHUFRAN GEN */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.25s;
}

.why-card:hover {
  border-color: var(--accent-border-bright);
  transform: translateY(-4px);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--emerald-500);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question-btn:hover {
  color: var(--emerald-400);
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--emerald-400);
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer-content {
  max-height: 300px;
  padding-bottom: 20px;
}

/* Support & Contact Section */
.support-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 40, 24, 0.4));
  border: 1px solid var(--accent-border-bright);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.developer-profile-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.dev-avatar-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--emerald-400);
  padding: 2px;
  background: #08110c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.dev-info-box {
  text-align: left;
}

.dev-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dev-verified {
  color: var(--emerald-400);
  font-size: 1rem;
}

.dev-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.support-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Footer */
.footer {
  background: #020604;
  border-top: 1px solid var(--accent-border);
  padding: 60px 0 30px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 14px;
  color: var(--text-dim);
  max-width: 320px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--emerald-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background: #08110c;
  border: 1px solid var(--accent-border-bright);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 800;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.modal-body h4 {
  color: #ffffff;
  margin: 16px 0 8px;
  font-size: 1rem;
}

/* Toast */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #064e3b;
  border: 1px solid var(--emerald-400);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.4rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
