/*
==================================================
  Font Imports & Root Variable Definitions
==================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&family=DM+Serif+Display:ital@0;1&family=Inter:wght@300&family=Lexend:wght@300&family=Manrope:wght@300&family=Montserrat:wght@600&family=Roboto+Mono:wght@300;400;500;600;700&family=Source+Sans+3:wght@300&display=swap');

@font-face {
  font-family: 'JetBrains Mono Bold';
  src: url('assets/fonts/ttf/JetBrainsMono-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Black';
  src: url('assets/fonts/Cooper/cooperl.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fat Molly';
  src: url('assets/fonts/Fat Molly/FatMolly-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Trolleybus Trial';
  src: url('assets/Trolleybus/CopyrightBolditalicStudio-TrolleybusTrial.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Even Mono Trial';
  src: url('assets/CopyrightBolditalicStudio-EvenMonoRegularTrial.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gearz Trial';
  src: url('assets/BolditalicStudioTrials/Gearz/CopyrightBolditalicStudio-GearzThinTrial.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Brog Trial';
  src: url('assets/BolditalicStudioTrials/Brog/CopyrightBolditalicStudio-BrogRegularTrial.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NType82';
  src: url('../Assets/NType82-Regular.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chowder Light Trial';
  src: url('assets/BolditalicStudioTrials/Chowder/CopyrightBolditalicStudio-ChowderLightTrial.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chowder Medium Trial';
  src: url('assets/BolditalicStudioTrials/Chowder/CopyrightBolditalicStudio-ChowderMediumTrial.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tsarga Bold Trial';
  src: url('assets/BolditalicStudioTrials/Tsarga/CopyrightBolditalicStudio-TsargaBoldTrial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apophis Text Trial';
  src: url('assets/BolditalicStudioTrials/Apophis/CopyrightBolditalicStudio-ApoTxtRegularTrial.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cooper Light Italic';
  src: url('assets/fonts/Cooper/cooperli.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Questrial';
  src: url('assets/fonts/New folder/Questrial/Questrial-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Display';
  src: url('assets/fonts/New folder/San Francisco/otf/SFNSText-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Color Palette */
  --text-primary: #2D3748;
  --text-secondary: #718096;
  --background-primary: #ffffff;
  --background-secondary: #ffffff;
  --border-color: #E2E8F0;
  --accent-color: #070707; /* Changed to #070707 for underline effect */

  /* Layout & Sizing */
  --container-gap: 50px;
  --control-radius: 12px;

  /* Typography */
  --font-family: 'Cutive Mono', monospace;
  --font-family-display: 'Trolleybus Trial', 'Cutive Mono', monospace;
  --font-family-subheading: 'NType82', 'Cutive Mono', monospace;
}


/*
==================================================
  Global & Base Styles
==================================================
*/

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-family);
  color: var(--text-primary);
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

main {
  background: #ffffff;
}

*, *::before, *::after {
  box-sizing: border-box;
}


/*
==================================================
  Header & Navigation
==================================================
*/

/*
==================================================
  HEADER & NAVIGATION STYLES
==================================================
*/

/* --- Top Announcement Banner --- */
/* --- Top Banner --- */
/*
==================================================
  HEADER & NAVIGATION STYLES
==================================================
*/

/* --- Top Announcement Banner --- */
.top-banner {
  text-align: center;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  font-family: var(--font-family-subheading);
  font-variant-caps: small-caps;
  color: #f9f2e6;
  background-color: #070707;
  border-bottom: 1px solid var(--border-color);
  letter-spacing: 0;
  line-height: 1.1;
}

/* --- Main Header Container --- */
header {
  background: var(--background-secondary);
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.secondary-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Left, Center, and Right columns */
  align-items: center; /* Vertically center all items */
  height: 72px;
  padding: 0 40px; /* Remove top padding for proper vertical centering */
}

/* --- Logo / Header Title --- */
.header-title {
  justify-self: start; /* Align title to the left */
  font-family: var(--font-family-display);
  font-size: 2.35rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 400;
  font-variant-caps: normal;
  text-transform: none;
  color: #070707 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* --- Main Navigation Links --- */
.nav {
  display: flex;
  gap: 40px;
  justify-self: center; /* Keep navigation in the center */
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 400;
  font-family: var(--font-family);
  font-variant-caps: normal;
  text-transform: none;
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.mobile-nav a {
  font-family: var(--font-family);
  font-variant-caps: normal;
  text-transform: none;
  letter-spacing: -0.05em;
  line-height: 1;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

/* --- Cart Icon & Counter --- */
.cart-nav {
  justify-self: end; /* Align cart to the right */
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.cart-nav:hover svg {
  stroke: var(--accent-color);
}

.cart-nav:hover .cart-count {
  color: var(--accent-color);
}

.cart-nav svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-primary);
  stroke-width: 2;
  transition: stroke 0.2s ease;
}

/* Cart count font styling to match FAQ page */
.cart-nav .cart-count {
  font-family: var(--font-family) !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.05em;
  line-height: 1.1;
  font-variant-caps: normal;
}

.cart-nav .cart-count {
  color: var(--text-primary);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  min-width: auto;
  height: auto;
  padding: 0;
  transition: color 0.2s ease;
}

/*
==================================================
  Page Sections & Content Blocks
==================================================
*/

.hero-section {
  display: flex;
  width: 100%;
  height: 60vh;
  background: #ffffff;
}

.hero-section.reverse {
  flex-direction: row; /* Changed from row-reverse to row */
}

.hero-left,
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-left {
  background: #ffffff;
}

.hero-right {
  background: url('assets/diogo-lemos-c8r5SVWKaGk-unsplash.jpg') center center/cover no-repeat;
  border-top-left-radius: 3px;
}

.hero-left.hero-image-alt {
  background: url('assets/another+week+another+frame+(Blog+Banner)+(1).jpg') center center/cover no-repeat;
  border-bottom-right-radius: 3px;
}

.hero-right.blue-bg {
  background: #ffffff !important;
}

.info-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #070707;
  color: #f9f2e6;
  font-size: 18px;
  padding: 48px 0 40px 0;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  font-variant-caps: small-caps;
  letter-spacing: -0.025em;
}

.info-bar > div {
  text-align: center;
  flex: 1;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0 60px 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff; /* Changed background color to pure white */
}

.quad-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 60vw;
  min-height: 600px;
  max-height: 90vh;
}

.quad {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* Added padding for content */
}

.quad-left-top {
  background: #181818;
  color: #f9f2e6;
}

.quad-right-top {
  background: url('assets/quad-top-right.jpg') center center/cover no-repeat;
}

.quad-left-bottom {
  background: url('assets/quad-bottom-left.jpg') center center/cover no-repeat;
}

.quad-right-bottom {
  background: #ffffff;
  color: #181818;
}

.quad-content {
  text-align: center;
  margin: 0 auto;
  max-width: 420px;
}

.quad-content h2 {
  font-family: 'Trolleybus Trial', 'Cooper Black', 'Cooper Lt BT', 'DM Serif Display', serif;
  font-size: 2.2rem;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.quad-content p {
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.025em;
}


/*
==================================================
  Component-Specific Styles
==================================================
*/

/* --- Frame Options (in .container) --- */
.frame-options-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  margin-bottom: 60px;
}

.frame-option {
  text-align: center;
  width: 250px;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.frame-image {
  width: 250px;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.frame-image:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.frame-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  border-radius: 3px;
}

.frame-option p {
  margin: 0 0 8px 0;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Trolleybus Trial', 'Cooper Black', 'Cooper Lt BT', 'DM Serif Display', serif;
  letter-spacing: 0.05em;
}

.frame-option p:last-child {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  letter-spacing: -0.025em;
}

/* --- General Button Style --- */
button {
  background-color: #070707;
  color: #f9f2e6;
  padding: 14px 32px;
  border: 1px solid #070707;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 16px;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  font-weight: 300;
  letter-spacing: -0.025em;
  transition: all 0.2s ease;
}

button:hover {
background-color: transparent;
color: #070707 !important;
border-color: #070707;
}

/* --- Gallery Row --- */
.gallery-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  background: #222;
  padding: 32px 0;
  margin: 0;
  overflow-x: auto; /* Allow horizontal scroll on smaller screens */
}

.gallery-image {
  width: 300px;
  height: 340px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0; /* Prevent images from shrinking */
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Frame Guide Section --- */
.frame-guide-section {
  width: 100%;
  text-align: center;
  margin: 80px 0;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  padding: 20px 40px;
  background: #ffffff;
  position: relative;
}

.frame-guide-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-family: 'Trolleybus Trial', 'Cooper Black', 'Cooper Lt BT', 'DM Serif Display', serif;
  font-weight: 400;
  color: #070707;
  letter-spacing: 0.05em;
}

.frame-guide-subtitle {
  font-size: 1.1rem;
  color: #070707;
  margin-bottom: 80px;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.frame-guide-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.frame-guide-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 250px;
}

.frame-guide-step-number {
  width: 60px;
  height: 60px;
  background: var(--text-primary);
  color: #f9f2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
}

.frame-guide-step-icon {
  width: 60px;
  height: 60px;
  background: #070707;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 0;
}

.frame-guide-step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.frame-guide-icon {
  display: none;
}

.frame-guide-box {
  background: transparent;
  border: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}

.frame-guide-box h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: #070707;
  font-family: 'Trolleybus Trial', 'Cooper Black', 'Cooper Lt BT', 'DM Serif Display', serif;
  letter-spacing: 0.05em;
}

.frame-guide-box p {
  font-size: 0.95rem;
  color: #070707;
  line-height: 1.6;
  margin: 0;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.frame-guide-arrow {
  display: none;
}

.frame-guide-btn {
  /* Inherit all styles from .hero-button for perfect match */
  @extend .hero-button;
}

.frame-guide-btn:hover {
  @extend .hero-button:hover;
}

/* Responsive adjustments for frame guide */
@media (max-width: 768px) {
  .frame-guide-section {
    padding: 60px 20px;
  }
  
  .frame-guide-title {
    font-size: 2.2rem;
  }
  
  .frame-guide-subtitle {
    font-size: 1rem;
    margin-bottom: 60px;
  }
  
  .frame-guide-steps {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .frame-guide-step {
    max-width: 100%;
  }
  
  .frame-guide-box h3 {
    font-size: 1.2rem;
  }
  
  .frame-guide-box p {
    font-size: 0.9rem;
  }
}


/*
==================================================
  Mobile Responsive Styles
==================================================
*/

/* ============================================
   MOBILE HEADER STYLES (768px and below)
   ============================================ */

@media (max-width: 768px) {
    /* Remove header shadows on mobile */
    header {
        box-shadow: none !important;
        border-bottom: none !important;
    }
    
    /* Top banner mobile override */
    .top-banner {
      font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
      font-weight: 300;
      font-variant-caps: small-caps;
      letter-spacing: 0;
      background: #070707 !important;
      color: #f9f2e6 !important;
    }
    
    /* Mobile header layout - Standardized for all mobile dimensions */
    .secondary-header {
        padding: 15px !important;
        height: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: none !important;
        /* Completely override desktop grid layout */
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        grid-template-rows: none !important;
        grid: none !important;
        /* Force flexbox and prevent grid inheritance */
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    /* Mobile element positioning - Consistent across all dimensions */
    .cart-nav {
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        /* Force out of any grid or flex context */
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .cart-nav svg {
        width: 1.4rem;
        height: 1.4rem;
    }
    
    /* Cart count styling */
    .cart-nav .cart-count {
      font-family: 'Calibri', 'Arial', sans-serif !important;
        font-size: 0.9rem !important;
        font-weight: 400 !important;
        letter-spacing: -0.025em !important;
    }
    
    .header-title {
        font-size: 1.8rem !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        /* Ensure consistent sizing */
        white-space: nowrap !important;
    }
    
    .nav {
        display: none !important;
        grid-area: unset !important;
    }
    
    .burger-menu {
        display: flex !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        /* Consistent burger size across all mobile */
        width: 24px !important;
        height: 18px !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .mobile-nav {
        display: block;
    }
}

/* Small screens (600px and below) */
@media (max-width: 600px) {
    .mobile-nav {
        width: 280px;
        padding: 70px 30px 30px 30px;
    }
    
    .mobile-nav a {
      font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
        font-size: 1.08rem;
        padding: 12px 0;
    }
}

/* Very small screens (480px and below) */
@media (max-width: 480px) {
    .mobile-nav {
        width: 250px;
        padding: 65px 25px 25px 25px;
    }
    
    .mobile-nav a {
      font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
        font-size: 1rem;
        padding: 10px 0;
    }
    
    /* Keep header size consistent - don't override padding */
}

/* Extra small screens (360px and below) */
@media (max-width: 360px) {
    .mobile-nav {
        width: 220px;
        padding: 60px 20px 20px 20px;
    }
    
    .mobile-nav a {
      font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
        font-size: 0.95rem;
        padding: 8px 0;
    }
}

/*
==================================================
  Footer
==================================================
*/

.footer {
background: #070707;
  color: #f9f2e6;
  padding: 40px 28px;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  font-size: 16px;
  margin-top: 0;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  align-items: flex-start;
  gap: 32px 72px;
  max-width: 980px;
  margin: 0 auto;
}

.footer-col {
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0;
  font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace;
  letter-spacing: 0.05em;
  color: #f9f2e6;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  margin-bottom: 0;
}

.footer-col a {
  color: #f9f2e6;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.footer-col p {
  margin: 0;
  color: #f9f2e6;
  font-family: 'Even Mono Trial', 'Roboto Mono', monospace;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.footer-title {
  font-family: 'Trolleybus Trial', 'Lexend', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/*
==================================================
  Hero Section Specific Styles
==================================================
*/

/* --- Hero Section Content --- */
.hero-left h1 {
  font-family: 'NType82', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
  font-size: 3.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero-left p {
  font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace;
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  text-align: center;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-button {
  background-color: #070707;
  color: #f9f2e6;
  padding: 14px 32px;
  border: 1px solid #070707;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 16px;
  font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace;
  font-weight: 400;
  letter-spacing: 0;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.hero-left .hero-button,
.hero-section.reverse .hero-right .hero-button {
  font-variant-caps: normal;
}

.hero-button:hover {
background-color: transparent;
color: #070707 !important;
border-color: #070707;
}

.hero-section.reverse .hero-right h1 {
  font-family: 'NType82', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
  font-size: 3.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero-section.reverse .hero-right p {
  font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace;
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  text-align: center;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-section.reverse .hero-right .hero-button {
  background-color: #070707;
  color: #f9f2e6;
  padding: 14px 32px;
  border: 1px solid #070707;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 16px;
  font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace;
  font-weight: 400;
  letter-spacing: 0;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* Keep non-Trolleybus homepage typography on Arha with neutral tracking. */
.top-banner,
.nav a,
.mobile-nav a,
.cart-nav .cart-count,
.quad-content p,
.frame-option,
.frame-option p:last-child,
button,
.frame-guide-section,
.frame-guide-subtitle,
.frame-guide-step-number,
.frame-guide-box p,
.footer,
.footer-col a,
.footer-col p,
.hero-left p,
.hero-button,
.hero-section.reverse .hero-right p,
.hero-section.reverse .hero-right .hero-button {
  font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
  font-weight: 400 !important;
  letter-spacing: -0.05em !important;
  line-height: 1.1 !important;
  font-variant-caps: normal !important;
}

.hero-left p,
.hero-section.reverse .hero-right p {
  word-spacing: -0.18em !important;
}

.info-bar,
.info-bar div {
  font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.1 !important;
  font-variant-caps: normal !important;
}

.top-banner {
  font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.1 !important;
  font-variant-caps: normal !important;
}

.frame-option-text p:first-child {
  font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
  letter-spacing: 0.05em !important;
  line-height: 1.1 !important;
}

body {
  font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
}

body *,
body *::before,
body *::after {
  font-weight: 400 !important;
  letter-spacing: -0.05em !important;
}

.hero-left h1,
.hero-section.reverse .hero-right h1,
.mobile-section-content h2 {
  font-family: 'NType82', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
  letter-spacing: -0.01em !important;
  line-height: 1.1 !important;
}

.frame-guide-title,
.frame-guide-box h3 {
  font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
  letter-spacing: 0.05em !important;
  line-height: 1.1 !important;
}

.hero-section.reverse .hero-right .hero-button:hover {
background-color: transparent;
color: #070707 !important;
border-color: #070707;
}

/* Additional Cooper Light font definition */
@font-face {
    font-family: 'Cooper Light';
    src: url('../Homepage/assets/fonts/Cooper/cooperl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  font-display: swap;
}

/* FAQ section font overrides */
.faq-section h1 {
    font-family: 'Cooper Light', serif !important;
    font-weight: bold !important;
    font-style: normal !important;
}

.faq-section > p {
    font-family: 'Cooper Light', serif !important;
    font-weight: normal !important;
    font-style: normal !important;
}

/* Desktop mode - remove secondary header border */
@media (min-width: 769px) {
    .secondary-header {
        border-bottom: none !important;
        box-shadow: none !important;
    }
}

/* Footer styles */
.footer, .footer * {
    color: #fcfcfa !important;
}

.footer h3 {
  font-family: var(--font-family-display) !important;
}

.footer a, .footer p, .footer li, .footer h3 {
    transition: color 0.18s cubic-bezier(.4,0,.2,1);
}

.footer a:hover, .footer p:hover, .footer li:hover, .footer h3:hover {
    color: #e0e0dc !important;
}

.header-title:hover {
    color: inherit !important;
    text-decoration: none !important;
    cursor: default !important;
}

/* Cart count font styling to match FAQ page */
.cart-nav .cart-count {
  font-family: var(--font-family) !important;
    font-size: 0.9rem !important;
  font-weight: 400 !important;
}

/* Top banner override for FAQ page */
.top-banner {
    background: #070707 !important;
    color: #fff !important;
}

/* Set logo color in top left header */
.logo, .header-logo {
    color: #070707 !important;
}

body {
  font-family: var(--font-family);
    background-color: #ffffff;
    color: #070707;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    min-height: 100vh !important;
    padding: 0 !important;
}

@font-face {
    font-family: 'Cooper Light';
    src: url('../Homepage/assets/fonts/Cooper/cooperl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  font-display: swap;
}

header, .secondary-header {
    position: relative !important;
    z-index: 1000 !important;
}

/* ============================================
   DESKTOP HEADER STYLES (769px and above)
   ============================================ */

/* Desktop header container */
header {
    background: #ffffff !important;
    width: 100% !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

/* Desktop - Remove all borders and restore clean layout */
@media (min-width: 769px) {
    /* Remove all borders from header elements */
    header,
    header *,
    .secondary-header,
    .secondary-header *,
    .top-banner,
    .header-title,
    .nav,
    .cart-nav,
    .burger-menu {
        border: 0 !important;
        border-bottom: 0 !important;
        border-top: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Secondary header with clean styling - NO BORDERS OR SHADOWS */
    .secondary-header {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        padding: 0 40px !important;
        height: 72px !important;
        position: relative !important;
        background: #ffffff !important;
        box-shadow: none !important;
        /* Explicit border removal */
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
    }
    
    /* Ensure header container has no borders */
    header {
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
    }
}

/* Desktop tablet range (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .header-title {
        justify-self: start !important;
        font-size: 2.1rem !important;
    }
    
    .nav {
        display: flex !important;
        justify-self: center !important;
    }
    
    .cart-nav {
        justify-self: end !important;
    }
    
    .burger-menu {
        display: none !important;
    }
}

.faq-section {
    position: relative;
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin: 48px auto 0 auto;
    padding: 2rem;
    color: #070707;
}

h1 {
  font-family: var(--font-family-display) !important;
    font-size: 2.5rem;
  font-weight: 400 !important;
  letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: #070707;
    font-style: normal !important;
}

.faq-section > p {
  font-family: var(--font-family) !important;
    font-size: 1rem;
    font-weight: normal !important;
    line-height: 1.5;
    margin: 0.5rem 0;
    font-style: normal !important;
    color: #070707;
}

.faq-email-highlight {
  font-family: var(--font-family-subheading) !important;
  font-weight: 400 !important;
}

.faq-nav {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-btn {
  font-family: var(--font-family) !important;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #070707;
    background-color: #fff;
    color: #070707;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.nav-btn:hover {
    background-color: #fff;
    color: #070707 !important;
}

.nav-btn.active {
    background-color: #070707;
    color: #fff;
}

.nav-btn.active:hover {
    background-color: #070707 !important;
    color: #fff !important;
}

.faq-container {
    border: 2px solid #070707;
    border-radius: 40px;
    padding: 2.5rem 3rem;
    text-align: left;
    background: #ffffff;
    color: #070707;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
  font-family: var(--font-family-subheading) !important;
  font-weight: 400;
  text-decoration: none;
    margin-bottom: 0.5rem;
    color: #070707;
}

.faq-item p {
  font-family: var(--font-family) !important;
    margin: 0;
    line-height: 1.6;
    color: #070707;
}

/* ========================================
   MOBILE STYLES
======================================== */

/* Burger menu styles - hidden by default - copied from Pricing */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: #070707;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Legacy mobile-nav-toggle support */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #070707;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 80px 40px 40px 40px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #070707;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10000;
    padding: 5px;
    user-select: none;
}

.mobile-nav-close:hover {
    color: #333;
}

.mobile-nav a {
    display: block;
    color: #070707;
    text-decoration: none;
    font-size: 15px;
  font-weight: 400;
  font-family: var(--font-family);
  letter-spacing: -0.05em;
  line-height: 1.1;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #333;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* ============================================
   MOBILE HEADER STYLES (768px and below)
   ============================================ */

@media (max-width: 768px) {
    /* Remove header shadows on mobile */
    header {
        box-shadow: none !important;
        border-bottom: none !important;
    }
    
    /* Top banner mobile override */
    .top-banner {
      font-family: var(--font-family-subheading);
        background: #070707 !important;
        color: #fff !important;
    }
    
    /* Mobile header layout - Standardized for all mobile dimensions */
    .secondary-header {
        padding: 0 15px !important;
        height: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: none !important;
        /* Completely override desktop grid layout */
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        grid-template-rows: none !important;
        grid: none !important;
        /* Force flexbox and prevent grid inheritance */
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    /* Mobile element positioning - Consistent across all dimensions */
    .cart-nav {
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        /* Force out of any grid or flex context */
        display: flex !important;
        align-items: center !important;
    }
    
    .header-title {
        font-size: 1.8rem !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        /* Ensure consistent sizing */
        white-space: nowrap !important;
    }
    
    .nav {
        display: none !important;
        grid-area: unset !important;
    }
    
    .burger-menu {
        display: flex !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        /* Consistent burger size across all mobile */
        width: 24px !important;
        height: 18px !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .mobile-nav {
        display: block;
    }
    
    /* Mobile FAQ Section */
    .faq-section {
        margin: 0 auto;
        padding: 1rem 1rem 2rem 1rem;
        max-width: 100%;
    }
    
    /* Mobile Typography */
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .faq-section > p {
        font-size: 0.9rem;
        margin: 0.6rem 0;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    /* Mobile FAQ Navigation */
    .faq-nav {
        margin: 2rem 0 1.5rem 0;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        padding: 0 0.5rem;
    }
    
    .nav-btn {
        font-size: 0.8rem;
        padding: 10px 16px;
        flex: 1;
        min-width: calc(50% - 0.25rem);
        border-radius: 25px;
        font-weight: 500;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-btn:active {
        transform: scale(0.98);
    }
    
    /* Mobile FAQ Container */
    .faq-container {
        border-radius: 15px;
        padding: 1.25rem 1rem;
        margin: 0 0.5rem;
        border-width: 1px;
    }
    
    .faq-item {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(7, 7, 7, 0.08);
    }
    
    .faq-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .faq-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
      font-weight: 400;
    }
    
    .faq-item p {
      font-family: var(--font-family) !important;
        font-size: 0.85rem;
        line-height: 1.6;
        margin: 0;
        color: #333;
    }
    
    /* Mobile Title Animation */
    .faq-section h1 {
        text-align: left !important;
        position: relative !important;
        overflow: hidden !important;
        display: inline-block !important;
        width: auto !important;
    }
    
    .faq-section h1::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #070707;
        transform: translateX(-100%);
        animation: slideInUnderline 1s ease-out 0.5s forwards;
    }
    
    @keyframes slideInUnderline {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
}

/* Mobile - Small Screen (600px and below) */
@media (max-width: 600px) {
    .mobile-nav {
        width: 250px;
        padding: 70px 30px 30px 30px;
    }
    

/* Homepage footer match */
.footer {
    background: #070707 !important;
    color: #fcfcfa !important;
    padding: 40px 28px !important;
  font-family: var(--font-family) !important;
    font-size: 16px !important;
    margin-top: 0 !important;
    width: 100% !important;
}

.footer,
.footer * {
    color: #fcfcfa !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
    align-items: flex-start !important;
    gap: 32px 72px !important;
    max-width: 980px !important;
    margin: 0 auto !important;
}

.footer-col {
    min-width: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.footer-col h3,
.footer-title {
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    font-family: var(--font-family-display) !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
    color: #fcfcfa !important;
    text-decoration: none !important;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.footer-col ul li {
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.footer-col a,
.footer-col p {
    color: #fcfcfa !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    font-family: var(--font-family) !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.35 !important;
}

.footer-col p {
    margin: 0 !important;
}

@media (max-width: 768px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-gap: 20px !important;
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: start !important;
    }

    .footer-col {
        text-align: center !important;
        margin-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    .footer-col:first-child {
        grid-column: 1 !important;
        justify-self: start !important;
    }

    .footer-col:nth-child(2) {
        grid-column: 2 !important;
        justify-self: end !important;
    }

    .footer-col:last-child {
        display: none !important;
    }

    .footer-col > h3 {
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: rgba(249, 242, 230, 0.95) !important;
        margin-bottom: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0 !important;
        line-height: 1.1 !important;
        text-decoration: none !important;
    }

    .footer-col > ul,
    .footer-col > p {
        display: block !important;
    }

    .footer-col ul {
        display: block !important;
    }

    .footer-col li {
        padding: 3px 0 !important;
    }

    .footer-col p {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .footer-col a,
    .footer-col p {
        color: rgba(249, 242, 230, 0.8) !important;
        display: block !important;
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        font-weight: 300 !important;
    }

    .footer-dropdown-header,
    .footer-dropdown-content,
    .footer-dropdown-arrow {
        display: none !important;
    }
}

/* Exact homepage footer */
.footer {
    background: #070707 !important;
    color: #f9f2e6 !important;
    padding: 40px 28px !important;
  font-family: var(--font-family) !important;
    font-size: 16px !important;
    margin-top: 0 !important;
    width: 100% !important;
}

.footer,
.footer * {
    color: #f9f2e6 !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
    align-items: flex-start !important;
    gap: 32px 72px !important;
    max-width: 980px !important;
    margin: 0 auto !important;
}

.footer-col {
    min-width: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.footer-col h3,
.footer h3,
.footer-title {
    font-size: 18px !important;
    font-weight: 300 !important;
    margin-bottom: 0 !important;
    font-family: var(--font-family-display) !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
    color: #f9f2e6 !important;
    text-decoration: none !important;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.footer-col ul li {
    margin-bottom: 0 !important;
}

.footer a,
.footer p,
.footer li,
.footer-col a,
.footer-col p {
    color: #f9f2e6 !important;
    text-decoration: none !important;
    font-family: var(--font-family) !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
}

.footer-col p {
    margin: 0 !important;
}

@media (max-width: 768px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-gap: 20px !important;
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: start !important;
    }

    .footer-col {
        text-align: center !important;
        margin-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    .footer-col:first-child {
        grid-column: 1 !important;
        justify-self: start !important;
    }

    .footer-col:nth-child(2) {
        grid-column: 2 !important;
        justify-self: end !important;
    }

    .footer-col:last-child {
        display: none !important;
    }

    .footer-col > h3 {
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: rgba(249, 242, 230, 0.95) !important;
        margin-bottom: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0 !important;
        line-height: 1.1 !important;
        text-decoration: none !important;
    }

    .footer-col > ul,
    .footer-col > p {
        display: block !important;
    }

    .footer-col ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }

    .footer-col li {
        padding: 3px 0 !important;
    }

    .footer-col p {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .footer-col a,
    .footer-col p {
        color: rgba(249, 242, 230, 0.8) !important;
        text-decoration: none !important;
        display: block !important;
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        font-weight: 300 !important;
        letter-spacing: -0.05em !important;
    }

    .footer-dropdown-header,
    .footer-dropdown-content,
    .footer-dropdown-arrow {
        display: none !important;
    }
}
    .mobile-nav a {
        font-size: 15px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    /* Keep standardized mobile header - don't override positioning */
    
    .faq-section {
        padding: 0.75rem 0.5rem 1.5rem 0.5rem;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .faq-section > p {
        font-size: 0.85rem;
        margin: 0.5rem 0;
        padding: 0 0.25rem;
    }
    
    .faq-nav {
        margin: 1.5rem 0 1rem 0;
        gap: 0.4rem;
        padding: 0 0.25rem;
    }
    
    .nav-btn {
        font-size: 0.75rem;
        padding: 8px 12px;
        min-width: 100%;
        flex: none;
        margin-bottom: 0.4rem;
        border-radius: 20px;
    }
    
    .faq-container {
        padding: 1rem 0.75rem;
        margin: 0 0.25rem;
        border-radius: 12px;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .faq-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.25;
    }
    
    .faq-item p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    /* Mobile Title Animation */
    .faq-section h1 {
        text-align: left !important;
        position: relative !important;
        overflow: hidden !important;
        display: inline-block !important;
        width: auto !important;
    }
    
    .faq-section h1::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #070707;
        transform: translateX(-100%);
        animation: slideInUnderline 1s ease-out 0.5s forwards;
    }
    
    @keyframes slideInUnderline {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
}

/* Ultra small mobile screens (320px and below) */
@media (max-width: 360px) {
    .burger-menu {
        width: 20px;
        height: 14px;
    }
}

/* Ensure footer displays properly */
.footer {
    margin-top: auto;
    background: #070707;
    color: #ffffff;
    border-top: 2px solid #070707;
}

/* Mobile Footer Optimization */
@media (max-width: 768px) {
    /* Footer mobile optimization - Grid layout for precise positioning */
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-gap: 20px !important;
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: start !important;
    }

    /* Footer column styling */
    .footer-col {
        text-align: center;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    /* Position first column (Navigation) on the left */
    .footer-col:first-child {
        grid-column: 1;
        justify-self: start;
    }

    /* Position second column (Contact) on the right */
    .footer-col:nth-child(2) {
        grid-column: 2;
        justify-self: end;
    }

    /* Hide Social column in mobile view */
    .footer-col:last-child {
        display: none !important;
    }

    /* Show regular footer headings */
    .footer-col > h3 {
        font-size: 0.8rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        text-decoration: none !important;
    }

    /* Show regular footer content */
    .footer-col > ul,
    .footer-col > p {
        display: block !important;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col li {
        padding: 3px 0;
    }

    .footer-col p {
        padding: 3px 0;
        margin: 0;
    }

    .footer-col a,
    .footer-col p {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        font-size: 0.7rem;
        line-height: 1.3;
        font-weight: 300;
    }

    .footer-col a:hover {
        color: #ddd;
        font-weight: 400;
    }

    /* Hide all dropdown elements */
    .footer-dropdown-header,
    .footer-dropdown-content,
    .footer-dropdown-arrow {
        display: none !important;
    }
}

/* Exact homepage header match */
header {
    background: var(--background-secondary) !important;
    width: 100% !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.top-banner {
    text-align: center !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-variant-caps: normal !important;
    color: #f9f2e6 !important;
    background-color: #070707 !important;
    border-bottom: 1px solid var(--border-color) !important;
    letter-spacing: 0.05em !important;
    line-height: 1.1 !important;
}

.secondary-header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    height: 72px !important;
    padding: 0 40px !important;
}

.header-title {
    justify-self: start !important;
    font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-size: 2.35rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    color: #070707 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: currentColor !important;
}

.header-title:hover {
    color: #070707 !important;
    text-decoration: none !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: currentColor !important;
}

.nav {
    display: flex !important;
    gap: 40px !important;
    justify-self: center !important;
}

.nav a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-size: 1.08rem !important;
    font-weight: 400 !important;
    font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    letter-spacing: -0.05em !important;
    line-height: 1 !important;
    position: relative !important;
    padding: 8px 4px !important;
    transition: color 0.3s ease !important;
}

.mobile-nav a {
    font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-weight: 400 !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
}

.nav a::after {
    background: var(--accent-color) !important;
}

.nav a:hover {
    color: var(--text-primary) !important;
}

.cart-nav {
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.cart-nav svg {
    width: 22px !important;
    height: 22px !important;
    stroke: var(--text-primary) !important;
    stroke-width: 2 !important;
    transition: stroke 0.2s ease !important;
}

.cart-nav .cart-count {
    font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
    font-variant-caps: normal !important;
    color: var(--text-primary) !important;
    background: transparent !important;
    min-width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

.cart-nav:hover svg {
    stroke: var(--accent-color) !important;
}

.cart-nav:hover .cart-count {
    color: var(--accent-color) !important;
}

@media (max-width: 768px) {
    header {
        box-shadow: none !important;
        border-bottom: none !important;
    }

    .secondary-header {
        padding: 0 15px !important;
        height: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: none !important;
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        grid-template-rows: none !important;
        grid: none !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .cart-nav {
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
    }

    .cart-nav svg {
        width: 1.4rem !important;
        height: 1.4rem !important;
    }

    .cart-nav .cart-count {
        font-family: 'Calibri', 'Arial', sans-serif !important;
        font-size: 0.9rem !important;
        font-weight: 400 !important;
        letter-spacing: -0.025em !important;
    }

    .header-title {
        font-size: 1.8rem !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .nav {
        display: none !important;
        grid-area: unset !important;
    }

    .burger-menu {
        display: flex !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        grid-area: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        width: 24px !important;
        height: 18px !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .mobile-nav {
        display: block !important;
    }
}

@media (max-width: 600px) {
    .mobile-nav {
        width: 280px !important;
        padding: 70px 30px 30px 30px !important;
    }

    .mobile-nav a {
        font-size: 1.08rem !important;
        padding: 12px 0 !important;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 250px !important;
        padding: 65px 25px 25px 25px !important;
    }

    .mobile-nav a {
        font-size: 1rem !important;
    }
}

/* Migrated from page head styles */

@font-face {
        font-family: 'Trolleybus Trial';
        src: url('../Homepage/assets/Trolleybus/CopyrightBolditalicStudio-TrolleybusTrial.otf') format('opentype');
        font-display: swap;
}

      @font-face {
        font-family: 'Even Mono Trial';
        src: url('../Homepage/assets/CopyrightBolditalicStudio-EvenMonoRegularTrial.otf') format('opentype');
        font-display: swap;
}

      .top-banner { text-align: center !important; height: 40px !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 1rem !important; font-weight: 300 !important; font-family: var(--font-family-subheading) !important; font-variant-caps: small-caps !important; color: #f9f2e6 !important; background-color: #070707 !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; letter-spacing: 0 !important; line-height: 1.1 !important; }
      header { background: #ffffff !important; width: 100% !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important; position: sticky !important; top: 0 !important; z-index: 1000 !important; }
      .secondary-header { display: grid !important; grid-template-columns: 1fr auto 1fr !important; align-items: center !important; height: 72px !important; padding: 0 40px !important; background: #ffffff !important; }
      .header-title { justify-self: start !important; font-family: var(--font-family-display) !important; font-size: 2.35rem !important; letter-spacing: 0.05em !important; line-height: 1 !important; font-weight: 400 !important; color: #070707 !important; text-decoration: none !important; }
      .nav { display: flex !important; gap: 40px !important; justify-self: center !important; }
      .nav a { color: #3b3b3b !important; text-decoration: none !important; font-size: 1.08rem !important; font-weight: 400 !important; font-family: var(--font-family) !important; letter-spacing: -0.05em !important; line-height: 1 !important; position: relative !important; padding: 8px 4px !important; transition: color 0.3s ease !important; }
      .nav a::after { content: '' !important; position: absolute !important; bottom: 0 !important; left: 0 !important; width: 100% !important; height: 2px !important; background: #070707 !important; transform: scaleX(0) !important; transform-origin: center !important; transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1) !important; }
      .nav a:hover { color: #070707 !important; }
      .nav a:hover::after { transform: scaleX(1) !important; }
      .cart-nav { justify-self: end !important; display: flex !important; align-items: center !important; gap: 6px !important; text-decoration: none !important; }
      .cart-nav svg { width: 22px !important; height: 22px !important; stroke: #070707 !important; stroke-width: 2 !important; }
      .cart-nav .cart-count { color: #070707 !important; background: transparent !important; font-family: var(--font-family) !important; font-size: 0.9rem !important; font-weight: 400 !important; letter-spacing: -0.05em !important; line-height: 1.1 !important; min-width: auto !important; height: auto !important; padding: 0 !important; }
      .burger-menu { display: none !important; flex-direction: column !important; cursor: pointer !important; width: 24px !important; height: 18px !important; justify-content: space-between !important; }
      .burger-line { width: 100% !important; height: 2px !important; background-color: #070707 !important; transition: all 0.3s ease !important; }
      .burger-menu.active .burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px) !important; }
      .burger-menu.active .burger-line:nth-child(2) { opacity: 0 !important; }
      .burger-menu.active .burger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px) !important; }
      .mobile-nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 9998; }
      .mobile-nav { display: none; position: fixed; top: 0; right: -300px; width: 300px; height: 100%; background: #ffffff; z-index: 9999; transition: right 0.3s ease; padding: 80px 40px 40px 40px; box-shadow: -2px 0 10px rgba(0,0,0,0.1); }
      .mobile-nav.active { right: 0; }
      .mobile-nav-close { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: #070707; cursor: pointer; font-weight: 300; line-height: 1; transition: color 0.3s ease; z-index: 10000; padding: 5px; user-select: none; }
      .mobile-nav a { display: block; color: #070707; text-decoration: none; font-size: 1.1rem; font-weight: 400; font-family: var(--font-family); letter-spacing: -0.05em; padding: 15px 0; border-bottom: 1px solid #f0f0f0; transition: color 0.3s ease; }
      @media (max-width: 768px) { .secondary-header { padding: 0 15px !important; grid-template-columns: auto 1fr auto !important; gap: 15px !important; background: #ffffff !important; } .header-title { font-size: 52px !important; } .cart-nav { justify-self: start !important; } .nav { display: none !important; } .burger-menu { display: flex !important; order: 1 !important; justify-self: end !important; } .mobile-nav { display: block; } }
      @media (max-width: 480px) { .secondary-header { padding: 0 10px !important; height: 60px !important; gap: 10px !important; } .header-title { font-size: 52px !important; } .burger-menu { width: 22px !important; height: 16px !important; } .mobile-nav { width: 250px; padding: 65px 25px 25px 25px; } }

.footer {
        background: #070707 !important;
        color: #f9f2e6 !important;
        padding: 40px 28px !important;
        font-family: var(--font-family) !important;
        font-size: 16px !important;
        margin-top: 0 !important;
        width: 100% !important;
      }

      .footer,
      .footer * {
        color: #f9f2e6 !important;
      }

      .footer-content {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
        align-items: flex-start !important;
        gap: 32px 72px !important;
        max-width: 980px !important;
        margin: 0 auto !important;
      }

      .footer-col {
        min-width: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
      }

      .footer-col h3,
      .footer-title {
        font-size: 18px !important;
        font-weight: 400 !important;
        margin-bottom: 0 !important;
        font-family: var(--font-family-display) !important;
        letter-spacing: 0.05em !important;
        line-height: 1.1 !important;
        color: #f9f2e6 !important;
        text-decoration: none !important;
      }

      .footer-col ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
      }

      .footer-col ul li {
        margin-bottom: 0 !important;
      }

      .footer a,
      .footer p,
      .footer li,
      .footer-col a,
      .footer-col p {
        font-family: 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
        font-weight: 400 !important;
        letter-spacing: -0.05em !important;
        line-height: 1.1 !important;
        text-decoration: none !important;
        color: #f9f2e6 !important;
      }

      .footer-col p {
        margin: 0 !important;
      }

      .footer-dropdown-header,
      .footer-dropdown-content,
      .footer-dropdown-arrow {
        display: none !important;
      }

      @media (max-width: 768px) {
        .footer-content {
          grid-template-columns: 1fr 1fr !important;
          grid-gap: 20px !important;
          padding: 20px 15px !important;
          width: 100% !important;
          box-sizing: border-box !important;
          align-items: start !important;
        }

        .footer-col {
          margin-bottom: 0 !important;
          align-items: center !important;
          justify-content: flex-start !important;
          gap: 0 !important;
        }

        .footer-col:first-child {
          grid-column: 1 !important;
          justify-self: start !important;
        }

        .footer-col:nth-child(2) {
          grid-column: 2 !important;
          justify-self: end !important;
        }

        .footer-col:last-child {
          display: none !important;
        }

        .footer-col > h3 {
          font-size: 0.8rem !important;
          font-weight: 500 !important;
          color: rgba(249, 242, 230, 0.95) !important;
          margin-bottom: 12px !important;
          text-transform: uppercase !important;
          letter-spacing: 0 !important;
          line-height: 1.1 !important;
        }

        .footer-col > ul,
        .footer-col > p {
          display: block !important;
        }

        .footer-col ul {
          display: block !important;
        }

        .footer-col li,
        .footer-col p {
          padding: 3px 0 !important;
        }

        .footer-col a,
        .footer-col p {
          color: rgba(249, 242, 230, 0.8) !important;
          display: block !important;
          font-size: 0.7rem !important;
          line-height: 1.3 !important;
          font-weight: 300 !important;
        }
      }

.top-banner {
        font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
        font-weight: 400 !important;
        letter-spacing: 0.05em !important;
        line-height: 1.1 !important;
        font-variant-caps: normal !important;
      }

      .secondary-header {
        height: 72px !important;
        padding: 0 40px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }

      .header-title,
      .nav,
      .cart-nav,
      .burger-menu {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }

      @media (max-width: 768px) {
        .secondary-header {
          padding: 0 15px !important;
          grid-template-columns: auto 1fr auto !important;
          gap: 15px !important;
          background: #ffffff !important;
        }

        .header-title {
          font-size: 52px !important;
        }

        .cart-nav {
          justify-self: start !important;
        }

        .burger-menu {
          display: flex !important;
          order: 1 !important;
        }
      }

      @media (max-width: 480px) {
        .secondary-header {
          padding: 0 10px !important;
          height: 60px !important;
          gap: 10px !important;
        }

        .header-title {
          font-size: 52px !important;
        }
      }

      .nav a,
      .mobile-nav a,
      .legacy-nav a,
      .legacy-mobile-nav a {
        font-family: 'NType82', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
      }

      button,
      .hero-button,
      .frame-guide-section .hero-button,
      .nav-btn {
        font-family: 'Trolleybus Trial', 'Cutive Mono', 'Even Mono Trial', 'Roboto Mono', monospace !important;
        letter-spacing: 0.05em !important;
      }

/* FAQ page spacing */
html {
  min-height: 100%;
}

body {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}

.faq-section {
  padding-bottom: 48px !important;
  flex: 0 0 auto;
}

.footer {
  margin-top: auto !important;
  flex-shrink: 0;
}
/* Shared mobile header and pricing-style drawer */
@media (max-width: 768px) {
  header {
    background: #ffffff !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }

  .top-banner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    height: auto !important;
    padding: 8px 16px !important;
    background: #070707 !important;
    color: #f9f2e6 !important;
    border: 0 !important;
    text-align: center !important;
    font-family: var(--homepage-font-subheading, var(--font-family-subheading, 'NType82')) !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
  }

  .secondary-header {
    box-sizing: border-box !important;
    position: relative !important;
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) 72px !important;
    align-items: center !important;
    width: 100% !important;
    height: 65px !important;
    min-height: 65px !important;
    max-height: 65px !important;
    padding: 0 15px !important;
    gap: 0 !important;
    background: #ffffff !important;
    color: #070707 !important;
    border: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .secondary-header .cart-nav {
    position: static !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    transform: none !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #2d3748 !important;
    text-decoration: none !important;
  }

  .secondary-header .cart-nav svg {
    width: 1.35rem !important;
    height: 1.35rem !important;
    stroke: #2d3748 !important;
    stroke-width: 2 !important;
  }

  .secondary-header .cart-nav .cart-count,
  .secondary-header .cart-count {
    color: #2d3748 !important;
    background: transparent !important;
    font-family: var(--homepage-font-body, var(--font-family, 'Cutive Mono')) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
  }

  .secondary-header .header-title {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    transform: translateY(4px) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 65px !important;
    color: #070707 !important;
    text-decoration: none !important;
    font-family: var(--homepage-font-title, var(--font-family-display, 'Trolleybus Trial')) !important;
    font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-variant-caps: normal !important;
    text-transform: none !important;
    letter-spacing: 0.05em !important;
    line-height: 0.95 !important;
    white-space: nowrap !important;
  }

  .secondary-header .nav {
    display: none !important;
  }

  .secondary-header .burger-menu {
    position: static !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    transform: none !important;
    margin: 0 !important;
    display: flex !important;
    width: 24px !important;
    height: 18px !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    cursor: pointer !important;
  }

  .secondary-header .burger-line,
  .burger-menu .burger-line {
    width: 100% !important;
    height: 2px !important;
    background: #070707 !important;
    transition: all 0.3s ease !important;
  }

  .burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0 !important;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 9998 !important;
  }

  .mobile-nav-overlay.active {
    display: block !important;
  }

  .mobile-nav {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: -300px !important;
    width: min(300px, 82vw) !important;
    height: 100vh !important;
    padding: 78px 28px 28px !important;
    background: #ffffff !important;
    box-shadow: -2px 0 14px rgba(0, 0, 0, 0.08) !important;
    transition: right 0.3s ease !important;
    z-index: 9999 !important;
  }

  .mobile-nav.active {
    right: 0 !important;
  }

  .mobile-nav-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    padding: 4px !important;
    color: #070707 !important;
    font-family: var(--homepage-font-body, var(--font-family, 'Cutive Mono')) !important;
    font-size: 2rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  .mobile-nav a {
    display: block !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(7, 7, 7, 0.08) !important;
    color: #070707 !important;
    text-decoration: none !important;
    font-family: var(--homepage-font-body, var(--font-family, 'Cutive Mono')) !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.05em !important;
    line-height: 1.1 !important;
  }

  .mobile-nav a:last-child {
    border-bottom: 0 !important;
  }
}
/* Exact Pricing mobile footer */
.footer,
footer.footer {
  box-sizing: border-box !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 32px 20px 36px !important;
  background: #070707 !important;
  color: #f9f2e6 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer,
.footer * {
  color: #f9f2e6 !important;
}

.footer .footer-content,
footer.footer .footer-content,
.footer-content {
  box-sizing: border-box !important;
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  align-items: start !important;
  justify-items: stretch !important;
}

.footer .footer-content .footer-col,
.footer .footer-content .footer-col:first-child,
.footer .footer-content .footer-col:nth-child(2),
.footer .footer-content .footer-col:nth-child(3),
.footer .footer-content .footer-col:last-child,
.footer-col,
.footer-col:first-child,
.footer-col:nth-child(2),
.footer-col:nth-child(3),
.footer-col:last-child {
  box-sizing: border-box !important;
  display: flex !important;
  flex: initial !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  grid-column: auto !important;
  grid-row: auto !important;
  order: initial !important;
  text-align: left !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer .footer-content .footer-col > h3,
.footer .footer-content .footer-col h3,
.footer-col h3,
.footer h3,
.footer-title {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Trolleybus Trial', 'Cutive Mono', monospace !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.1 !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.footer .footer-content .footer-col > ul,
.footer .footer-content .footer-col ul,
.footer-col ul,
.footer-col > ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer .footer-content .footer-col ul li,
.footer-col ul li,
.footer-col li,
.footer li {
  display: list-item !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer .footer-content .footer-col > p,
.footer .footer-content .footer-col p,
.footer .footer-content .footer-col a,
.footer-col a,
.footer-col p,
.footer-col > p,
.footer li,
.footer p,
.footer a,
.footer-col p a {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  text-decoration: none !important;
  font-family: 'Cutive Mono', monospace !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.05em !important;
  line-height: 1.35 !important;
  text-transform: none !important;
}

.footer .footer-content .footer-col > p,
.footer .footer-content .footer-col p,
.footer-col p,
.footer-col > p,
.footer p {
  display: block !important;
}

.footer .footer-content .footer-col a,
.footer-col a,
.footer a,
.footer-col p a {
  display: inline !important;
}

.footer-dropdown-header,
.footer-dropdown-content,
.footer-dropdown-arrow {
  display: none !important;
}
