/* QuietGo Static Site Styles */
/* Easy-to-edit color variables */
:root {
  /* User's specified brand colors */
  --text-color: #ecece6;
  /* Off-white body text - user specified */
  --heading-color: #F5F5DC;
  /* Cream for main headings */
  --subheading-color: #F5F5DC;
  /* Cream for subheadings */
  --green-color: #6C985F;
  /* Sage 500 - primary brand color */
  --accent-color: #6A7BA2;
  /* Slate Blue - primary accent */
  --accent-dark: #4682B4;
  /* Steel Blue - darker accent */
  --teal-color: #3C9D9B;
  /* Teal Blue - additional accent */
  --midnight-color: #191970;
  /* Midnight Blue - additional accent */
  --quiet-color: #F5F5DC;
  /* Cream for 'Quiet' in brand name */
  --go-color: #D4A799;
  /* Logo Rose for 'Go' in brand name */

  /* Background and structure */
  --bg-color: #000000;
  /* Black background */
  --card-bg: #1a1a1a;
  /* Dark card backgrounds */
  --card-border: #333;
  /* Card borders - same as border-color */
  --border-color: #333;
  /* Borders */
  --muted-text: #999;
  /* Muted/secondary text */
  --text-muted: #999;
  /* Alternative name for muted text */

  /* Spacing and layout */
  --border-radius: 8px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Typography */
  --font-sans: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
}

.subheading {
  color: var(--subheading-color);
}

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

/* QuietGo Brand Styling */
.quietgo-brand .quiet {
  color: var(--quiet-color);
}

.quietgo-brand .go {
  color: var(--go-color);
}

/* Layout utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

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

.text-left {
  text-align: left;
}

/* Grid system */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-col {
  flex-direction: column;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-md) 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.nav-brand img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.nav-link:hover {
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: var(--spacing-sm);
}

.mobile-menu {
  display: none;
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--border-color);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: var(--spacing-sm) 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Cards */
.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  transition: box-shadow 0.3s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.card-premium {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(189, 205, 222, 0.1) 100%);
  border: 1px solid var(--accent-color);
}

.card-featured {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(143, 163, 184, 0.1) 100%);
  border: 1px solid var(--accent-dark);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-free {
  background-color: rgba(153, 153, 153, 0.2);
  color: var(--muted-text);
}

.status-pro {
  background-color: rgba(189, 205, 222, 0.2);
  color: var(--accent-color);
}

.status-premium {
  background-color: rgba(143, 163, 184, 0.2);
  color: var(--accent-dark);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  background-color: rgba(140, 157, 138, 0.1);
  /* Green with opacity */
}

.card-icon.accent {
  background-color: rgba(189, 205, 222, 0.1);
  /* Accent with opacity */
}

.card h3 {
  margin-bottom: var(--spacing-sm);
}

.card p {
  margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--green-color);
  color: var(--bg-color);
}

.btn-primary:hover {
  background-color: #7a8a78;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

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

.btn-accent {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
}

.btn-blue {
  background-color: var(--accent-dark);
  color: var(--text-color);
}

.btn-blue:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
}

.btn-large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
}

/* App Store Buttons */
.app-store-btn {
  display: flex;
  align-items: center;
  padding: var(--spacing-lg) var(--spacing-xl);
  background-color: rgb(50, 50, 50);
  border: 2px solid rgb(70, 70, 70);
  border-radius: var(--border-radius);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 200px;
}

.app-store-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.app-store-btn svg {
  width: 48px;
  height: 48px;
  margin-right: var(--spacing-md);
}

.app-store-text-small {
  font-size: 0.875rem;
  color: #ccc;
  margin-bottom: 2px;
}

.app-store-text-large {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: calc(var(--border-radius) / 2);
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-outline {
  background-color: transparent;
  border: 1px solid;
}

.badge-primary {
  color: var(--green-color);
  border-color: var(--green-color);
}

.badge-accent {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

/* Sections */
.section {
  padding: var(--spacing-3xl) 0;
}

.section-hero {
  padding: var(--spacing-lg) 0 var(--spacing-2xl) 0;
}

/* Hero specific styles */
.hero-logo {
  max-width: 400px;
  margin: 0 auto var(--spacing-xl) auto;
  display: block;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  font-size: 1.125rem;
  opacity: 0.7;
}

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
}

.pricing-popular {
  border: 2px solid var(--green-color);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-color);
  color: var(--bg-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: var(--spacing-md);
}

.price-note {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: var(--spacing-md);
}

.feature-list {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  font-size: 0.875rem;
}

.feature-list svg {
  width: 16px;
  height: 16px;
  margin-right: var(--spacing-sm);
  color: var(--green-color);
}

/* Footer */
.footer {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer h3 {
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: var(--spacing-sm);
}

.footer a,
.footer button {
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.footer a:hover,
.footer button:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
}

.modal-header {
  margin-bottom: var(--spacing-lg);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 1.5rem;
}

/* Responsive design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {

  .container,
  .container-wide {
    padding: 0 var(--spacing-md);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .app-store-btn {
    flex-direction: column;
    text-align: center;
    min-width: auto;
  }

  .app-store-btn svg {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
}

/* Icon styles */
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon-lg {
  width: 48px;
  height: 48px;
}

/* Hover effects */
.hover-lift:hover {
  transform: translateY(-2px);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Journey Cards */
.journey-card {
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s;
}

.journey-card:hover::before {
  opacity: 1;
}

.journey-card h3 {
  color: var(--heading-color);
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
}

.journey-quote {
  font-style: italic;
  color: var(--accent-color);
  font-size: 1rem;
  padding: var(--spacing-md);
  background: rgba(189, 205, 222, 0.05);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-top: var(--spacing-md);
}

.journey-card .feature-list {
  margin-bottom: var(--spacing-lg);
}

.journey-card .feature-list li {
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
}

/* Journey section specific styling */
#journeys .features-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

#journeys .subheading {
  opacity: 0.9;
}

#journeys .hero-features {
  font-size: 1rem;
  opacity: 0.8;
  color: var(--text-color);
}

/* =================================================================
   SEMANTIC CLASSES - NO MORE INLINE STYLES
   ================================================================= */

/* Hero Section Classes */
.hero-intro {
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* Section Content Classes */
.section-intro {
  text-align: center;
  margin-bottom: 64px;
}

.section-intro .subheading {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 16px auto 0;
}

.journeys-intro {
  text-align: center;
  margin-bottom: 64px;
}

.journeys-intro .subheading {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 16px auto 0;
}

.journey-card-text {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.journey-feature-list {
  text-align: left;
  margin-bottom: 24px;
}

/* Pricing Section Classes */
.pricing-main-title {
  margin-bottom: 3rem !important;
}

.pricing-intro {
  font-size: 1.125rem;
  margin-bottom: 48px;
}

.trial-banner {
  background: var(--go-color);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 0 auto 48px auto;
  max-width: 600px;
  color: rgb(2, 2, 2);
  text-align: center;
}

.trial-banner h3 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.trial-banner p {
  margin: 0;
  font-size: 1rem;
}

.pricing-container {
  max-width: 900px;
  margin: 0 auto 48px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card-pro {
  position: relative;
  border: 2px solid var(--green-color);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
}

.pricing-card-pro-plus {
  border: 2px solid var(--accent-color);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
}

.pricing-icon {
  margin: 24px 0 16px 0;
}

.pricing-icon-plus {
  margin: 36px 0 16px 0;
}

.pricing-title {
  margin: 0 0 8px 0;
  font-size: 1.75rem;
}

.pricing-title-green {
  color: var(--green-color);
}

.pricing-title-accent {
  color: var(--accent-color);
}

.pricing-display {
  margin-bottom: 24px;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-yearly {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
}

.pricing-yearly-green {
  font-size: 1rem;
  color: var(--green-color);
  font-weight: 600;
}

.pricing-addon-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
  padding: 0 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-button {
  width: 100%;
  border: none;
}

.pricing-button-green {
  background: var(--green-color);
}

.pricing-button-accent {
  background: var(--accent-color);
}

/* Download Buttons Section */
.download-section {
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* Cancellation Card */
.cancellation-card {
  background: rgba(212, 167, 153, 0.1);
  border: 1px solid var(--accent-color);
  padding: 20px;
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto;
}

.cancellation-title {
  margin: 0 0 12px 0;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cancellation-icon {
  color: var(--green-color);
  margin-right: 8px;
}

.cancellation-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cancellation-emphasis {
  color: var(--text-color);
}

/* Privacy Section Classes */
.privacy-intro {
  text-align: center;
  margin-bottom: 48px;
}

.privacy-intro .subheading {
  font-size: 1.125rem;
}

.privacy-column-title {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.privacy-icon {
  color: var(--green-color);
  margin-right: 12px;
}

/* CTA Section Classes */
.cta-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* Social Section Classes */
.social-section {
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.social-heading {
  color: var(--text-color);
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.social-link {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  padding: 0.75rem;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  text-decoration: none;
}

.testimonial-heading {
  color: var(--text-color);
  font-size: 1.75rem;
  margin: 0 0 1rem 0;
  text-align: center;
}

.testimonial-intro {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
  margin: 0 0 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-icon {
  margin-bottom: 1.5rem;
}

.testimonial-icon-green {
  color: var(--green-color);
}

.testimonial-icon-accent {
  color: var(--accent-color);
}

.testimonial-quote {
  color: var(--text-color);
  font-style: italic;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author-green {
  color: var(--green-color);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-author-accent {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Journey Section Classes */
.journey-section-intro {
  text-align: center;
  margin-top: 48px;
}

.journey-final-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.journey-final-emphasis {
  margin-bottom: 24px;
}

/* Privacy Section Centered with Closer Column Spacing */
#privacy .grid {
  max-width: 900px !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: var(--spacing-xl) !important;
  align-items: flex-start;
  padding: 0 var(--spacing-lg);
  margin-left: auto !important;
  margin-right: auto !important;
}

#privacy .grid>div {
  flex: 0 0 45%;
  max-width: 420px;
  min-width: 300px;
  text-align: left;
}

#privacy .grid>div:first-child {
  margin-right: 0;
}

#privacy .grid>div:last-child {
  margin-left: 0;
  transform: translateX(30%);
}

@media (max-width: 768px) {
  #privacy .grid {
    flex-direction: column !important;
    gap: var(--spacing-xl) !important;
    align-items: center;
    padding: 0 var(--spacing-md);
    justify-content: center !important;
  }

  #privacy .grid>div {
    flex: none;
    max-width: 100%;
    min-width: auto;
    margin: 0 !important;
    text-align: left;
  }

  #privacy .grid>div:first-child {
    margin-right: 0 !important;
  }

  #privacy .grid>div:last-child {
    margin-left: 0 !important;
  }
}

/* Footer Link Fixes - No Pill Buttons */
.footer a,
.footer button {
  color: var(--text-color) !important;
  text-decoration: none !important;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: normal !important;
}

.footer a:hover,
.footer button:hover {
  opacity: 1;
  text-decoration: underline;
  background: none !important;
  border: none !important;
  transform: none !important;
}

/* Ensure no pill styling anywhere in footer */
.footer * {
  background: transparent !important;
  border: none !important;
}

.footer .btn,
.footer .badge {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-weight: normal !important;
  color: var(--text-color) !important;
}

/* Standardized Brand Styling Across All Headers */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  text-decoration: none;
}

.nav-brand img {
  width: 48px !important;
  height: 48px !important;
  flex-shrink: 0;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-stack .quietgo-brand {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-serif);
}

.brand-stack .quiet {
  color: var(--quiet-color);
}

.brand-stack .go {
  color: var(--go-color);
}

.brand-tagline {
  font-size: 0.875rem;
  color: var(--green-color) !important;
  font-weight: 400;
  opacity: 0.9;
  font-style: italic;
  line-height: 1;
  margin-top: 2px;
}

/* Responsive brand scaling */
@media (max-width: 768px) {
  .nav-brand img {
    width: 40px !important;
    height: 40px !important;
  }

  .brand-stack .quietgo-brand {
    font-size: 1.5rem;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }
}

/* Section Identifier Styling */
.section-identifier {
  display: flex;
  align-items: center;
  margin: 0 var(--spacing-lg);
}

.section-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .section-identifier {
    display: none;
  }
}

/* CTA Section Better Positioning */
section[style*="padding-top: 32px"] {
  padding-top: var(--spacing-3xl) !important;
  padding-bottom: var(--spacing-3xl) !important;
}

section[style*="padding-top: 32px"] .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section[style*="padding-top: 32px"] .flex-center {
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2xl);
  padding: var(--spacing-xl) 0;
}

/* App Store Button Improvements */
.app-store-btn {
  margin: 0 var(--spacing-md);
  transition: all 0.3s ease;
}

.app-store-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
  section[style*="padding-top: 32px"] .flex-center {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .app-store-btn {
    margin: 0;
  }
}
