/* ==========================================================================
   AUTOSENDX MARKETING & PUBLIC PORTAL DESIGN SYSTEM
   Modern, High-Converting SaaS Aesthetics
   ========================================================================== */

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

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-sans);

  /* Brand Palette */
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-dark: #3730a3;
  --primary-light: #eef2ff;
  --primary-glow: rgba(79, 70, 229, 0.22);
  --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);

  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;

  /* Surfaces & Dark/Light Accents */
  --bg-main: #fafbfe;
  --surface-card: #ffffff;
  --surface-muted: #f1f5f9;
  --surface-dark: #0f172a;
  --surface-dark-card: #1e293b;
  --surface-glass: rgba(255, 255, 255, 0.82);

  --border-subtle: #e2e8f0;
  --border-card: #e5e7eb;
  --border-focus: #a5b4fc;

  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 10px 30px -4px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 20px 40px -6px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 35px rgba(79, 70, 229, 0.25);

  --container-max: 1200px;
  --nav-height: 74px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Atmospheric Glows */
.ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 600px;
  background: radial-gradient(circle 500px at 50% 10%, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Typography & Gradient Text ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.gradient-text {
  background: linear-gradient(135deg, #4f46e5 0%, #9333ea 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.2);
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.08);
}

.badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(79, 70, 229, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

/* ── Navigation Bar ──────────────────────────────────────────────────────── */
.pub-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: all 0.2s ease;
}

.pub-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.pub-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
  transition: transform 0.15s ease;
}

.pub-brand:hover {
  transform: translateY(-1px);
}

.pub-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.pub-navlinks {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pub-navlinks a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.18s ease;
  position: relative;
  padding: 0.35rem 0;
}

.pub-navlinks a:hover,
.pub-navlinks a.active {
  color: var(--primary);
}

.pub-navlinks a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.pub-auth-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary-pub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.45rem;
  background: var(--primary-gradient);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-pub:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.45);
}

.btn-secondary-pub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.45rem;
  background: #ffffff;
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}

.btn-secondary-pub:hover {
  background: var(--surface-muted);
  border-color: var(--border-focus);
  transform: translateY(-2px);
}

.btn-ghost-pub {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  transition: all 0.18s ease;
}

.btn-ghost-pub:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* Mobile Menu Toggle */
.pub-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.pub-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* ── Stats Bar ───────────────────────────────────────────────────────────── */
.stats-banner {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 5rem;
  text-align: center;
}

.stat-item .stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── Outreach Workflow & Interactive Simulator ───────────────────────────── */
.simulator-section {
  background: #0f172a;
  color: #f8fafc;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  margin-bottom: 6rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
  position: relative;
  overflow: hidden;
}

.simulator-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.sim-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.sim-header h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.sim-header p {
  color: #94a3b8;
  font-size: 1.05rem;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.sim-mockup-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #334155;
  padding-bottom: 0.85rem;
  margin-bottom: 1rem;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.email-meta-line {
  font-size: 0.825rem;
  color: #94a3b8;
  margin-bottom: 0.4rem;
  display: flex;
  gap: 0.5rem;
}

.email-meta-line strong {
  color: #cbd5e1;
}

.email-body-preview {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  font-size: 0.875rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin: 1rem 0;
}

.token-highlight {
  background: rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 600;
}

.mockup-attachment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #1e293b;
  border: 1px dashed #475569;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* Interview Schedule Notification Mockup */
.interview-card-preview {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.interview-notification {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.interview-icon {
  font-size: 1.6rem;
}

.interview-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.interview-desc {
  font-size: 0.825rem;
  color: #94a3b8;
  line-height: 1.4;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: #0f172a;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  border: 1px solid #1e293b;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
}

.step-status-ok {
  color: #34d399;
  font-weight: 600;
}

/* ── Feature Cards & Value Pillars ───────────────────────────────────────── */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.22s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-focus);
}

.feature-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

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

/* ── Step-By-Step Job & Interview Process (Feature Page) ─────────────────── */
.how-it-works-flow {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin: 4rem 0 6rem;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.step-row.reverse {
  direction: rtl;
}

.step-row.reverse > * {
  direction: ltr;
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.step-info h3 {
  font-size: 2rem;
  color: var(--text-primary);
}

.step-info p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.step-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.step-highlights li span.check {
  color: var(--accent-emerald);
  font-weight: 700;
}

.step-visual {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

/* ── Pricing Page & Limitations ─────────────────────────────────────────── */
.pricing-header {
  text-align: center;
  max-width: 760px;
  margin: 4rem auto 2.5rem;
}

.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 3.5rem;
}

.toggle-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.toggle-label.active {
  color: var(--text-primary);
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--surface-muted);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-switch.annual {
  background: var(--primary);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-switch.annual .toggle-slider {
  transform: translateX(24px);
}

.save-discount-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s ease;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  background: #ffffff;
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 40px;
  margin-bottom: 1.25rem;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.plan-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Limitations Box Inside Pricing Card */
.plan-limitations-box {
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  margin-bottom: 1.25rem;
}

.limits-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #b91c1c;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.limits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #991b1b;
}

.limits-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Plan Features List */
.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.plan-features-list li span.check {
  color: var(--accent-emerald);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Comparison Table ────────────────────────────────────────────────────── */
.comparison-section {
  margin: 5rem 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 700;
  color: var(--text-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.table-feature-cat {
  background: #f1f5f9;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── FAQ Section ─────────────────────────────────────────────────────────── */
.faq-section {
  max-width: 820px;
  margin: 5rem auto;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── About Page Elements ─────────────────────────────────────────────────── */
.about-hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin: 4rem 0;
}

.story-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0 6rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.value-card h4 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  margin: 4rem 0 6rem;
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.2rem;
  color: #e0e7ff;
  max-width: 650px;
  margin: 0 auto 2.25rem;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-white {
  background: #ffffff;
  color: var(--primary) !important;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.pub-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4.5rem 0 2.5rem;
  margin-top: auto;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ── Mobile Responsive Styles ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pub-navlinks {
    display: none;
  }
  .pub-mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .sim-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .step-row,
  .step-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Mobile Drawer Overlay */
.pub-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pub-mobile-drawer.open {
  right: 0;
}

.pub-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
}

.pub-drawer-backdrop.open {
  display: block;
}
