/* ============================================================
   JURE POS Landing Page — CSS Design System
   Theme: Enterprise Minimalist (Emerald, Gold, Pearl & Obsidian)
   ============================================================ */

:root {
  /* Color System */
  --bg-primary: #fafbfc;          /* Pearl White base */
  --bg-secondary: #f0fdf4;        /* Light Emerald Green tint (prosperity/growth) */
  --accent-green: #10b981;        /* Success Money Emerald */
  --accent-green-hover: #059669;  /* Deep Emerald Hover */
  --accent-gold: #d97706;         /* Premium Value Gold */
  --accent-gold-hover: #b45309;   /* Deep Gold Hover */
  --obsidian: #0a0f1c;            /* Authority Navy / Deep Space Obsidian */
  --obsidian-light: #161e31;      /* Elevated Card Deep Space */
  --border-color: #e5e7eb;        /* Soft gray border */
  
  --text-primary: #111827;        /* Near black body */
  --text-secondary: #4b5563;      /* Muted charcoal */
  --text-light: #ffffff;          /* True white */

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Spacings & Layouts */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-premium: 0 25px 50px -12px rgba(10, 15, 28, 0.1);

  --max-width: 1200px;
  --header-height: 104px; /* 40px watermark + 64px nav */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* Responsive Grid */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  user-select: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--accent-green);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-green-hover);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.02);
  border-color: var(--obsidian);
  color: var(--obsidian);
}

.btn-nav {
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--obsidian);
  color: var(--text-light);
}

.btn-nav:hover {
  background-color: var(--accent-green);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.btn-block {
  width: 100%;
}

/* Header & Watermark Bar */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.watermark-bar {
  background-color: var(--obsidian);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  padding: 8px 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.watermark-bar a {
  color: var(--accent-green);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.watermark-bar a:hover {
  color: var(--accent-gold);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  height: 64px;
  background-color: rgba(250, 251, 252, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.main-header.scrolled .nav-container {
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 251, 252, 0.95);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--obsidian);
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo span {
  color: var(--accent-green);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--obsidian);
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background-color: var(--bg-primary);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--obsidian);
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: auto;
}

.drawer-link {
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

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

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-watermark {
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-secondary);
}

.drawer-watermark a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.2fr 1fr;
  }
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--accent-green-hover);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-icon {
  width: 14px;
  height: 14px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--obsidian);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.btn-hero {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

/* Tablet Device Frame */
.hero-media {
  display: flex;
  justify-content: center;
}

.tablet-mockup {
  width: 100%;
  max-width: 520px;
  background-color: var(--obsidian);
  border: 12px solid var(--obsidian);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.tablet-screen-header {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
}

.tablet-camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2e3b52;
}

.tablet-speaker {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background-color: #2e3b52;
}

.tablet-screen {
  background-color: var(--obsidian);
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pain Statement Section */
.pain-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.pain-card {
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.2);
}

.pain-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background-color: rgba(217, 119, 6, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pain-icon {
  color: var(--accent-gold);
  width: 28px;
  height: 28px;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 0.75rem;
}

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

/* Product Showcase Rows */
.showcase-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 7rem;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .showcase-row {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase-content {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .showcase-content {
    padding-right: 3rem;
  }
  .showcase-row.reverse .showcase-content {
    padding-right: 0;
    padding-left: 3rem;
  }
}

.feature-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.showcase-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.showcase-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.showcase-media {
  display: flex;
  justify-content: center;
}

.frame-container {
  width: 100%;
  max-width: 500px;
  background-color: var(--obsidian);
  border: 10px solid var(--obsidian-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 1024px) {
  .showcase-row.reverse .showcase-media {
    order: -1;
  }
}

/* Full Grid Features */
.grid-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.feature-card {
  background-color: var(--text-light);
  border: 1px solid rgba(16, 185, 129, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

.feat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(16, 185, 129, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}

.feat-icon-box svg {
  width: 24px;
  height: 24px;
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 0.75rem;
}

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

/* Device Section */
.device-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.device-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .device-container {
    grid-template-columns: 1fr 1fr;
  }
}

.device-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.device-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.device-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--obsidian);
}

.benefit svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
}

/* Device Stack Visual (Minimalist Outlines) */
.device-image-box {
  display: flex;
  justify-content: center;
}

.pwa-mockup-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pwa-mockup-img:hover {
  transform: translateY(-8px);
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.popular {
  border: 2px solid var(--accent-green);
  box-shadow: var(--shadow-premium);
}

.popular-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-green);
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.price-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 0.5rem;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.currency {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-right: 4px;
}

.amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--obsidian);
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-left: 4px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.price-features li.disabled {
  color: #9ca3af;
  text-decoration: line-through;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.x-icon {
  width: 16px;
  height: 16px;
  color: #ef4444;
  flex-shrink: 0;
}

.price-guarantee {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.shield-green {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
  display: inline;
  vertical-align: text-bottom;
}

/* Local Testimonials */
.testimonial-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.testimonial-card {
  background-color: var(--text-light);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(16, 185, 129, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--obsidian);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--obsidian);
}

.profile-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* FAQ Section Accordion */
.faq-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--text-light);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--obsidian);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-secondary);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Final Call To Action */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--obsidian-light) 100%);
  color: var(--text-light);
}

.final-cta-container {
  max-width: 800px;
}

.final-cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.final-cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.btn-cta {
  padding: 1.15rem 2.5rem;
  font-size: 1.1rem;
}

.cta-watermark {
  display: block;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.cta-watermark a {
  color: var(--accent-green);
  text-decoration: underline;
}

/* Footer */
.main-footer {
  background-color: #040812; /* Darker than obsidian */
  color: rgba(255, 255, 255, 0.6);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-brand .logo {
  color: var(--text-light);
  margin-bottom: 1rem;
  display: inline-block;
}

.brand-tagline {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

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

.brand-watermark a {
  color: var(--accent-green);
  text-decoration: underline;
}

.footer-links-col h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links-col ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links-col ul a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.8rem;
  text-align: center;
}

/* Animating and scroll reveal placeholders */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}
