/**
 * Theme Name: AnaxisTech Astra Child
 * Theme URI: https://anaxistech.com/
 * Description: Child theme for the Astra WordPress theme.
 * Author: AnaxisTech
 * Template: astra
 * Version: 1.0.0
 * Text Domain: anaxistech-astra-child
 */

/* Add child-theme CSS below this line. */
:root {
        --bg: #ffffff;
        --surface: #ffffff;
        --fg: #0a0a0a;
        --muted: #737373;
        --border: #242424;
        --accent: #3a86ff;
        --accent-secondary: #103e87;
        --font-stack: 'Poppins', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
        --radius: 8px;
        --shadow-sm: 0 1px 2px rgba(10,10,10,0.04), 0 1px 3px rgba(10,10,10,0.04);
        --shadow-md: 0 8px 24px rgba(10,10,10,0.06), 0 2px 6px rgba(10,10,10,0.04);
        --shadow-lg: 0 24px 48px rgba(16,62,135,0.14);
        --good: #16a34a;
        --warn: #d97706;
        --icon-blue: #3a86ff;
        --icon-purple: #7c3aed;
        --icon-orange: #ea580c;
        --icon-green: #16a34a;
      }

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

    ol,
    ul {
      margin: 0;
      padding: 0;
    }

html {
       scroll-behavior: smooth;
       background-color: var(--bg);
       color: var(--fg);
       font-family: var(--font-stack);
       line-height: 1.6;
     }

body {
       background-color: var(--bg);
       color: var(--fg);
       overflow-x: hidden;
     }

    /* Container */
    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Typography Defaults */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-stack);
      font-weight: 600;
      color: var(--fg);
      line-height: 1.2;
    }

    h1 {
      font-size: 52px;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: 36px;
      letter-spacing: -0.02em;
    }

    h3 {
      font-size: 22px;
      letter-spacing: -0.01em;
    }

    p {
      color: var(--muted);
      font-size: 16px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Eyebrow Pill */
.eyebrow {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       padding: 6px 16px;
       background-color: var(--surface);
       border: 1px solid var(--border);
       border-radius: 8px;
       font-size: 12px;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 0.08em;
       color: var(--accent);
       margin-bottom: 20px;
     }

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 8px;
}

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.2s ease;
      border: 1px solid transparent;
      text-align: center;
    }

    .btn-primary {
      background-color: var(--accent);
      color: #ffffff;
      border-color: var(--accent);
    }

    .btn-primary:hover {
      background-color: var(--accent-secondary);
      border-color: var(--accent-secondary);
    }

.btn-secondary {
       background-color: var(--surface);
       color: var(--fg);
       border-color: var(--border);
     }

.btn-secondary:hover {
       border-color: var(--accent);
       color: var(--accent);
     }

    /* Navigation */
.navbar {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       z-index: 1000;
       background-color: var(--bg);
       border-bottom: 1px solid var(--border);
       padding: 18px 0;
     }

    .nav-container {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      position: relative;
    }

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  flex: none;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 4px;
  background: var(--accent);
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
  flex: none;
}

.footer .logo-img {
  height: 40px;
}

    .brand-tag {
      font-size: 11px;
      color: var(--muted);
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
      grid-column: 2;
      margin: 0;
      padding: 0;
    }

.nav-link {
       font-size: 14px;
       color: var(--muted);
       font-weight: 500;
       transition: color 0.2s ease;
     }

.nav-link:hover {
       color: var(--fg);
     }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-self: end;
    }

.mobile-toggle {
       display: none;
       background: none;
       border: 1px solid var(--border);
       color: var(--fg);
       padding: 8px;
       border-radius: 8px;
       cursor: pointer;
     }

    /* Hero Section */
.hero-section {
       padding: 100px 0 50px;
       background-color: var(--bg);
       background-image:
         radial-gradient(560px 320px at 8% 0%, rgba(58,134,255,0.10), transparent 70%),
         radial-gradient(480px 320px at 96% 10%, rgba(124,58,237,0.08), transparent 70%);
       position: relative;
       overflow: hidden;
     }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .hero-content h1 {
      margin-bottom: 20px;
    }

.hero-content h1 span {
       color: var(--accent);
     }

.hero-description {
       font-size: 18px;
       color: var(--muted);
       margin-bottom: 32px;
       max-width: 520px;
     }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

.value-badges {
       display: flex;
       align-items: center;
       gap: 24px;
       padding-top: 24px;
       border-top: 1px solid var(--border);
       flex-wrap: wrap;
     }

    .value-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

.value-icon {
       width: 28px;
       height: 28px;
       border-radius: 8px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--accent);
       background-color: rgba(58,134,255,0.10);
     }

.value-item:nth-child(2) .value-icon {
  color: var(--icon-green);
  background-color: rgba(22,163,74,0.10);
}

.value-item:nth-child(3) .value-icon {
  color: var(--icon-purple);
  background-color: rgba(124,58,237,0.10);
}

.value-text {
       font-size: 13px;
       font-weight: 500;
       color: var(--fg);
     }

.value-text span {
       display: block;
       color: var(--muted);
       font-size: 11px;
     }

    /* Live Interactive Dashboard App Preview */
.dashboard-preview-card {
       background-color: var(--surface);
       border: 1px solid var(--border);
       border-radius: 12px;
       padding: 24px;
       box-shadow: var(--shadow-lg);
     }

.preview-header {
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding-bottom: 16px;
       border-bottom: 1px solid var(--border);
       margin-bottom: 20px;
     }

    .preview-title {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      background-color: var(--accent);
      border-radius: 8px;
    }

    .preview-controls {
      display: flex;
      align-items: center;
      gap: 8px;
    }

.filter-tab {
       padding: 6px 12px;
       background-color: var(--bg);
       border: 1px solid var(--border);
       border-radius: 8px;
       color: var(--muted);
       font-size: 12px;
       font-weight: 500;
       cursor: pointer;
       transition: all 0.2s ease;
     }

.filter-tab.active, .filter-tab:hover {
        background-color: var(--accent);
        border-color: var(--accent);
        color: var(--bg);
      }

    .candidate-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

.candidate-card {
       background-color: var(--bg);
       border: 1px solid var(--border);
      border-radius: 8px;
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: border-color 0.2s ease;
    }

.candidate-card:hover {
       border-color: var(--accent);
     }

    .candidate-info {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .avatar {
      width: 44px;
      height: 44px;
      background-color: var(--accent-secondary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: #ffffff;
      border: 1px solid var(--accent);
    }

    .candidate-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--fg);
    }

    .candidate-role {
      font-size: 13px;
      color: var(--muted);
    }

.match-badge {
  padding: 6px 14px;
  background-color: rgba(58,134,255,0.08);
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.match-badge.tier-good {
  background-color: rgba(22,163,74,0.08);
  border-color: var(--good);
  color: var(--good);
}

.match-badge.tier-warn {
  background-color: rgba(217,119,6,0.08);
  border-color: var(--warn);
  color: var(--warn);
}

.match-badge.tier-low {
  background-color: rgba(115,115,115,0.08);
  border-color: var(--border);
  color: var(--muted);
}

    .badge-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* Problem vs Solution */
.section-padding {
       padding: 50px 0;
       background-color: var(--bg);
     }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

.section-header p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted);
}

    .vs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

.vs-card {
       background-color: var(--surface);
       border: 1px solid var(--border);
       border-radius: 12px;
       padding: 36px;
       position: relative;
       box-shadow: var(--shadow-sm);
     }

.vs-card.solution {
       border-color: var(--accent);
       box-shadow: var(--shadow-md);
     }

    .vs-tag {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
      display: inline-block;
    }

.vs-card.problem .vs-tag {
       color: var(--muted);
     }

.vs-card.solution .vs-tag {
       color: var(--accent);
     }

    .vs-list {
      list-style: none;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

.vs-item {
       display: flex;
       align-items: flex-start;
       gap: 12px;
       font-size: 15px;
       color: var(--fg);
     }

.vs-bullet {
       width: 20px;
       height: 20px;
       background-color: var(--bg);
       border: 1px solid var(--border);
       border-radius: 8px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 11px;
       flex-shrink: 0;
       margin-top: 2px;
     }

.solution .vs-bullet {
        border-color: var(--accent);
        color: var(--accent);
        background-color: var(--accent-secondary);
        color: var(--bg);
      }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

.feature-card {
       background-color: var(--surface);
       border: 1px solid var(--border);
       border-radius: 12px;
       padding: 32px;
       transition: all 0.2s ease;
       display: flex;
       flex-direction: column;
       justify-content: space-between;
       box-shadow: var(--shadow-sm);
     }

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

.feature-number {
       font-size: 12px;
       font-weight: 700;
       color: var(--accent);
       background-color: var(--accent-secondary);
       padding: 4px 10px;
       border-radius: 8px;
       align-self: flex-start;
       margin-bottom: 20px;
     }

.feature-icon {
       width: 48px;
       height: 48px;
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 20px;
     }

.feature-icon.icon-blue   { background-color: rgba(58,134,255,0.10);  color: var(--icon-blue); }
.feature-icon.icon-purple { background-color: rgba(124,58,237,0.10);  color: var(--icon-purple); }
.feature-icon.icon-orange { background-color: rgba(234,88,12,0.10);   color: var(--icon-orange); }
.feature-icon.icon-green  { background-color: rgba(22,163,74,0.10);   color: var(--icon-green); }

    .feature-card h3 {
      margin-bottom: 12px;
    }

    .feature-card p {
      font-size: 14px;
    }

    /* Stats Bar */
.stats-section {
       background: linear-gradient(135deg, var(--accent-secondary) 0%, #0b2c63 100%);
       padding: 50px 0;
       position: relative;
       overflow: hidden;
     }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

.stat-number {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
      font-size: 14px;
      color: rgba(255,255,255,0.72);
      font-weight: 500;
    }

    /* How It Works Workflow */
    .workflow-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
    }

    .workflow-steps::before {
      content: "";
      position: absolute;
      top: 24px;
      left: 16.66%;
      right: 16.66%;
      height: 2px;
      background-image: linear-gradient(to right, var(--border) 0 8px, transparent 8px 16px);
      background-size: 16px 2px;
      background-repeat: repeat-x;
      z-index: 0;
    }

    .workflow-card {
      background-color: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px;
      text-align: center;
      position: relative;
      box-shadow: var(--shadow-sm);
      z-index: 1;
    }

    .step-circle {
      width: 48px;
      height: 48px;
      background-color: var(--accent-secondary);
      border: 1px solid var(--accent);
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 18px;
      margin: 0 auto 24px;
      box-shadow: 0 0 0 6px var(--bg);
      position: relative;
      z-index: 1;
    }

    .workflow-card h3 {
      margin-bottom: 12px;
    }

    /* Pricing Section */
    .pricing-toggle-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
    }

    .toggle-label {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
    }

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

    .toggle-switch {
      width: 52px;
      height: 28px;
      background-color: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 3px;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

.toggle-handle {
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

    .toggle-switch.monthly .toggle-handle {
      transform: translateX(0);
    }

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

.discount-pill {
       font-size: 11px;
       font-weight: 700;
       color: var(--accent);
       background-color: var(--accent-secondary);
       padding: 4px 10px;
       border-radius: 8px;
       letter-spacing: 0.04em;
     }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      align-items: stretch;
    }

    .pricing-card {
      background-color: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

.pricing-card.featured {
        border-color: var(--accent);
        background-color: var(--surface);
        box-shadow: var(--shadow-lg);
        transform: scale(1.03);
      }

    .featured-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--accent);
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 16px;
      border-radius: 8px;
    }

    .price-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .price-amount {
      font-size: 44px;
      font-weight: 700;
      color: var(--fg);
      margin: 16px 0 8px;
      letter-spacing: -0.02em;
    }

    .price-amount span {
      font-size: 16px;
      color: var(--muted);
      font-weight: 400;
    }

    .pricing-features {
      list-style: none;
      margin: 32px 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

 .pricing-feature-item {
       display: flex;
       align-items: center;
       gap: 10px;
       font-size: 14px;
       color: var(--fg);
     }

.check-icon {
  color: var(--accent);
  font-weight: 700;
}

     /* CTA Banner */
 .cta-section {
        padding: 50px 0;
        background-color: var(--bg);
      }

     .cta-box {
       background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
       border-radius: 16px;
       padding: 64px 40px;
       text-align: center;
       max-width: 900px;
       margin: 0 auto;
       box-shadow: var(--shadow-lg);
     }

    .cta-box h2 {
      margin-bottom: 16px;
      color: #ffffff;
    }

    .cta-box p {
      margin-bottom: 32px;
      font-size: 18px;
      color: rgba(255,255,255,0.85);
    }

    .cta-box .btn-primary {
      background-color: #ffffff;
      color: var(--accent-secondary);
      border-color: #ffffff;
    }

    .cta-box .btn-primary:hover {
      background-color: rgba(255,255,255,0.9);
    }

    .cta-form {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      max-width: 480px;
      margin: 0 auto;
    }

.input-field {
      flex: 1;
      padding: 12px 18px;
      background-color: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--fg);
      font-family: var(--font-stack);
      font-size: 14px;
      outline: none;
    }

.input-field:focus {
  border-color: var(--accent);
}

.cta-box .input-field {
  background-color: rgba(255,255,255,0.95);
  border-color: transparent;
  color: var(--fg);
}

    /* Modal */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0.85);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-card {
      background-color: var(--surface);
      border: 1px solid var(--accent);
      border-radius: 8px;
      width: 100%;
      max-width: 500px;
      padding: 36px;
      position: relative;
      box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 20px;
      cursor: pointer;
    }

    .modal-close:hover {
      color: var(--accent);
    }

    /* Footer */
    .footer {
      background-color: var(--surface);
      border-top: 1px solid var(--border);
      padding: 80px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-col h4 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
      color: var(--fg);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-link {
      font-size: 14px;
      color: var(--muted);
      transition: color 0.2s ease;
    }

.footer-link:hover {
  color: var(--accent);
}

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--muted);
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .pricing-grid {
        grid-template-columns: 1fr;
      }
      .workflow-steps {
        grid-template-columns: 1fr;
      }
      .workflow-steps::before {
        display: none;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding-left: 16px;
        padding-right: 16px;
      }
      .hero-section {
        padding: 70px 0 40px;
      }
      .hero-grid {
        gap: 32px;
      }
      .hero-content {
        text-align: center;
      }
      .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
      }
      .hero-buttons,
      .value-badges {
        justify-content: center;
      }
      .section-padding,
      .stats-section,
      .cta-section {
        padding: 40px 0;
      }
      .section-header {
        margin-bottom: 30px;
      }
      .section-header p {
        font-size: 16px;
      }
      .navbar {
        padding: 12px 0;
      }
      .nav-container {
        display: flex;
        width: 100%;
        padding: 0 16px;
        justify-content: space-between;
      }
      .brand-logo {
        gap: 8px;
        font-size: 18px;
        white-space: nowrap;
      }
      .logo-img {
        height: 30px;
      }
      .nav-actions {
        gap: 10px;
      }
      h1 { font-size: 36px; }
      h2 { font-size: 28px; }
      .nav-links, .nav-actions .btn-secondary {
        display: none;
      }
      .nav-links.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 24px;
        align-items: center;
        justify-content: center;
        gap: 18px;
        text-align: center;
        background-color: var(--bg);
        border-bottom: 1px solid var(--border);
      }
      .nav-links.is-open li {
        width: 100%;
      }
      .nav-links.is-open .nav-link {
        display: block;
        width: 100%;
        text-align: center;
      }
      .mobile-toggle {
        display: block;
      }
      .vs-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 28px !important;
      }
      .vs-card,
      .workflow-card {
        padding: 24px !important;
      }
      .workflow-steps {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 28px !important;
      }
      .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .feature-card,
      .pricing-card {
        padding: 24px;
      }
      .pricing-card.featured {
        transform: none;
      }
      .pricing-grid {
        gap: 20px;
      }
      .cta-form {
        flex-direction: column;
      }
      .cta-form input, .cta-form button {
        width: 100%;
      }
      .stats-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .cta-box {
        padding: 36px 20px;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

    @media (max-width: 480px) {
      .nav-actions .btn-primary {
        display: none;
      }
    }
