/* MineMate Static Marketing Site Styles */
:root {
  --color-navy: #0f172a;
  --color-navy-card: #1e293b;
  --color-navy-light: #334155;
  --color-orange: #f97316;
  --color-orange-hover: #ea580c;
  --color-blue: #2563eb;
  --color-blue-hover: #1d4ed8;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #9ca3af;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;
  --color-white: #ffffff;

  --font-heading: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --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.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 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(--color-gray-50);
  color: var(--color-gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-gray-900);
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-gray-300);
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-gray-300);
}

.btn-outline-dark:hover {
  background-color: var(--color-gray-100);
  border-color: var(--color-gray-400);
}

.btn-full {
  width: 100%;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-title .brand-mine { color: var(--color-white); }
.brand-title .brand-mate { color: var(--color-orange); }

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 3px;
}

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

.nav-link {
  color: var(--color-gray-300);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  padding: 0.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.built-in-au-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-gray-200);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.built-in-au-badge svg {
  color: var(--color-orange);
}

.hero-title {
  font-size: 3.75rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-subheading {
  font-size: 1.25rem;
  color: var(--color-gray-300);
  margin-bottom: 2.25rem;
  line-height: 1.5;
  max-width: 520px;
}

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

.hero-visual {
  position: relative;
}

.hero-card-preview {
  background: var(--color-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-card-header h3 {
  color: var(--color-white);
  font-size: 1.25rem;
}

.roster-pill {
  background: rgba(249, 115, 22, 0.2);
  color: var(--color-orange);
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.swing-status-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.swing-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.swing-label {
  color: var(--color-gray-400);
  font-size: 0.875rem;
}

.swing-val {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9375rem;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, #f97316, #fb923c);
  border-radius: var(--radius-full);
}

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

.stat-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.18);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-text h5 {
  color: var(--color-white);
  font-size: 0.875rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
}

.stat-text p {
  color: var(--color-gray-400);
  font-size: 0.75rem;
  margin: 0;
}

/* Problem/Pain Points Section */
.pain-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

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

.pain-card {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gray-300);
}

.pain-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pain-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pain-card p {
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* Features Grid Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--color-gray-50);
}

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

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.feature-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-price-badge {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gray-200);
}

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

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Why MineMate Section */
.why-section {
  padding: 6rem 0;
  background-color: var(--color-navy);
  color: var(--color-white);
}

.why-section .section-header h2 {
  color: var(--color-white);
}

.why-section .section-header p {
  color: var(--color-gray-300);
}

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

.why-card {
  background: var(--color-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-orange);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-card h3 {
  color: var(--color-white);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--color-gray-300);
  font-size: 0.95rem;
}

/* Pricing Teaser Section */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.pricing-teaser-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.pricing-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  text-align: left;
}

.pricing-option {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.pricing-option.highlight {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-sm);
}

.pricing-option h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.pricing-option p {
  font-size: 0.875rem;
  line-height: 1.4;
}

.pricing-notice {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-top: 1.5rem;
}

/* Beta Signup Section */
.beta-section {
  padding: 6rem 0;
  background-color: var(--color-gray-50);
}

.beta-form-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.beta-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}

.form-input, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.checkbox-group-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.checkboxes-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-orange);
  cursor: pointer;
}

/* Part of The Mate Platform Section */
.ecosystem-section {
  padding: 6rem 0;
  background-color: var(--color-navy);
  color: var(--color-white);
}

.ecosystem-section .section-header h2 {
  color: var(--color-white);
}

.ecosystem-section .section-header p {
  color: var(--color-gray-300);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.app-card {
  background: var(--color-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

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

.app-card.current-app {
  border-color: var(--color-orange);
  background: rgba(249, 115, 22, 0.08);
}

.app-info-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-badge-icon.current {
  background: var(--color-orange);
}

.app-text h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.app-text p {
  color: var(--color-gray-400);
  font-size: 0.8125rem;
  margin: 0;
}

.app-arrow {
  color: var(--color-gray-400);
  transition: transform 0.2s ease, color 0.2s ease;
}

.app-card:hover .app-arrow {
  color: var(--color-orange);
  transform: translateX(3px);
}

.ecosystem-action {
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: #090d16;
  color: var(--color-gray-400);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

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

.footer-brand p {
  color: var(--color-gray-400);
  margin-top: 1rem;
  font-size: 0.875rem;
  max-width: 320px;
}

.footer-heading {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

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

.footer-links a {
  color: var(--color-gray-400);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-notice-bar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.footer-notice-bar p {
  color: var(--color-gray-300);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  color: var(--color-gray-400);
  font-size: 0.8125rem;
}

/* Responsive Styles */

/* Platform Link (next to MineMate logo) */
.platform-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-decoration: none;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(30, 41, 59, 0.5);
  transition: all 0.2s;
  white-space: nowrap;
  margin-left: 0.5rem;
}

.platform-link:hover {
  color: var(--color-white);
  border-color: var(--color-blue);
  background: rgba(37, 99, 235, 0.15);
}

.platform-link svg {
  transition: transform 0.2s;
}

.platform-link:hover svg {
  transform: translate(1px, -1px);
}

/* Footer Platform Link */
.footer-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-platform-link:hover {
  color: #60a5fa;
}

/* Tertiary Button (for View Pricing in hero) */
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-gray-400);
  transition: all 0.2s ease;
}

.btn-tertiary:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* Nav actions spacing fix for Sign In + Get Started */
.nav-actions {
  gap: 0.75rem;
}


/* Ecosystem app logo images */
.ecosystem-logo {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Brand logo image (replacing SVG) */
.brand-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* App badge icon now contains a logo image */
.app-badge-icon {
  overflow: hidden;
}

@media (max-width: 991px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  .hero-title { font-size: 2.75rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .mobile-toggle {
    display: block;
  }

  .hero-section {
    padding: 3.5rem 0 4.5rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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