/* ==========================================================================
   Emails Verification - Master Stylesheet
   Verifalia-Inspired Enterprise Clean Design System
   ========================================================================== */

:root {
  --primary: #5a8c24;
  --primary-color: #5a8c24;
  --primary-hover: #4d7a1e;
  --primary-light: #f1f7e9;
  --primary-dark: #3f6614;
  --accent-warm: #c2782b;
  --accent-warm-hover: #aa651f;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --light-text: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-focus: #8ab84d;
  --success: #5a8c24;
  --success-bg: #f1f7e9;
  --success-text: #325010;
  --error: #ef4444;
  --error-bg: #fef2f2;
  --error-text: #991b1b;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --warning-text: #92400e;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  --container-max: 1180px;
  --transition: all 0.2s ease-in-out;
}

/* CSS Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; letter-spacing: -0.025em; }
h2 { font-size: 2rem; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; }
p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-error { color: var(--error) !important; }
.text-warning { color: var(--warning) !important; }
.text-center { text-align: center; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
}

.brand-icon svg {
  display: block;
}

.brand-check {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.4rem;
}

.footer-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
  flex-shrink: 0;
}

.footer-brand-icon svg {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #334155;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
}

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

.nav-actions .btn-primary,
.nav-actions a[href*="signup"] {
  background-color: var(--accent-warm);
  color: #ffffff !important;
  border: 1px solid #b66a1d;
  box-shadow: 0 2px 4px rgba(199, 120, 39, 0.2);
}

.nav-actions .btn-primary:hover,
.nav-actions a[href*="signup"]:hover {
  background-color: var(--accent-warm-hover);
  box-shadow: 0 4px 12px rgba(199, 120, 39, 0.3);
  transform: translateY(-1px);
}

/* Responsive Mobile Navigation */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.35rem;
  line-height: 1;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover {
  background-color: var(--bg);
  border-color: #cbd5e1;
}

.mobile-toggle:active {
  transform: scale(0.94);
  background-color: var(--primary-light);
  color: var(--primary);
}

.mobile-nav-auth {
  display: none;
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary) !important;
  font-weight: 700;
}

.btn-white:hover {
  background-color: #f8fafc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.btn-danger {
  background-color: var(--error);
  color: #ffffff !important;
}

.btn-danger:hover {
  background-color: #dc2626;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Badges & Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #e2edd3;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-safe, .status-valid {
  background-color: var(--success-bg);
  color: var(--success-text);
  border: 1px solid #a7f3d0;
}

.status-invalid {
  background-color: var(--error-bg);
  color: var(--error-text);
  border: 1px solid #fecaca;
}

.status-risky, .status-warning {
  background-color: var(--warning-bg);
  color: var(--warning-text);
  border: 1px solid #fde68a;
}

/* ==========================================================================
   Hero Section (Landing Page)
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #0f172a;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-verify-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  max-width: 580px;
  margin: 0 auto 1rem;
  display: flex;
  box-shadow: 0 10px 25px -5px rgba(111, 159, 40, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.hero-verify-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.85rem 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
  background: transparent;
}

.hero-verify-input::placeholder {
  color: #94a3b8;
}

.hero-microcopy {
  font-size: 0.88rem;
  color: #64748b;
  margin-top: 0.75rem;
}

.hero-verify-result {
  max-width: 580px;
  margin: 1.25rem auto 0;
  text-align: left;
}

/* ==========================================================================
   Features Grid Section
   ========================================================================== */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

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

.feature-icon-wrapper {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.feature-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Social Proof / Stats Split Card
   ========================================================================== */
.social-proof-section {
  padding: 2rem 0 4rem;
}

.proof-split-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.proof-left h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.proof-left p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

.proof-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
}

/* ==========================================================================
   Call To Action Banner
   ========================================================================== */
.cta-banner-section {
  padding: 1rem 0 5rem;
}

.cta-banner-card {
  background: linear-gradient(135deg, #538118 0%, #6f9f28 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 15px 30px -5px rgba(111, 159, 40, 0.3);
}

.cta-banner-card h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner-card p {
  color: #eef6e4;
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   Fat Universal Footer
   ========================================================================== */
.site-footer {
  background-color: #6a9926;
  color: #ffffff;
  padding: 4.5rem 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: #eef6e4;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.site-footer a {
  color: #eef6e4;
  text-decoration: none;
  transition: var(--transition);
}

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

.site-footer p {
  color: #eef6e4;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  color: #eef6e4;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.quick-link-item a {
  color: #eef6e4;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.quick-link-item a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: #eef6e4;
  font-size: 0.95rem;
}

.footer-contact-info a {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-info a:hover {
  text-decoration: underline;
}

.footer-badge-text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #dceec6;
  font-weight: 500;
}

.footer-bottom-bar {
  background-color: #2b3035;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom-bar p {
  color: #9aa2a9;
  font-size: 0.9rem;
}

/* ==========================================================================
   Subpages Hero & Content (.page-hero, .page-content)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #446a13 0%, #6f9f28 100%);
  color: #ffffff;
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: #e0e7ff;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 4rem 0 5rem;
}

/* ==========================================================================
   Pricing Page
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 1rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 25px -5px rgba(111, 159, 40, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
}

.pricing-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 1rem 0 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-credits {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #334155;
}

.pricing-check {
  color: var(--success);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ==========================================================================
   How It Works (3 Steps & SEO FAQ)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #e2edd3;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: #64748b;
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Auth Pages (Login & Signup) & Modals
   ========================================================================== */
.auth-wrapper {
  min-height: calc(100vh - 4.5rem - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.auth-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111, 159, 40, 0.15);
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: none;
}

.alert-error {
  background-color: var(--error-bg);
  border: 1px solid #fecaca;
  color: var(--error-text);
}

.alert-success {
  background-color: var(--success-bg);
  border: 1px solid #a7f3d0;
  color: var(--success-text);
}

.google-auth-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: #ffffff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  margin-top: 0.25rem;
}

.google-auth-btn:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.google-auth-btn:active {
  background-color: #f1f5f9;
  transform: translateY(1px);
}

.google-auth-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.auth-divider span {
  padding: 0 0.85rem;
}

/* ==========================================================================
   Authenticated Dashboard Workspace
   ========================================================================== */
#auth-dashboard,
.dashboard-page {
  display: block;
  padding: 2.5rem 0 4.5rem;
  background-color: var(--bg-alt);
  min-height: 80vh;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.dashboard-greeting h1 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.dashboard-greeting p {
  font-size: 0.95rem;
  color: #64748b;
}

.dashboard-credit-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.credit-counter {
  text-align: right;
}

.credit-counter .credit-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.credit-counter .credit-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* API Key Card */
.api-key-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.api-key-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.api-key-card p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.api-key-box {
  display: flex;
  gap: 0.75rem;
  max-width: 680px;
  align-items: center;
  flex-wrap: wrap;
}

.api-key-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
}

.api-key-input {
  width: 100%;
  font-family: var(--font-mono);
  background-color: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  color: #1e293b;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.api-key-input:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
}

.api-key-input[type="password"] {
  letter-spacing: 2px;
}

#dash-toggle-key-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

#dash-copy-key-btn {
  white-space: nowrap;
}

/* Verification Grid */
.verification-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.dashboard-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.dashboard-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.dashboard-card p.card-desc {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

/* Drag and Drop Zone */
.dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: #f8fafc;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 1.25rem;
}

.dropzone.dragover, .dropzone:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.dropzone-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.dropzone-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.dropzone-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Progress bar */
.progress-container {
  margin: 1.25rem 0;
  display: none;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

/* Bulk Results Table */
.results-table-container {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

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

.results-table th {
  background-color: #f8fafc;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #334155;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 2;
}

.results-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
}

.results-summary-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
}

.summary-badges {
  display: flex;
  gap: 0.5rem;
}

/* Inline Single Verification Card */
.result-box {
  background-color: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-top: 1.25rem;
  display: none;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border);
}

.result-row:last-child {
  border-bottom: none;
}

.result-label {
  color: var(--text-muted);
}

.result-value {
  font-weight: 600;
  color: var(--text);
}

/* Status Guide Legend Card */
.status-guide-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.status-guide-header {
  margin-bottom: 1.15rem;
}

.status-guide-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.status-guide-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.status-guide-flex {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  justify-content: space-between;
}

.status-guide-item {
  flex: 1;
  min-width: 0;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.status-guide-item:hover {
  border-color: #cbd5e1;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.status-guide-badge-wrap {
  margin-bottom: 0.65rem;
}

.status-guide-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Standard Content Pages (About, Contact, Privacy, Terms)
   ========================================================================== */
.prose-container {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-sm);
}

.prose-container h2 {
  font-size: 1.65rem;
  margin: 2rem 0 0.85rem;
  color: #0f172a;
}

.prose-container h2:first-child {
  margin-top: 0;
}

.prose-container p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.prose-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #475569;
}

.prose-container ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  animation: slideIn 0.25s ease forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Breakpoints - Consolidated in master media section */

/* ==========================================================================
   Enterprise B2B "How It Works" Feature Page Styles
   ========================================================================== */
.hiw-hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at 10% 20%, rgba(241, 247, 233, 0.7) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}

.hiw-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hiw-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hiw-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hiw-hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Wireframe Dashboard Mockup */
.hiw-mockup-wrapper {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  font-family: var(--font);
}

.hiw-mockup-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hiw-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.hiw-mockup-dot.red { background: #ef4444; }
.hiw-mockup-dot.yellow { background: #f59e0b; }
.hiw-mockup-dot.green { background: #10b981; }

.hiw-mockup-url {
  font-size: 0.78rem;
  color: #64748b;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  margin-left: 0.5rem;
  flex: 1;
  font-family: var(--font-mono);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hiw-mockup-body {
  padding: 1.5rem;
  background: #ffffff;
}

.hiw-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hiw-mockup-stat {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}

.hiw-mockup-stat-num {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}
.hiw-mockup-stat-num.safe { color: var(--success); }
.hiw-mockup-stat-num.primary { color: var(--primary); }

.hiw-mockup-stat-label {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.2rem;
}

.hiw-mockup-console {
  background: #0f172a;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.hiw-mockup-console-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #1e293b;
  padding: 0.4rem 0;
}
.hiw-mockup-console-row:last-child {
  border-bottom: none;
}

.hiw-console-code {
  color: #9ecb5d;
}
.hiw-console-ok {
  color: #34d399;
  font-weight: 600;
}

/* Horizontal Step-by-Step Flow */
.hiw-flow-section {
  padding: 4.5rem 0 3.5rem;
  background: #ffffff;
}

.hiw-flow-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.hiw-flow-header h2 {
  font-size: 2.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.hiw-flow-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hiw-flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hiw-flow-step {
  flex: 1;
  text-align: center;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  transition: var(--transition);
}

.hiw-flow-step:hover {
  border-color: var(--border-focus);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.hiw-step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid #c8dfa5;
}

.hiw-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.hiw-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hiw-flow-arrow {
  color: #94a3b8;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
  user-select: none;
  padding: 0 0.25rem;
}

/* Dark Security & Trust Banner */
.hiw-dark-banner {
  background: #0f172a;
  color: #ffffff;
  padding: 3.5rem 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

.hiw-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hiw-security-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.hiw-security-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(111, 159, 40, 0.18);
  border: 1px solid rgba(147, 197, 253, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.hiw-security-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.hiw-security-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Categorized Feature Grids */
.hiw-categories-container {
  padding: 4.5rem 0 3rem;
}

.hiw-category-section {
  margin-bottom: 4rem;
}

.hiw-category-bar {
  background: #f1f7e9;
  border: 1px solid #c8dfa5;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hiw-category-title {
  color: #4d7416;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hiw-category-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #e2edd3;
  color: #4d7416;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.hiw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.hiw-feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.hiw-feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hiw-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.hiw-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.hiw-card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

.hiw-text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.hiw-text-link:hover {
  color: var(--primary-dark);
}

/* Mid-Page Internal CTA Banner */
.hiw-mid-cta {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  text-align: center;
  margin: 3.5rem 0 4.5rem;
  font-size: 1.1rem;
  color: #334155;
  font-weight: 500;
}

.hiw-accent-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hiw-accent-link:hover {
  color: var(--primary-dark);
}

/* Bottom Massive CTA Block */
.hiw-bottom-cta {
  background: linear-gradient(135deg, #4d7416 0%, #6f9f28 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 4.5rem 2.5rem;
  text-align: center;
  margin: 4.5rem 0 2rem;
  box-shadow: 0 20px 25px -5px rgba(111, 159, 40, 0.25);
}

.hiw-bottom-cta h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hiw-bottom-cta p {
  font-size: 1.2rem;
  color: #e2edd3;
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

/* Responsive Overrides for How It Works */
@media (max-width: 992px) {
  .hiw-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hiw-hero-title {
    font-size: 2.5rem;
  }
  .hiw-flow-container {
    flex-direction: column;
    gap: 1.25rem;
  }
  .hiw-flow-step {
    width: 100%;
  }
  .hiw-flow-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }
  .hiw-dark-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hiw-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hiw-hero-title {
    font-size: 2.15rem;
  }
  .hiw-features-grid {
    grid-template-columns: 1fr;
  }
  .hiw-bottom-cta {
    padding: 3rem 1.5rem;
  }
  .hiw-bottom-cta h2 {
    font-size: 2rem;
  }
  .hiw-mockup-stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Enterprise Features Page Styles (Z-Pattern & Comprehensive Grid)
   ========================================================================== */
.features-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: radial-gradient(circle at 50% 10%, rgba(241, 247, 233, 0.8) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}

.features-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.features-hero-title {
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.features-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.features-hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Alternating Feature Highlights (Z-Pattern Layout) */
.z-pattern-section {
  padding: 5.5rem 0 4.5rem;
  background: #ffffff;
}

.z-pattern-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.z-pattern-row:last-child {
  margin-bottom: 0;
}

.z-pattern-row.reverse .z-pattern-content {
  order: 2;
}

.z-pattern-row.reverse .z-pattern-media {
  order: 1;
}

.z-pattern-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid #c8dfa5;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.z-pattern-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.z-pattern-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

.z-pattern-desc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.z-pattern-desc a:hover {
  color: var(--primary-dark);
}

/* Z-Pattern Visual Graphics */
.z-media-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.z-media-header {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.z-media-dots {
  display: flex;
  gap: 0.4rem;
}

.z-media-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.z-media-dot.red { background: #ef4444; }
.z-media-dot.yellow { background: #f59e0b; }
.z-media-dot.green { background: #10b981; }

.z-media-label {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: #64748b;
  font-weight: 500;
}

.z-media-body {
  padding: 1.75rem;
}

/* Console Simulation */
.z-terminal {
  background: #0f172a;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: #f1f5f9;
  line-height: 1.7;
}

.z-term-line {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.z-term-cmd { color: #9ecb5d; }
.z-term-ok { color: #34d399; font-weight: 700; }
.z-term-dim { color: #64748b; }

/* Bulk Progress Simulation */
.z-progress-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.z-progress-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 0.85rem;
}

.z-progress-bar-bg {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1.15rem;
}

.z-progress-bar-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6f9f28, #a3d95b);
  border-radius: 5px;
}

.z-progress-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  text-align: center;
}

.z-progress-pill {
  padding: 0.6rem 0.4rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
}
.z-progress-pill.safe { background: #dcfce7; color: #15803d; }
.z-progress-pill.risky { background: #fef9c3; color: #a16207; }
.z-progress-pill.invalid { background: #fee2e2; color: #b91c1c; }

/* Dark Trust/Stats Banner */
.features-stats-banner {
  background: #0f172a;
  color: #ffffff;
  padding: 4rem 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

.features-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.features-stat-card {
  padding: 0 1.5rem;
}

.features-stat-card:not(:last-child) {
  border-right: 1px solid #1e293b;
}

.features-stat-num {
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #a3d95b 0%, #82ba36 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.features-stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.35rem;
}

.features-stat-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Comprehensive Feature Grid */
.features-grid-section {
  padding: 5.5rem 0 4rem;
  background: #f8fafc;
}

.features-grid-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.features-grid-header h2 {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.features-grid-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.feature-box-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-box-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-box-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.feature-box-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.65rem;
}

.feature-box-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  flex-grow: 1;
}

.feature-text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
  display: inline-block;
  margin-top: 0.5rem;
}
.feature-text-link:hover {
  color: var(--primary-dark);
}

/* Bottom Internal CTA Block */
.features-bottom-banner {
  background: linear-gradient(135deg, #4d7416 0%, #6f9f28 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 4.5rem 2.5rem;
  text-align: center;
  margin: 4rem 0 2rem;
  box-shadow: 0 20px 25px -5px rgba(111, 159, 40, 0.25);
}

.features-bottom-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-bottom-member-text {
  font-size: 1.15rem;
  color: #e2edd3;
  margin-bottom: 2rem;
}

.features-bottom-cta-btn {
  display: inline-block;
}

/* Responsive Overrides for Features Page */
@media (max-width: 992px) {
  .features-hero-title {
    font-size: 2.5rem;
  }
  .z-pattern-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  .z-pattern-row.reverse .z-pattern-content {
    order: 1;
  }
  .z-pattern-row.reverse .z-pattern-media {
    order: 2;
  }
  .z-pattern-title {
    font-size: 1.85rem;
  }
  .features-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .features-stat-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 2rem;
  }
  .features-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-hero-title {
    font-size: 2.1rem;
  }
  .features-box-grid {
    grid-template-columns: 1fr;
  }
  .features-bottom-banner {
    padding: 3rem 1.5rem;
  }
  .features-bottom-banner h2 {
    font-size: 1.9rem;
  }
  .features-hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .features-hero-cta .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Blog Engine Styles (Blog Index & Article Template - Image-Free Editorial)
   ========================================================================== */
.blog-hero {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(241, 247, 233, 0.85) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}

.blog-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.blog-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.blog-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Category Navigation Pills */
.blog-cat-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.blog-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: #ffffff;
  color: #475569;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  text-decoration: none;
}

.blog-cat-pill:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.blog-cat-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(111, 159, 40, 0.22);
}

/* Blog Grid Section */
.blog-grid-section {
  padding: 4rem 0 5.5rem;
  background: #f8fafc;
}

.blog-grid-header {
  margin-bottom: 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-grid-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.blog-grid-count {
  font-size: 0.92rem;
  color: #64748b;
  font-weight: 500;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Image-Free Editorial Blog Cards */
.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -8px rgba(111, 159, 40, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  gap: 0.5rem;
}

/* Category Badges (Mini Caps) */
.blog-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-full);
  line-height: 1;
}

.blog-badge.deliverability {
  background: #f1f7e9;
  color: #5e8b1e;
  border: 1px solid #c8dfa5;
}

.blog-badge.best-practices {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.blog-badge.developer-api {
  background: #f5f3ff;
  color: #6d28d9;
  border: 1px solid #ddd6fe;
}

.blog-badge.case-studies {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.blog-badge.email-marketing {
  background: #faf5ff;
  color: #7e22ce;
  border: 1px solid #e9d5ff;
}

.blog-badge.product-updates {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.blog-card-readtime {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover,
.blog-card:hover .blog-card-title {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #64748b;
  gap: 0.5rem;
  margin-top: auto;
}

.blog-card-author {
  font-weight: 600;
  color: #334155;
}

.blog-card-meta-dot {
  color: #cbd5e1;
}

.blog-card-date {
  color: #64748b;
  font-weight: 400;
}

/* ==========================================================================
   Article Template Styles (blog-template.html - Image-Free Editorial)
   ========================================================================== */
.article-page {
  padding: 3.5rem 0 5.5rem;
  background: #ffffff;
}

.article-breadcrumb {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.article-breadcrumb a:hover {
  color: var(--primary);
}

.article-breadcrumb .breadcrumb-sep {
  color: #94a3b8;
}

.article-breadcrumb .active-crumb {
  color: #0f172a;
  font-weight: 600;
}

.article-header {
  margin-bottom: 2.5rem;
}

.article-category-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.article-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.18;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #64748b;
  font-size: 0.95rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.article-meta-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.article-author-name {
  font-weight: 600;
  color: #0f172a;
}

.article-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f1f5f9;
  border: 1px solid var(--border);
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-share-btn:hover {
  background: #f1f7e9;
  border-color: #c8dfa5;
  color: var(--primary);
}

/* 2-Column Layout (Sidebar 260px, Main Content) */
.article-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2.25rem;
}

/* Sidebar Styles */
.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-widget {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.toc-link {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.45;
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.toc-link:hover,
.toc-link.active {
  color: var(--primary);
  background: #f1f7e9;
  border-left-color: var(--primary);
  font-weight: 600;
}

.sidebar-promo {
  background: linear-gradient(135deg, #4d7416 0%, #6f9f28 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.35rem;
  text-align: center;
  box-shadow: 0 10px 20px -5px rgba(111, 159, 40, 0.25);
}

.sidebar-promo h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.sidebar-promo p {
  font-size: 0.86rem;
  color: #e2edd3;
  line-height: 1.5;
  margin-bottom: 1.15rem;
}

/* Main Content Area */
.article-main {
  min-width: 0; /* Prevent grid blowout */
}

/* Key Takeaways / TL;DR Callout Box */
.article-tldr-box {
  background: #f1f7e9;
  border: 1px solid #c8dfa5;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}

.article-tldr-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.article-tldr-icon {
  font-size: 1.1rem;
}

.article-tldr-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e3a8a;
  margin: 0;
  letter-spacing: -0.01em;
}

.article-tldr-list {
  margin: 0;
  padding-left: 1.35rem;
  color: #4d7416;
}

.article-tldr-list li {
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.article-tldr-list li:last-child {
  margin-bottom: 0;
}

.article-tldr-list strong {
  color: #172554;
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.85;
  color: #334155;
}

.article-body h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 2.75rem 0 1.15rem;
  line-height: 1.25;
  scroll-margin-top: 100px;
}

.article-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.015em;
  margin: 2rem 0 0.85rem;
  line-height: 1.35;
  scroll-margin-top: 100px;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.65rem;
  padding-left: 1.65rem;
}

.article-body li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.article-body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.article-body a:hover {
  color: var(--primary-dark);
}

.article-body blockquote {
  border-left: 4px solid var(--primary);
  background: #f8fafc;
  padding: 1.35rem 1.65rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2.25rem 0;
  font-style: italic;
  font-size: 1.12rem;
  color: #1e293b;
  line-height: 1.65;
}

/* Editorial Callout Box inside article */
.article-callout {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.65rem;
  margin: 2.25rem 0;
}

.article-callout h4 {
  color: #065f46;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.article-callout p {
  color: #334155;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Author Bio Card (Image-Free Editorial) */
.article-author-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 3.5rem 0 2rem;
}

.author-bio-avatar-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f1f7e9;
  border: 2px solid #c8dfa5;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-bio-info h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.author-bio-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.author-bio-desc {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Recommended Reading Section (Image-Free) */
.related-posts-section {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.related-posts-header {
  margin-bottom: 2rem;
  text-align: left;
}

.related-posts-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Responsive Overrides for Blog */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .article-sidebar {
    position: static;
  }
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero-title {
    font-size: 2.25rem;
  }
  .article-title {
    font-size: 2.1rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  .article-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Pricing FAQs & Need Help Section
   ========================================================================== */
.pricing-faq-container {
  display: grid;
  grid-template-columns: 65% calc(35% - 3rem);
  gap: 3rem;
  align-items: start;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.pricing-faq-left {
  width: 100%;
}

.pricing-faq-left h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.pricing-faq-container .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 2.5rem;
}

.pricing-faq-container .faq-item {
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  overflow: visible;
  padding: 0;
}

.pricing-faq-container .faq-item h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.65rem;
}

.pricing-faq-container .faq-item p {
  color: var(--light-text);
  font-size: 0.96rem;
  line-height: 1.65;
  display: block;
}

/* Right Side: Need Help Box */
.pricing-help-box {
  background-color: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.pricing-help-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.pricing-help-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-help-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.pricing-help-content {
  flex: 1;
}

.pricing-help-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.pricing-help-content p {
  font-size: 0.92rem;
  color: var(--light-text);
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.pricing-help-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.pricing-help-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 850px) {
  .pricing-faq-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3.5rem;
  }

  .pricing-faq-container .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   Enterprise SaaS Landing Page (index.html #landing-view)
   ========================================================================== */

/* --- 1. Hero Section (Centered High-Impact Layout) --- */
.hero-enterprise {
  padding: 5.5rem 0 4.25rem;
  text-align: center;
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f1f7e9;
  border: 1px solid #c8dfa5;
  color: #5e8b1e;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-content .hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.4rem;
  text-align: center;
}

.hero-content .hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  text-align: center;
  max-width: 680px;
}

.hero-verify-box {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 0.45rem 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 28px -6px rgba(111, 159, 40, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
  max-width: 660px;
  width: 100%;
  margin: 0 auto 1.25rem;
}

.hero-verify-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111, 159, 40, 0.2);
}

.hero-input-group {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 0.75rem;
}

.hero-input-icon {
  font-size: 1.1rem;
  margin-right: 0.5rem;
  color: #94a3b8;
}

.hero-verify-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.85rem 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
  background: transparent;
  width: 100%;
}

.hero-btn {
  padding: 0.85rem 1.65rem;
  font-size: 0.98rem;
  font-weight: 700;
  gap: 0.45rem;
  flex-shrink: 0;
}

.hero-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: #64748b;
  flex-wrap: wrap;
  margin: 0 auto;
}

.hero-microcopy .check-icon {
  color: #16a34a;
  font-weight: 700;
}

.hero-microcopy .microcopy-sep {
  color: #cbd5e1;
}

.hero-verify-result {
  max-width: 660px;
  width: 100%;
  margin: 1.5rem auto 0;
  text-align: left;
}

/* --- Hero Live Mockup Card (Pure CSS) --- */
.hero-mockup-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-mockup-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.16);
}

.mockup-header {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-window-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.win-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.win-dot.red { background-color: #ef4444; }
.win-dot.yellow { background-color: #f59e0b; }
.win-dot.green { background-color: #10b981; }

.mockup-header-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: -0.01em;
}

.mockup-header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.pulse-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
}

.mockup-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #ffffff;
  transition: var(--transition);
  gap: 0.75rem;
}

.mockup-row:hover {
  background: #f8fafc;
}

.mockup-row-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.mockup-avatar-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mockup-avatar-badge.safe {
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.mockup-avatar-badge.blocked {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.mockup-avatar-badge.risky {
  background-color: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}

.mockup-row-info {
  min-width: 0;
}

.mockup-email {
  font-family: var(--font-mono, monospace);
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-meta {
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.mock-badge .badge-icon {
  font-size: 0.6rem;
}

.mock-badge-safe {
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.mock-badge-blocked {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.mock-badge-risky {
  background-color: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.mockup-footer {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 0.82rem;
}

.mockup-footer-stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mockup-footer-stat .stat-label {
  color: #64748b;
}

.mockup-footer-stat .stat-val {
  font-weight: 700;
}

.mockup-footer-divider {
  width: 1px;
  height: 16px;
  background-color: var(--border);
}

/* --- 2. Trust Logo Bar (Social Proof) --- */
.trust-logo-bar {
  background-color: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}

.trust-logo-bar-label {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.trust-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: var(--transition);
}

.trust-logo-item:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.trust-logo-mark {
  color: var(--primary);
  font-size: 1.15rem;
  opacity: 0.85;
}

/* --- 3. Product Deep-Dives (Pure CSS Mockups) --- */
.product-deep-dives-section {
  padding: 5.5rem 0 4.5rem;
  background: #ffffff;
}

.deep-dive-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.deep-dive-row:last-child {
  margin-bottom: 0;
}

.deep-dive-row.reverse .deep-dive-mockup {
  order: 1;
}

.deep-dive-row.reverse .deep-dive-text {
  order: 2;
}

.deep-dive-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: #f1f7e9;
  border: 1px solid #c8dfa5;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.deep-dive-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.deep-dive-copy {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.deep-dive-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.deep-dive-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.96rem;
  color: #334155;
  line-height: 1.55;
}

.bullet-check {
  color: #16a34a;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.3;
}

.deep-dive-cta {
  margin-top: 1rem;
}

/* CSS Table Mockup */
.css-table-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.css-table-header {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-file-info {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1e293b;
}

.table-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-full);
}

.table-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
}

.css-table-tabs {
  display: flex;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  padding: 0.35rem 1rem 0;
  gap: 0.35rem;
  overflow-x: auto;
}

.table-tab {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  padding: 0.4rem 0.75rem;
  border-radius: 6px 6px 0 0;
  cursor: default;
  white-space: nowrap;
}

.table-tab.active {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border);
  border-bottom: 1px solid #ffffff;
  margin-bottom: -1px;
}

.css-table-wrapper {
  overflow-x: auto;
}

.css-preview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  text-align: left;
}

.css-preview-table th {
  background: #f8fafc;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.74rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
}

.css-preview-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: middle;
}

.css-preview-table tr:hover {
  background: #f8fafc;
}

.email-cell {
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  color: #0f172a;
}

.check-valid {
  color: #15803d;
  font-weight: 600;
}

.check-invalid {
  color: #b91c1c;
  font-weight: 600;
}

.check-warning {
  color: #b45309;
  font-weight: 600;
}

.check-dim {
  color: #94a3b8;
}

.css-table-footer {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
}

.export-tag {
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

/* CSS Dark Code Terminal Mockup */
.css-terminal-card {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  font-family: var(--font-mono, monospace);
}

.terminal-header {
  background: #1e293b;
  border-bottom: 1px solid #334155;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-title {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 500;
}

.terminal-badge {
  background: #334155;
  color: #e2e8f0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.terminal-body {
  padding: 1.25rem;
  color: #f1f5f9;
  font-size: 0.85rem;
  line-height: 1.65;
}

.terminal-comment {
  color: #64748b;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.terminal-command {
  color: #e2e8f0;
  margin-bottom: 0.25rem;
}

.terminal-command.indent {
  padding-left: 1.5rem;
}

.t-cmd { color: #a3d95b; font-weight: 700; }
.t-url { color: #fcd34d; }
.t-str { color: #34d399; }

.terminal-divider {
  height: 1px;
  background: #334155;
  margin: 1rem 0;
}

.terminal-json {
  margin: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 0.85rem;
  color: #e2e8f0;
}

.json-key { color: #a3d95b; }
.json-str { color: #34d399; }
.json-bool { color: #f472b6; font-weight: 700; }
.json-num { color: #fbbf24; font-weight: 700; }

/* --- 4. Core Features Section --- */
.features-section {
  padding: 5rem 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.feature-card.enterprise-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card.enterprise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.shield-icon-wrap { background-color: #f1f7e9; color: #6f9f28; }
.catchall-icon-wrap { background-color: #fef3c7; color: #b45309; }
.trash-icon-wrap { background-color: #fee2e2; color: #dc2626; }

.feature-emoji {
  font-size: 1.85rem;
}

.feature-card.enterprise-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-card.enterprise-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.feature-card-footer {
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.feature-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

/* --- 5. Social Proof / Testimonials --- */
.testimonials-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.testimonial-stars {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-size: 1rem;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.75rem;
  flex: 1;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.testimonial-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-role {
  font-size: 0.82rem;
  color: #64748b;
}

/* ==========================================================================
   Master Responsive & Mobile Perfection Engine
   ========================================================================== */

/* Menu Animation */
@keyframes mobileDrawerSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile backdrop overlay for clean dismiss */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  touch-action: none;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   Breakpoints: Tablets & Medium Devices (<= 992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content .hero-title {
    font-size: 2.85rem;
    text-align: center;
  }

  .hero-content .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-verify-box {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-microcopy {
    justify-content: center;
  }

  .features-grid, 
  .pricing-grid, 
  .steps-grid, 
  .footer-grid, 
  .verification-grid, 
  .contact-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .deep-dive-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .deep-dive-row.reverse .deep-dive-mockup {
    order: 2;
  }

  .deep-dive-row.reverse .deep-dive-text {
    order: 1;
  }

  .proof-split-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.75rem;
  }

  .trust-logo-row {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hiw-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hiw-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------------------------
   Breakpoints: Mobile Phones & Phablets (<= 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Prevent iOS automatic zooming on inputs */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  textarea,
  select {
    font-size: 16px !important;
  }

  /* Safe container paddings */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  /* Sticky Navigation Header & Touch Menu */
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
  }

  .nav-container {
    height: 4.25rem;
    position: relative;
  }

  .brand-logo {
    font-size: 1.22rem;
    gap: 0.5rem;
  }

  .brand-icon svg {
    width: 20px;
    height: 20px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  /* Hide desktop inline auth in header on mobile to prevent crowding */
  .nav-actions {
    display: none !important;
  }

  /* Slide-Down Mobile Drawer */
  .nav-links {
    display: none;
    position: absolute;
    top: 4.25rem;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    gap: 0.35rem;
    z-index: 100;
    max-height: calc(100vh - 4.25rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: mobileDrawerSlide 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    border-radius: var(--radius-sm);
    transition: background-color 0.15s ease, color 0.15s ease;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link:active,
  .nav-links .nav-link.active {
    background-color: var(--primary-light);
    color: var(--primary);
  }

  .nav-links .nav-link.active::after {
    display: none;
  }

  /* Mobile Auth Action Block inside Navigation Drawer */
  .mobile-nav-auth {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    width: 100%;
  }

  .mobile-nav-auth .btn {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
    justify-content: center;
  }

  /* Hero Section & Verification Widget */
  .hero-section {
    padding: 3rem 0 2.5rem;
  }

  .hero-title,
  .hero-content .hero-title {
    font-size: clamp(2rem, 6.5vw, 2.65rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-subtitle,
  .hero-content .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    text-align: center;
  }

  .hero-verify-box {
    flex-direction: column;
    padding: 0.65rem;
    border-radius: var(--radius-md);
    gap: 0.5rem;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
  }

  .hero-input-group {
    width: 100%;
    padding: 0.25rem 0.5rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero-verify-input {
    width: 100%;
    padding: 0.65rem 0.5rem;
    min-height: 48px;
  }

  .hero-btn {
    width: 100%;
    min-height: 48px;
    font-size: 1.05rem;
    justify-content: center;
  }

  .hero-microcopy {
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    justify-content: center;
    font-size: 0.82rem;
    margin-top: 1.15rem;
  }

  .hero-microcopy .microcopy-sep {
    display: none;
  }

  .microcopy-item {
    background: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }

  /* Social Proof Bar */
  .trust-logo-bar {
    padding: 2.25rem 0;
  }

  .trust-logo-bar-label {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .trust-logo-row {
    gap: 1.25rem 2rem;
  }

  /* Product Deep-Dives & Content Blocks */
  .deep-dive-tag {
    font-size: 0.78rem;
  }

  .deep-dive-title {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .deep-dive-copy {
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .deep-dive-bullet {
    gap: 0.75rem;
    font-size: 0.92rem;
  }

  /* Interactive Data Table Mockup */
  .css-table-card {
    border-radius: var(--radius-md);
  }

  .css-table-header {
    padding: 0.85rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .css-table-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
  }

  .css-table-tabs::-webkit-scrollbar {
    display: none;
  }

  .table-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .css-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .css-preview-table {
    min-width: 480px;
    width: 100%;
  }

  .css-table-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0.85rem 1rem;
  }

  /* Code & API Terminal */
  .terminal-header {
    padding: 0.75rem 1rem;
  }

  .terminal-title {
    font-size: 0.8rem;
  }

  .terminal-body {
    padding: 1rem 0.85rem;
    font-size: 0.82rem;
  }

  .terminal-json {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.8rem;
    padding: 0.75rem 0;
  }

  /* Testimonials Grid */
  .testimonial-quote-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Pricing Cards */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .pricing-card {
    max-width: 100%;
    padding: 2rem 1.35rem;
  }

  .pricing-card.featured {
    transform: none !important;
    border-width: 2px;
  }

  .plan-btn, .btn-plan {
    width: 100%;
    min-height: 48px;
  }

  /* FAQ Accordion */
  .faq-item summary,
  .faq-question {
    min-height: 48px;
    padding: 1rem 0.5rem;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 0.5rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Auth Pages (Login, Signup, Forgot Password) */
  .auth-wrapper {
    padding: 2rem 1rem;
  }

  .auth-card {
    max-width: 100%;
    padding: 2rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
  }

  .auth-header h1 {
    font-size: 1.75rem;
  }

  .auth-form .form-group {
    margin-bottom: 1.15rem;
  }

  .auth-form input {
    min-height: 48px;
  }

  .auth-form .btn-submit,
  .auth-btn {
    min-height: 48px;
    width: 100%;
    font-size: 1.05rem;
  }

  .social-auth-btn {
    min-height: 48px;
    width: 100%;
  }

  /* Dashboard View on Mobile */
  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .dashboard-credit-box {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.15rem;
  }

  .dashboard-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.25rem;
  }

  .dashboard-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  .dashboard-card {
    padding: 1.5rem 1rem;
  }

  .api-key-box {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .api-key-actions {
    width: 100%;
    display: flex;
    gap: 0.5rem;
  }

  .api-key-actions .btn {
    flex: 1;
    min-height: 44px;
    justify-content: center;
  }

  .dropzone {
    padding: 2.25rem 1rem;
  }

  .history-table-wrapper,
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .history-table,
  .dashboard-table {
    min-width: 520px;
  }

  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }

  /* Universal Olive Green Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   Breakpoints: Small Phones & Compact Displays (<= 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-logo {
    font-size: 1.12rem;
    gap: 0.4rem;
  }

  .hero-title,
  .hero-left-col .hero-title {
    font-size: 1.95rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.65rem 1.15rem;
  }

  .hero-microcopy {
    flex-direction: column;
    align-items: center;
  }

  .microcopy-item {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


