/* ==========================================================================
   INVOQRA — GLOBAL DESIGN SYSTEM & MAIN STYLESHEET
   ========================================================================== */

:root {
  /* Color Palette Tokens */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --accent-color: #2563eb;
  --accent-light: rgba(37, 99, 235, 0.08);

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --success: #10b981;
  --success-hover: #059669;
  --warning: #f59e0b;
  --danger: #ef4444;
  --danger-hover: #dc2626;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', 'Space Grotesk', sans-serif;

  /* Spacing & Layout */
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-paper: 0 10px 30px rgba(15, 23, 42, 0.1);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-900);
  line-height: 1.25;
  font-weight: 700;
}

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

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

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--slate-500); }
.text-success { color: var(--success); }
.text-primary { color: var(--primary); }
.w-100 { width: 100%; }

.hidden { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  user-select: none;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-xs {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--slate-200);
  color: var(--slate-800);
}
.btn-secondary:hover {
  background-color: var(--slate-300);
  color: var(--slate-900);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

.btn-outline-secondary {
  background-color: transparent;
  border-color: var(--slate-300);
  color: var(--slate-700);
}
.btn-outline-secondary:hover {
  background-color: var(--slate-100);
  border-color: var(--slate-400);
}

.btn-outline-danger {
  background-color: transparent;
  border-color: var(--slate-300);
  color: var(--danger);
}
.btn-outline-danger:hover {
  background-color: #fef2f2;
  border-color: var(--danger);
}

.btn-danger {
  background-color: var(--danger);
  color: #ffffff;
}
.btn-danger:hover {
  background-color: var(--danger-hover);
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-logo-img {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.site-logo-img:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 48px;
  margin-bottom: 0.75rem;
  background: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .site-logo-img {
    height: 38px;
    max-width: 180px;
  }
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--slate-700);
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-200);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--slate-600);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(100% 100% at 50% 0%, rgba(37, 99, 235, 0.06) 0%, rgba(248, 250, 252, 0) 100%);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.hero-title {
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subheading {
  font-size: 1.2rem;
  color: var(--slate-600);
  max-width: 680px;
  margin: 0 auto 2rem;
}

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

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item i {
  color: var(--success);
}

/* Toast Notifications Container */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  animation: slideInRight 0.3s ease;
}

.toast-danger { border-left-color: var(--danger); }
.toast-success { border-left-color: var(--success); }
.toast-warning { border-left-color: var(--warning); }

.toast-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.toast-danger .toast-icon { color: var(--danger); }
.toast-success .toast-icon { color: var(--success); }

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-900);
  margin-bottom: 0.15rem;
}

.toast-msg {
  font-size: 0.825rem;
  color: var(--slate-600);
}

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

/* Cards & Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.sub-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
}

.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--slate-200);
}

.card-header h3 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-body {
  padding: 1.5rem;
}

/* Templates Showcase Section */
.templates-showcase-section {
  padding: 5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.template-card {
  background-color: var(--slate-50);
  border-radius: var(--radius-lg);
  border: 2px solid var(--slate-200);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.template-card:hover, .template-card.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.template-preview-frame {
  height: 220px;
  background-color: var(--slate-200);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-template {
  width: 160px;
  height: 190px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mini-header { height: 24px; border-radius: 2px; }
.mini-header-clean { height: 16px; background-color: var(--slate-300); border-radius: 2px; }
.mini-header-box { height: 28px; background-color: var(--slate-100); border-radius: 2px; }

.mini-lines { display: flex; flex-direction: column; gap: 4px; }
.mini-line { height: 6px; background-color: var(--slate-200); border-radius: 2px; }
.mini-line.w-40 { width: 40%; }
.mini-line.w-50 { width: 50%; }
.mini-line.w-60 { width: 60%; }
.mini-line.w-70 { width: 70%; }
.mini-line.w-80 { width: 80%; }

.mini-table { height: 60px; background-color: var(--slate-100); margin-top: auto; border-radius: 2px; }
.mini-table-clean { height: 60px; border: 1px dashed var(--slate-300); margin-top: auto; border-radius: 2px; }
.mini-table-boxed { height: 60px; background-color: var(--slate-200); margin-top: auto; border-radius: 2px; }

.template-card-body {
  padding: 1.5rem;
}

.template-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.template-card-body p {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  position: relative;
}

.step-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-300);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.925rem;
  color: var(--slate-600);
}

/* SEO Niche Solutions Section */
.seo-niches-section {
  padding: 5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--slate-200);
}

.niche-chips-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.niche-chip {
  background-color: var(--slate-100);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.niche-chip:hover, .niche-chip.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.niche-content-card {
  padding: 2.5rem;
}

.niche-content-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.niche-content-card p {
  font-size: 1rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
}

.niche-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.niche-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--slate-700);
}

.niche-feature-item i {
  color: var(--success);
  margin-top: 0.2rem;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 5rem 0;
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--slate-400);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

/* Privacy Section */
.privacy-section {
  padding: 3rem 0 5rem;
}

.privacy-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
  border-color: rgba(37, 99, 235, 0.2);
}

.privacy-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.privacy-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.privacy-content p {
  font-size: 0.975rem;
  color: var(--slate-700);
  margin-bottom: 1rem;
}

/* Monetization Roadmap */
.monetization-tiers-section {
  padding: 5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--slate-200);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tier-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier-card.active {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}

.tier-badge.secondary {
  background-color: var(--slate-600);
}

.tier-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

.tier-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--slate-500);
}

.tier-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tier-card ul li {
  font-size: 0.925rem;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Footer */
.site-footer {
  background-color: var(--slate-900);
  color: var(--slate-300);
  padding: 4rem 0 2rem;
}

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

.footer-brand .brand-logo {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-bottom: 1.5rem;
}

.footer-brand .copyright {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.footer-links-column h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-column a {
  color: var(--slate-400);
  font-size: 0.9rem;
}

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

/* Responsive Media Queries */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}

@media (max-width: 992px) {
  body {
    padding-bottom: 85px !important;
  }

  .nav-links { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
  .hero-title { font-size: 2.2rem; }
  .footer-container { display: flex !important; flex-direction: column !important; gap: 2rem !important; }
  .tiers-grid { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; }
  .site-footer { padding-bottom: calc(3rem + 75px) !important; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  body {
    padding-top: var(--header-height);
  }

  .container, .container-fluid, .nav-container, .hero-container, .generator-container, .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1.25rem !important; /* 20px side padding */
    padding-right: 1.25rem !important; /* 20px side padding */
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-section,
  .templates-section,
  .niches-section,
  .how-it-works-section,
  .faq-section,
  .privacy-section,
  .monetization-tiers-section,
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .templates-grid,
  .niches-grid,
  .steps-grid,
  .faq-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1.5rem !important;
  }

  .template-card,
  .niche-card,
  .step-card,
  .faq-item,
  .privacy-card,
  .tier-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-section {
    padding: 2.25rem 0 1.75rem !important;
  }

  .hero-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-subheading {
    font-size: 0.975rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 46px !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .trust-indicators {
    gap: 0.65rem !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .toast-container {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 5.5rem !important;
    max-width: none !important;
    width: calc(100% - 2rem) !important;
  }

  .toast {
    padding: 0.85rem 1rem !important;
    font-size: 0.875rem !important;
  }

  .mobile-drawer {
    width: 300px !important;
    max-width: 85vw !important;
  }

  .drawer-link {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .container, .container-fluid, .nav-container, .hero-container, .generator-container, .footer-container {
    padding-left: 1rem !important; /* 16px side padding */
    padding-right: 1rem !important; /* 16px side padding */
  }

  .site-logo-img {
    height: 32px !important;
    max-width: 135px !important;
  }

  .nav-cta {
    padding: 0.4rem 0.65rem !important;
    font-size: 0.8rem !important;
  }

  .hero-title {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }

  .hero-subheading {
    font-size: 0.9rem !important;
  }

  .btn {
    min-height: 44px !important;
  }
}

@media (max-width: 360px) {
  .container, .container-fluid, .nav-container, .hero-container, .generator-container, .footer-container {
    padding-left: 1rem !important; /* 16px side padding */
    padding-right: 1rem !important; /* 16px side padding */
  }

  .nav-cta {
    padding: 0.35rem 0.5rem !important;
    font-size: 0.75rem !important;
  }
}
