/* ========================================
   Chirp — "Golden Hour Connectivity" Theme
   Deep forest + warm sunset + cyan data trails
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: #FFFBF5;
  background-color: #1C3721;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Parallax background — scrolls at ~35% of content speed */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 350vh;
  z-index: -1;
  background: url('DigitalAssets/scroll-bg.png') center top / 100% 100% no-repeat;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

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

/* --- CSS Custom Properties --- */
:root {
  /* Legacy aliases — auto-update all existing var() references */
  --warm-orange: #FF8C42;
  --light-orange: #FFB347;
  --sunset-pink: #C4956A;
  --wood-brown: #D4A54A;
  --dark-green: #E8DCC8;
  --light-blue: #7EC8E3;
  --dark-text: #FFFBF5;
  --off-white: #1C3721;
  --white: #234028;

  /* Dark palette */
  --bg-deep: #162D1A;
  --bg-primary: #1C3721;
  --bg-secondary: #234028;
  --bg-card: rgba(42, 72, 48, 0.85);
  --bg-card-solid: #2A4830;
  --bg-glass: rgba(32, 56, 36, 0.55);

  /* Text */
  --text-primary: #FFFBF5;
  --text-secondary: #D4C4A8;
  --text-muted: #9B8E78;

  /* Accents */
  --campfire-orange: #FF8C42;
  --accent-cyan: #E8DCC8;
  --accent-gold: #D4A54A;
  --evening-pink: #C4956A;
  --forest-green: #4CAF50;

  /* Borders & Glow */
  --border-amber: rgba(255, 193, 7, 0.18);
  --border-amber-strong: rgba(255, 193, 7, 0.35);
  --border-cyan: rgba(232, 220, 200, 0.2);
  --glow-orange: rgba(255, 140, 66, 0.35);
  --glow-cyan: rgba(232, 220, 200, 0.15);
  --glow-gold: rgba(212, 165, 74, 0.15);

  --nav-height: 100px;
  --max-width: 1200px;
  --section-padding: 80px 24px;
  --border-radius: 14px;
  --transition: 0.3s ease;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-padding {
  padding: var(--section-padding);
}

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

/* ========================================
   Navigation — frosted glass
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(58, 50, 42, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-amber);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(58, 50, 42, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 var(--border-amber);
}

.nav-inner {
  width: 100%;
  padding: 0 40px;
  height: calc(var(--nav-height) * 1.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 207px;
  height: 92px;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition), text-shadow var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-cyan);
  text-shadow: 0 0 12px var(--glow-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--glow-cyan);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(58, 50, 42, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  border-bottom: 1px solid var(--border-amber);
}

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

.mobile-menu a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 193, 7, 0.08);
  transition: color var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent-cyan);
}

/* ========================================
   Hero Sections
   ======================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-home {
  height: 100vh;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

.hero-home .hero-bg {
  background-position: center;
}

.hero-home .hero-bg::after {
  background: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 400px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.hero h1 {
  color: #FFFBF5;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 140, 66, 0.15);
}

.hero p {
  color: rgba(255, 251, 245, 0.9);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-content .btn {
  margin: 6px 8px;
}

.hero-short {
  min-height: 40vh;
  padding: 180px 24px 50px;
}

/* ========================================
   Buttons — gradient fills with glow
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #FF8C42 0%, #F2709C 100%);
  color: #FFFBF5;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.45), 0 0 20px rgba(255, 140, 66, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 10px rgba(95, 251, 241, 0.1);
}

.btn-outline:hover {
  background: rgba(95, 251, 241, 0.08);
  box-shadow: 0 8px 30px rgba(95, 251, 241, 0.25), 0 0 15px rgba(95, 251, 241, 0.15);
  color: #FFFBF5;
}

.btn-green {
  background: linear-gradient(135deg, #4CAF50, #2D5A27);
  color: #FFFBF5;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.btn-green:hover {
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.35), 0 0 15px rgba(76, 175, 80, 0.15);
}

/* ========================================
   Section — Problem
   ======================================== */
.problem-section {
  background: transparent;
  padding: var(--section-padding);
}

.problem-section h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 20px var(--glow-gold);
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.problem-grid .problem-card {
  flex: 0 1 calc(50% - 12px);
}

.problem-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-amber);
  border-left: 4px solid var(--evening-pink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 126, 179, 0.08);
}

.problem-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
}

.problem-card h3 {
  color: var(--evening-pink);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.problem-card-compact {
  display: flex;
  align-items: center;
  padding: 20px 24px;
}

.problem-card-compact p {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

/* ========================================
   Section — We're Building a Better Way
   ======================================== */
.building-section {
  background: transparent;
  padding: var(--section-padding);
  text-align: center;
}

.building-section h2 {
  color: var(--accent-cyan);
  margin-bottom: 24px;
  text-shadow: 0 0 20px var(--glow-cyan);
}

.building-text {
  max-width: 750px;
  margin: 0 auto;
}

.building-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========================================
   Section — Product Capabilities (glass)
   ======================================== */
.capabilities-section {
  position: relative;
  background: transparent;
  padding: var(--section-padding);
  overflow: hidden;
}

.capabilities-bg {
  display: none;
}

.capabilities-content {
  position: relative;
  z-index: 1;
}

.capabilities-section h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 0 0 24px var(--glow-gold);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.capability-card {
  background: rgba(32, 56, 36, 0.55);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--border-amber);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.capability-card:hover {
  transform: translateY(-6px);
  background: rgba(38, 66, 42, 0.75);
  border-color: var(--accent-cyan);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(95, 251, 241, 0.1),
    0 0 40px rgba(255, 213, 79, 0.06);
}

.capability-card .icon {
  font-size: 2.2rem;
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-card .icon svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 6px rgba(255, 179, 71, 0.3));
}

.capability-card h3 {
  color: #FFFBF5;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.capability-card p {
  color: rgba(212, 196, 168, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}

.capability-card.centered {
  grid-column: 2;
}

/* ========================================
   Section — Who We Serve
   ======================================== */
.serve-section {
  background: transparent;
  padding: var(--section-padding);
  text-align: center;
}

.serve-section h2 {
  color: var(--accent-cyan);
  margin-bottom: 40px;
  text-shadow: 0 0 20px var(--glow-cyan);
}

.serve-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.serve-pill {
  background: rgba(38, 66, 42, 0.6);
  border: 2px solid var(--border-cyan);
  color: var(--accent-cyan);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.serve-pill:hover {
  background: rgba(95, 251, 241, 0.12);
  border-color: var(--accent-cyan);
  color: #FFFBF5;
  box-shadow: 0 0 20px rgba(95, 251, 241, 0.2), 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* ========================================
   Section — CTA Banner
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #FF8C42, #F2709C);
  padding: 60px 24px;
  text-align: center;
  box-shadow: 0 0 60px rgba(255, 140, 66, 0.15) inset;
}

.cta-section h2 {
  color: #FFFBF5;
  margin-bottom: 24px;
}

.cta-section p {
  color: rgba(255, 251, 245, 0.9);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ========================================
   Section — About / Mission
   ======================================== */
.mission-section {
  background: transparent;
  padding: var(--section-padding);
}

.mission-section h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 24px;
  text-shadow: 0 0 20px var(--glow-gold);
}

.mission-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.mission-text p {
  margin-bottom: 16px;
}

.highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
  border-left: 4px solid var(--campfire-orange);
  padding: 24px 28px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), -4px 0 15px rgba(255, 140, 66, 0.06);
}

.highlight-box h3 {
  color: var(--campfire-orange);
  margin-bottom: 8px;
}

/* ========================================
   Section — Features / What We're Building
   ======================================== */
.features-section {
  background: transparent;
  padding: var(--section-padding);
}

.features-section h2 {
  color: var(--accent-cyan);
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 0 0 20px var(--glow-cyan);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-amber);
  border-top: 4px solid var(--accent-cyan);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(95, 251, 241, 0.06);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   Section — How It Works
   ======================================== */
.how-section {
  background: transparent;
  padding: var(--section-padding);
}

.how-section h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 0 0 20px var(--glow-gold);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FF8C42, #F2709C);
  color: #FFFBF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.step-content h3 {
  color: var(--text-primary);
  margin-bottom: 4px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   Section — Contact Info
   ======================================== */
.contact-info-section {
  background: transparent;
  padding: var(--section-padding);
  text-align: center;
}

.contact-info-section h2 {
  color: var(--accent-gold);
  margin-bottom: 40px;
  text-shadow: 0 0 20px var(--glow-gold);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-amber);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-amber-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-gold);
}

.contact-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card .icon svg {
  filter: drop-shadow(0 0 4px rgba(255, 213, 79, 0.3));
}

.contact-card h3 {
  color: var(--text-primary);
  margin-bottom: 4px;
}

a.contact-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.contact-card a,
.contact-card span {
  color: var(--campfire-orange);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color var(--transition), text-shadow var(--transition);
}

.contact-card a:hover {
  color: var(--evening-pink);
  text-shadow: 0 0 10px rgba(255, 126, 179, 0.3);
}

/* ========================================
   Contact Form
   ======================================== */
.form-section {
  background: transparent;
  padding: var(--section-padding);
}

.form-section h2 {
  color: var(--accent-cyan);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 20px var(--glow-cyan);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border-amber);
  border-radius: 8px;
  background: rgba(38, 66, 42, 0.6);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(95, 251, 241, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

/* ========================================
   Feedback Modal
   ======================================== */
.feedback-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.feedback-overlay.open {
  display: flex;
}

.feedback-modal {
  position: relative;
  background: rgba(58, 50, 42, 0.85);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.feedback-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.feedback-close:hover {
  color: var(--text-primary);
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feedback-form textarea {
  min-height: 120px;
}

@media (max-width: 480px) {
  .feedback-modal {
    padding: 32px 20px;
    border-radius: 14px;
  }
}

/* ========================================
   Video Banner — full-width blur strip
   ======================================== */
.video-banner-section {
  background: rgba(58, 50, 42, 0.5);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-top: 1px solid rgba(255, 193, 7, 0.1);
  border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.video-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Footer — darkest layer
   ======================================== */
.footer {
  background: #142A17;
  color: rgba(212, 196, 168, 0.7);
  padding: 48px 24px 24px;
  border-top: 1px solid var(--border-amber);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 193, 7, 0.08);
}

.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
  filter: brightness(10);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(212, 196, 168, 0.4);
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(212, 196, 168, 0.5);
  font-size: 0.95rem;
  transition: color var(--transition), text-shadow var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 8px var(--glow-cyan);
}

.footer-contact a {
  color: rgba(212, 196, 168, 0.5);
  font-size: 0.95rem;
  transition: color var(--transition), text-shadow var(--transition);
  display: block;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 8px var(--glow-cyan);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.25);
}

/* ========================================
   Section — Value Propositions
   ======================================== */
.value-prop-section {
  background: transparent;
  padding: var(--section-padding);
}

.value-prop-section.value-prop-alt {
  background: transparent;
}

.value-prop-section h2 {
  color: var(--accent-cyan);
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--glow-cyan);
}

.value-prop-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
}

.value-prop-section .highlight-box {
  max-width: 800px;
  margin: 0 auto;
}

.value-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.value-bullets li {
  font-size: 1rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.value-bullets li::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: var(--campfire-orange);
  font-weight: 700;
}

/* ========================================
   Section — Use Case Scenarios
   ======================================== */
.scenarios-section {
  background: transparent;
  padding: var(--section-padding);
}

.scenarios-section h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--glow-gold);
}

.scenarios-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.scenario-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-amber-strong);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-gold);
}

.scenario-card .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.scenario-card h3 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.scenario-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ========================================
   Section — Compliance
   ======================================== */
.compliance-section {
  background: transparent;
  padding: var(--section-padding);
}

.compliance-section h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--glow-gold);
}

.compliance-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.compliance-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-amber);
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.compliance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-gold);
}

.compliance-card h3 {
  color: var(--accent-gold);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.compliance-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   Responsive — Tablet
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .capability-card.centered {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 12px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-home {
    min-height: 85vh;
  }

  .hero-logo {
    width: 320px;
    height: 140px;
  }

  .hero-short {
    min-height: 40vh;
  }

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

/* ========================================
   Responsive — Mobile
   ======================================== */
@media (max-width: 480px) {
  :root {
    --section-padding: 44px 16px;
    --nav-height: 64px;
  }

  .nav-logo img {
    width: 140px;
    height: 62px;
  }

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

  .capability-card.centered {
    grid-column: auto;
    max-width: none;
  }

  .problem-grid {
    gap: 10px;
  }

  .problem-grid .problem-card {
    flex: 0 1 calc(50% - 5px);
  }

  .problem-card-compact {
    padding: 12px 10px;
  }

  .problem-card-compact p {
    font-size: 0.8rem;
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .serve-pills {
    gap: 10px;
  }

  .serve-pill {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

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

  .hero {
    min-height: 60vh;
    padding: 100px 16px 60px;
  }

  .hero-home {
    min-height: 75vh;
    padding: 80px 16px 60px;
  }

  .hero-logo {
    width: 260px;
    height: 115px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
  border-left: 4px solid var(--campfire-orange);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), -4px 0 15px rgba(255, 140, 66, 0.08);
}

.faq-item summary {
  padding: 20px 28px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}

.faq-item summary:hover {
  background: rgba(255, 193, 7, 0.04);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--campfire-orange);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
  text-shadow: 0 0 8px rgba(255, 140, 66, 0.3);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 28px 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
  font-size: 0.95rem;
}

/* ========================================
   Glass Panels — frosted containers
   ======================================== */
section:not(.hero) > .container,
section:not(.hero) > .capabilities-content {
  background: rgba(58, 50, 42, 0.6);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Scroll-Reveal Animation
   ======================================== */
section:not(.hero) > .container,
section:not(.hero) > .capabilities-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

section:not(.hero) > .container.in-view,
section:not(.hero) > .capabilities-content.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive — Glass Panel Adjustments
   ======================================== */
@media (max-width: 480px) {
  section:not(.hero) > .container,
  section:not(.hero) > .capabilities-content {
    padding: 32px 20px;
    border-radius: 14px;
  }
}

/* ========================================
   Section — Pricing
   ======================================== */

/* --- Pricing Headline --- */
.pricing-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.pricing-dollar {
  display: flex;
  align-items: baseline;
}

.pricing-dollar-sign {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--campfire-orange);
  line-height: 1;
}

.pricing-dollar-amount {
  font-family: 'Quicksand', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 140, 66, 0.2);
}

.pricing-dollar-context {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-per {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-basis {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-minimums {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-minimums p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* --- Sleep Mode Attached --- */
.pricing-sleep-attach {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 193, 7, 0.15);
}

.pricing-sleep-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.pricing-sleep-header h3 {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.pricing-sleep-rate {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.pricing-sleep-amount {
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.pricing-sleep-min {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-sleep-tagline {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-cyan);
  font-style: italic;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .pricing-sleep-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-sleep-rate {
    align-items: flex-start;
  }
}

/* --- Features Grid --- */
.pricing-included {
  margin-top: 40px;
}

.pricing-included h3 {
  text-align: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 24px;
  text-shadow: 0 0 15px var(--glow-gold);
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 600px;
  margin: 0 auto;
}

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

.pricing-feature-item svg {
  flex-shrink: 0;
}

.pricing-feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- Calculator --- */
.pricing-calc-section h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--glow-gold);
}

.pricing-calc-subtitle {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.pricing-calculator {
  max-width: 680px;
  margin: 0 auto;
}

.calc-input-area {
  margin-bottom: 32px;
}

.calc-input-area label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

.calc-slider-row {
  padding: 0 4px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 193, 7, 0.12);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8C42, #F2709C);
  box-shadow: 0 2px 10px rgba(255, 140, 66, 0.4), 0 0 20px rgba(255, 140, 66, 0.15);
  cursor: pointer;
  border: 3px solid rgba(255, 251, 245, 0.9);
  transition: box-shadow 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 15px rgba(255, 140, 66, 0.6), 0 0 30px rgba(255, 140, 66, 0.25);
}

.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8C42, #F2709C);
  box-shadow: 0 2px 10px rgba(255, 140, 66, 0.4);
  cursor: pointer;
  border: 3px solid rgba(255, 251, 245, 0.9);
}

.calc-direct-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.calc-number-input {
  width: 100px;
  padding: 10px 14px;
  border: 1px solid var(--border-amber);
  border-radius: 8px;
  background: rgba(38, 66, 42, 0.6);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.calc-number-input:focus {
  border-color: var(--campfire-orange);
  box-shadow: 0 0 12px rgba(255, 140, 66, 0.2);
}

/* Remove spinner arrows */
.calc-number-input::-webkit-outer-spin-button,
.calc-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-number-input[type=number] {
  -moz-appearance: textfield;
}

.calc-input-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* --- Result Cards --- */
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.calc-result-card {
  background: rgba(38, 66, 42, 0.6);
  border: 1px solid var(--border-amber);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.calc-result-card.calc-active {
  border-color: var(--campfire-orange);
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.1);
}

.calc-result-card.calc-sleep {
  border-color: var(--border-cyan);
}

.calc-result-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.calc-active .calc-result-label {
  color: var(--campfire-orange);
}

.calc-sleep .calc-result-label {
  color: var(--accent-cyan);
}

.calc-result-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.calc-result-per {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

/* --- Annual Estimate --- */
.calc-annual-estimate {
  background: rgba(255, 140, 66, 0.06);
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: var(--border-radius);
  padding: 20px 24px;
}

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

.calc-annual-label {
  display: flex;
  flex-direction: column;
}

.calc-annual-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.calc-annual-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.calc-annual-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--campfire-orange);
  text-shadow: 0 0 20px rgba(255, 140, 66, 0.2);
}

.calc-annual-context {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* --- Integrations --- */
.pricing-integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pricing-integration-card {
  background: rgba(38, 66, 42, 0.5);
  border: 1px solid var(--border-amber);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-integration-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.pricing-integration-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.pricing-integration-card h3 {
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.pricing-integration-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.pricing-integration-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--campfire-orange);
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

/* --- Comparison Table --- */
.pricing-comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.pricing-comparison-table thead th {
  padding: 14px 20px;
  font-weight: 800;
  font-size: 1rem;
  text-align: left;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-amber-strong);
}

.pricing-comparison-table thead th:first-child {
  color: var(--text-muted);
}

.pricing-comparison-table thead th:nth-child(2) {
  color: var(--campfire-orange);
}

.pricing-comparison-table tbody td {
  padding: 14px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 193, 7, 0.06);
  vertical-align: top;
}

.pricing-comparison-table tbody td:first-child {
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.pricing-comparison-table tbody td.pricing-highlight {
  color: #4CAF50;
  font-weight: 700;
}

.pricing-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* --- Pricing Responsive --- */
@media (max-width: 768px) {
  .pricing-headline {
    flex-direction: column;
    gap: 8px;
  }

  .pricing-dollar-context {
    align-items: center;
    text-align: center;
  }

  .pricing-features-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .pricing-integrations-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .pricing-dollar-amount {
    font-size: 4.5rem;
  }

  .pricing-dollar-sign {
    font-size: 2rem;
  }

  .calc-results {
    grid-template-columns: 1fr;
  }

  .calc-annual-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .calc-annual-label {
    align-items: center;
  }

  .pricing-comparison-table {
    font-size: 0.85rem;
  }

  .pricing-comparison-table thead th,
  .pricing-comparison-table tbody td {
    padding: 10px 12px;
  }
}
