/* ==========================================================================
   IMMIGRATION PORTAL — ENTERPRISE LANDING PAGE STYLES (COMPACT & RESPONSIVE)
   ========================================================================== */

.landing-page-body {
  background-color: #0f172a;
  color: #f8fafc;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   1. STICKY NAVBAR
   -------------------------------------------------------------------------- */
.landing-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.landing-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.landing-brand-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 12px rgba(79, 70, 229, 0.4);
}

.landing-brand-text strong {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1.1;
}

.landing-brand-text span {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.landing-nav-link {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
}

.landing-nav-link:hover {
  color: #ffffff;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.landing-hero {
  padding: 105px 1.25rem 50px;
  background: radial-gradient(circle at 50% 10%, rgba(79, 70, 229, 0.2) 0%, rgba(15, 23, 42, 1) 70%);
  position: relative;
  overflow: hidden;
}

.landing-hero-container {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: 9999px;
  color: #c7d2fe;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.025em;
  max-width: 880px;
  margin: 0 auto 1rem;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #a5b4fc 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}

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

.btn-hero-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 20px -4px rgba(79, 70, 229, 0.45);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   3. LIVE SIMULATOR WIDGET
   -------------------------------------------------------------------------- */
.simulator-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  text-align: left;
}

.simulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.simulator-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.simulator-search-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.simulator-input {
  flex: 1;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.simulator-input:focus {
  border-color: #6366f1;
}

.simulator-quick-pills {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #94a3b8;
}

.simulator-pill-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
}

.simulator-pill-btn:hover {
  background: rgba(79, 70, 229, 0.25);
  border-color: #6366f1;
  color: #ffffff;
}

.simulator-result-box {
  margin-top: 1.25rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  display: none;
}

/* --------------------------------------------------------------------------
   4. METRICS STRIP
   -------------------------------------------------------------------------- */
.landing-section {
  padding: 60px 1.25rem;
  position: relative;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-eyebrow {
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.section-desc {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric-box {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.35rem 1rem;
  text-align: center;
}

.metric-number {
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.metric-label {
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   5. WHO IS THIS FOR? (PERSONAS)
   -------------------------------------------------------------------------- */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.persona-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
}

.persona-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

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

.persona-target {
  font-size: 0.72rem;
  color: #38bdf8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.persona-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.persona-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}

.persona-benefits li span.check {
  color: #10b981;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   6. DUAL PORTAL MATRIX
   -------------------------------------------------------------------------- */
.dual-portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.portal-feature-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
}

.portal-feature-card.admin {
  border-top: 3px solid #6366f1;
}

.portal-feature-card.applicant {
  border-top: 3px solid #06b6d4;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.portal-badge.admin { background: rgba(99, 102, 241, 0.2); color: #a5b4fc; }
.portal-badge.applicant { background: rgba(6, 182, 212, 0.2); color: #67e8f9; }

.portal-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.portal-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.portal-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.85rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   7. BEFORE VS AFTER COMPARISON
   -------------------------------------------------------------------------- */
.comparison-table-wrapper {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.comparison-table th {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: left;
}

.comparison-table th.traditional {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  width: 50%;
}

.comparison-table th.modern {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  width: 50%;
}

.comparison-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.4;
}

.comparison-table td.traditional {
  color: #fecdd3;
}

.comparison-table td.modern {
  color: #d1fae5;
}

/* --------------------------------------------------------------------------
   8. 4-STEP ROADMAP
   -------------------------------------------------------------------------- */
.roadmap-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.roadmap-step-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.35rem 1rem;
  text-align: center;
}

.roadmap-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4f46e5;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin: 0 auto 0.75rem;
}

.roadmap-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.roadmap-step-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE DEMO SANDBOX CARDS
   -------------------------------------------------------------------------- */
.sandbox-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sandbox-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sandbox-role-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.sandbox-role-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.sandbox-role-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.sandbox-creds-box {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
}

.sandbox-creds-row {
  display: flex;
  justify-content: space-between;
  color: #cbd5e1;
  margin-bottom: 0.2rem;
}

.sandbox-login-btn {
  width: 100%;
  padding: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   10. SECURITY SECTION
   -------------------------------------------------------------------------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.security-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.35rem;
}

.security-icon {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
}

.security-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.security-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  gap: 0.75rem;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.55;
  display: none;
}

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

.faq-icon-arrow {
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}

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

/* --------------------------------------------------------------------------
   12. BOTTOM CTA & FOOTER
   -------------------------------------------------------------------------- */
.bottom-cta-banner {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(6, 182, 212, 0.2) 100%), #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 2.75rem 1.5rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.landing-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 1.25rem 1.5rem;
  background: #0b1120;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-tech-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  color: #94a3b8;
}

/* ==========================================================================
   MOBILE RESPONSIVE RULES (CLEAN, PROPORTIONATE & PERFECT ALIGNMENT)
   ========================================================================== */
@media (max-width: 1024px) {
  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .persona-card:nth-child(5) {
    grid-column: span 2;
  }
  .sandbox-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roadmap-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .landing-navbar {
    height: 58px;
  }
  .landing-nav-container {
    padding: 0 0.85rem;
  }
  .landing-nav-links {
    display: none;
  }

  .landing-hero {
    padding: 80px 0.85rem 40px;
  }
  .hero-pill-badge {
    font-size: 0.68rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.9rem;
    line-height: 1.3;
  }
  .hero-title {
    font-size: 1.65rem;
    line-height: 1.22;
    margin-bottom: 0.85rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 1.35rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    box-sizing: border-box;
  }

  /* Simulator Widget on Mobile */
  .simulator-card {
    padding: 1.15rem 0.85rem;
    border-radius: 14px;
  }
  .simulator-search-bar {
    flex-direction: column;
    gap: 0.5rem;
  }
  .simulator-search-bar .btn {
    width: 100%;
    padding: 0.7rem;
    justify-content: center;
    font-size: 0.85rem;
  }
  .simulator-quick-pills {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .simulator-pill-btn {
    width: 100%;
    text-align: left;
    white-space: normal;
    font-size: 0.72rem;
    padding: 0.35rem 0.6rem;
  }
  .simulator-result-box {
    padding: 0.9rem 0.75rem;
  }

  /* Sections */
  .landing-section {
    padding: 45px 0.85rem;
  }
  .section-header-center {
    margin-bottom: 1.75rem;
  }
  .section-title {
    font-size: 1.45rem;
    line-height: 1.25;
  }
  .section-desc {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .metric-box {
    padding: 1rem 0.65rem;
  }
  .metric-number {
    font-size: 1.65rem;
  }
  .metric-label {
    font-size: 0.72rem;
  }

  /* Personas */
  .personas-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .persona-card,
  .persona-card:nth-child(5) {
    grid-column: span 1 !important;
    padding: 1.15rem 0.95rem;
  }
  .persona-title {
    font-size: 0.98rem;
  }
  .persona-target {
    font-size: 0.68rem;
    margin-bottom: 0.55rem;
  }
  .persona-benefits {
    font-size: 0.78rem;
    gap: 0.35rem;
  }

  /* Dual Portal */
  .dual-portal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .portal-feature-card {
    padding: 1.25rem 1rem;
  }
  .portal-heading {
    font-size: 1.1rem;
  }
  .portal-feature-list {
    margin: 1rem 0 1.25rem;
    gap: 0.5rem;
  }
  .portal-feature-list li {
    font-size: 0.8rem;
  }
  .portal-feature-card .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
  }

  /* Roadmap & Sandbox */
  .roadmap-steps-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .roadmap-step-card {
    padding: 1.1rem 0.85rem;
  }

  .sandbox-cards-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .sandbox-card {
    padding: 1.1rem 0.95rem;
  }

  /* Security */
  .security-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .security-card {
    padding: 1.15rem 0.95rem;
  }

  /* FAQ */
  .faq-question-btn {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }
  .faq-answer {
    padding: 0 1rem 0.85rem;
    font-size: 0.78rem;
  }

  /* CTA Banner */
  .bottom-cta-banner {
    padding: 2rem 1rem;
    border-radius: 14px;
  }
  .bottom-cta-banner h2 {
    font-size: 1.45rem !important;
    line-height: 1.25;
  }
  .bottom-cta-banner p {
    font-size: 0.85rem !important;
    margin-bottom: 1.35rem !important;
  }
  .bottom-cta-banner .btn-hero-primary,
  .bottom-cta-banner .btn-hero-secondary {
    width: 100%;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-tech-pills {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .landing-brand-text span {
    display: none;
  }
  .landing-nav-actions .btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
  }
  .hero-title {
    font-size: 1.55rem;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}
