@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Kaushan+Script&display=swap');/* Auth Gate Styles */

.auth-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f2033 0%, #1a3a52 100%);
  padding: 20px;
}

.auth-gate-container {
  width: 100%;
  max-width: 420px;
}

.auth-gate-card {
  background: white;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.auth-gate-logo {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
}

.auth-gate-logo svg {
  width: 100%;
  height: 100%;
}

.auth-gate h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 8px;
}

.auth-gate-subtitle {
  font-size: 14px;
  color: #718096;
  margin: 0 0 32px;
}

.auth-gate-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #3b63ff;
  box-shadow: 0 0 0 3px rgba(59, 99, 255, 0.1);
}

.form-group input:disabled {
  background-color: #f7fafc;
  cursor: not-allowed;
}

.auth-gate-error {
  background-color: #fed7d7;
  color: #c53030;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  border-left: 4px solid #c53030;
}

.auth-gate-button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #3b63ff 0%, #2a4fd9 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.auth-gate-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 99, 255, 0.4);
}

.auth-gate-button:active:not(:disabled) {
  transform: translateY(0);
}

.auth-gate-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-gate-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.auth-gate-footer p {
  font-size: 13px;
  color: #718096;
  margin: 0;
}

.auth-gate-loading {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f2033 0%, #1a3a52 100%);
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .auth-gate-card {
    background: #1a202c;
  }

  .auth-gate h1 {
    color: #f7fafc;
  }

  .auth-gate-subtitle {
    color: #a0aec0;
  }

  .form-group label {
    color: #e2e8f0;
  }

  .form-group input {
    background: #2d3748;
    border-color: #4a5568;
    color: #f7fafc;
  }

  .form-group input:focus {
    border-color: #3b63ff;
    background: #2d3748;
  }

  .form-group input:disabled {
    background-color: #2d3748;
    opacity: 0.5;
  }

  .auth-gate-footer {
    border-top-color: #4a5568;
  }

  .auth-gate-footer p {
    color: #a0aec0;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .auth-gate-card {
    padding: 32px 24px;
  }

  .auth-gate h1 {
    font-size: 24px;
  }
}
/* Header Styles - Matching the marketing site */

/* ================================
   Header Base Styles
   ================================ */
.site-header {
  background: linear-gradient(135deg, #0f3348 0%, #1a4a61 100%);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(15, 51, 72, 0.15);
}

.site-header:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 34px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1600px) {
  .header-container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* ================================
   Logo Styling
   ================================ */
.site-logo {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 24px;
}

.site-title {
  font-family: 'Kaushan Script', cursive;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
}

/* ================================
   Desktop Navigation
   ================================ */
.desktop-navigation {
  display: none;
}

.desktop-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
  align-items: center;
}

.desktop-nav-menu li {
  margin: 0;
}

.desktop-nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.desktop-nav-menu a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.desktop-nav-menu .nav-cta {
  background: var(--accent-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.desktop-nav-menu .nav-cta:hover {
  background: var(--accent-hover);
}

@media (min-width: 1024px) {
  .desktop-navigation {
    display: block;
  }
}

/* ================================
   Mobile Menu Button
   ================================ */
.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 4px 0;
  transition: 0.3s;
}

/* ================================
   Mobile Menu Overlay
   ================================ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sidebar */
.mobile-menu-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.mobile-menu-overlay.active .mobile-menu-sidebar {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: var(--primary-color);
  font-family: 'Kaushan Script', cursive;
  font-size: 24px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Mobile Menu Navigation */
.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

.mobile-menu-nav li {
  margin: 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 15px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

.mobile-menu-nav a:hover {
  background: var(--bg-light);
}

.mobile-cta-item a {
  background: var(--accent-color);
  color: #ffffff;
  margin: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  text-align: center;
}

.mobile-cta-item a:hover {
  background: var(--accent-hover);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: none;
  z-index: 1;
}

/* ================================
   Mobile Responsive
   ================================ */
@media (max-width: 768px) {
  .header-container {
    display: flex;
    align-items: center;
    position: relative;
    padding: 14px 20px;
  }

  .site-branding {
    flex: 1 1 auto;
    margin-right: 56px;
  }

  .mobile-menu-button {
    position: absolute;
    right: 20px;
    left: auto;
    top: 50%;
    transform: translateY(-52%);
    margin-left: 0;
    order: 3;
  }
}
/* Footer Styles - Matching the marketing site */

/* ================================
   Footer Base Styles
   ================================ */
.site-footer {
  background: linear-gradient(135deg, #0f3348 0%, #1a4a61 100%);
  color: #e5edf1;
  padding: 34px 0 18px;
  font-size: 14px;
}

.footer-content.minimal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 34px;
}

@media (min-width: 1600px) {
  .footer-content.minimal {
    padding: 0 48px;
  }
}

/* ================================
   Footer Brand
   ================================ */
.footer-brand {
  max-width: 340px;
}

.footer-brand .brand-line {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.footer-brand .brand-name {
  font-family: 'Kaushan Script', cursive;
  font-weight: 400;
  font-size: 26px;
}

.footer-brand .tagline {
  margin: 6px 0 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #c2d3da;
}

/* ================================
   Footer Navigation
   ================================ */
.footer-nav {
  flex: 1 1 auto;
}

.footer-nav .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  justify-content: flex-end;
}

.footer-nav .footer-links li {
  margin: 0;
}

.footer-nav .footer-links a {
  color: #d9e7ec;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
}

.footer-nav .footer-links a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.25s ease;
}

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

.footer-nav .footer-links a:hover {
  color: #fff;
}

/* ================================
   Footer Bottom
   ================================ */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 26px;
  padding: 14px 0 0;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-content p {
  margin: 0;
  font-size: 12px;
  color: #b1c3cb;
}

.footer-right-note {
  font-size: 12px;
  color: #b1c3cb;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 900px) {
  .footer-content.minimal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav .footer-links {
    justify-content: flex-start;
    gap: 8px 26px;
  }

  .footer-bottom-content {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 30px 0 16px;
  }

  .footer-nav .footer-links {
    font-size: 13px;
    gap: 6px 20px;
  }

  .footer-brand .brand-line {
    font-size: 18px;
  }

  .footer-brand .brand-name {
    font-size: 24px;
  }

  .footer-content.minimal {
    padding: 0 20px;
  }
}
/* Floating Buttons - Get Started FAB and Scroll to Top */

/* Mobile Floating Action Button (Get Started) */
.mobile-fab {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: none;
}

.fab-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(213, 99, 21, 0.4);
  transition: all 0.3s ease;
  animation: fabSlideUp 0.3s ease;
}

.fab-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(213, 99, 21, 0.5);
}

.fab-icon {
  font-size: 20px;
}

.fab-text {
  font-weight: 600;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(15, 51, 72, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease forwards;
}

.scroll-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(15, 51, 72, 0.5);
}

/* Show buttons on tablets and mobile */
@media (max-width: 1024px) {
  .mobile-fab {
    display: block;
  }

  .scroll-to-top {
    opacity: 1;
    visibility: visible;
  }
}

/* Adjust for smaller mobile screens */
@media (max-width: 480px) {
  .fab-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  .fab-icon {
    font-size: 18px;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 90px;
    right: 20px;
    font-size: 18px;
  }
}

/* Animations */
@keyframes fabSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .fab-button {
    background: linear-gradient(92deg, #d56315, #c2550a);
    border: 1px solid #e9772c;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(213, 99, 21, 0.4);
  }

  .fab-button:hover {
    background: linear-gradient(92deg, #c2550a, #a64706);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.65);
  }

  .scroll-to-top {
    background: linear-gradient(135deg, #0f3348 0%, #1a4a61 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  }

  .scroll-to-top:hover {
    background: linear-gradient(135deg, #1a4a61 0%, #255a7a 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  }
}

/* Class-based dark mode */
.dark .fab-button,
.dark-mode .fab-button {
  background: linear-gradient(92deg, #d56315, #c2550a);
  border: 1px solid #e9772c;
}

.dark .scroll-to-top,
.dark-mode .scroll-to-top {
  background: linear-gradient(135deg, #0f3348 0%, #1a4a61 100%);
}
/* Home Page Styles - Matching the marketing site design */

/* ================================
   Hero Section
   ================================ */
.hero-section {
  position: relative;
  padding: 90px 0 60px;
  background: linear-gradient(140deg, #0d425c 0%, #0f3348 55%, #1a4a61 100%);
  color: white;
  overflow: hidden;
}

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

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================================
   Features Section
   ================================ */
.features-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.feature-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 16px;
}

/* ================================
   Hedera Technology Section
   ================================ */
.hedera-tech-section {
  background: linear-gradient(135deg, #0f3348 0%, #1a4a61 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hedera-tech-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
  opacity: 0.3;
  z-index: 1;
}

.hedera-tech-section .container {
  position: relative;
  z-index: 2;
}

.hedera-tech-section .section-title {
  color: white;
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
}

.hedera-tech-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tech-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.tech-highlight {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid #28a745;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-highlight:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.tech-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.tech-highlight h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.tech-highlight p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 16px;
}

.hedera-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  background: rgba(213, 99, 21, 0.2);
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(213, 99, 21, 0.3);
  transform: scale(1.05);
  border-color: #28a745;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.stat:hover .stat-number {
  color: #28a745;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================
   Pricing Section
   ================================ */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-loading {
  text-align: center;
  padding: 60px 20px;
}

.pricing-loading .loading-spinner {
  margin: 0 auto 20px;
  width: 50px;
  height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.pricing-empty {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  border: 2px dashed #ddd;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-mode-toggle {
  display: inline-flex;
  background: #e9edf2;
  border-radius: 12px;
  padding: 6px;
  margin: 8px auto 0;
  gap: 6px;
}

.pricing-mode-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #2c3f53;
  background: transparent;
  cursor: pointer;
}

.pricing-mode-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color), #2a6b95);
  box-shadow: 0 4px 10px rgba(24, 77, 125, 0.3);
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(24, 77, 125, 0.15);
  border-color: var(--primary-color);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(24, 77, 125, 0.2);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #2a6b95);
  border-radius: 16px 16px 0 0;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), #2a6b95);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(24, 77, 125, 0.3);
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.plan-price {
  text-align: center;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #212529;
  display: block;
  line-height: 1;
}

.price-period {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-tokens {
  text-align: center;
  font-size: 18px;
  color: #495057;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}

.plan-tokens strong {
  color: var(--primary-color);
  font-weight: 700;
}

.plan-per-token {
  text-align: center;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
  font-style: italic;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex-grow: 1;
}

.plan-features li {
  padding: 12px 0;
  color: #495057;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  margin-top: 20px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pricing-card.popular .btn-block {
  background: linear-gradient(135deg, var(--primary-color), #2a6b95);
  border: none;
}

.pricing-card.popular .btn-block:hover {
  background: linear-gradient(135deg, #0f3a5f, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(24, 77, 125, 0.3);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-amount {
    font-size: 40px;
  }

  .plan-name {
    font-size: 22px;
  }
}

/* ================================
   Trust Section
   ================================ */
.trust-section {
  background: linear-gradient(135deg, #184d7d 0%, #2a6b95 100%);
  padding: 80px 0;
  color: white;
}

.trust-section .section-title {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  font-size: 42px;
}

.trust-section .section-subtitle {
  color: #f0f8ff;
  font-size: 20px;
  line-height: 1.6;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.trust-badge:hover {
  background: rgba(96, 165, 250, 0.25);
  border-color: #60a5fa;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.3);
}

.trust-badge strong {
  color: #ffffff;
  font-size: 16px;
}

.enterprise-logos {
  margin-top: 50px;
}

.enterprise-title {
  color: #e6f3ff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  text-align: center;
}

.enterprise-logo {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.enterprise-logo:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: #8b5cf6;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.cta-section .section-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section .section-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================================
   Blog Section
   ================================ */
.content-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-placeholder {
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  border: 2px dashed #ddd;
}

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(213, 99, 21, 0.3);
}

.btn-secondary {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0 50px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .features-grid,
  .tech-highlights,
  .trust-badges,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hedera-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat {
    padding: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .trust-section .section-title {
    font-size: 32px;
  }

  .trust-section .section-subtitle {
    font-size: 18px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
    padding: 0 48px;
  }

  .hero-title {
    font-size: 56px;
  }
}

/* ================================
   Hero 'Powered by' sub-label
   ================================ */
.hero-powered {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
  margin-bottom: 24px;
}

.hero-powered strong {
  color: rgba(255, 255, 255, 0.95);
}

/* ================================
   Hero inline trust logos
   ================================ */
.hero-trust-logos {
  margin: 28px 0 32px;
}

.hero-trust-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.hero-trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-trust-logo {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .hero-trust-grid {
    gap: 6px;
  }

  .hero-trust-logo {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* ================================
   Blue Bison Guide (security section)
   ================================ */
.bison-guide {
  text-align: center;
  margin-bottom: 40px;
}

.bison-img {
  width: 510px;
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
}

.bison-caption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin-top: 10px;
  font-style: italic;
}

@media (max-width: 768px) {
  .bison-img {
    width: 420px;
  }
}
/* Features Page Styles */

.features-page {
  min-height: 100vh;
}

/* Hero Section */
.features-hero {
  background: linear-gradient(135deg, var(--primary-color), #2a6b95);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}

.features-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.features-hero .hero-subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Section */
.features-content {
  padding: 80px 0;
}

.features-content .container {
  max-width: 1200px;
}

/* Core Features Grid */
.core-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 50px;
  margin-bottom: 100px;
}

.feature-highlight {
  background: white;
  border-radius: 16px;
  padding: 45px 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(24, 77, 125, 0.15);
  border-color: var(--accent-color);
}

.feature-icon-large {
  font-size: 4rem;
  margin-bottom: 25px;
  line-height: 1;
}

.feature-highlight h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 25px;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-benefits li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.feature-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.feature-benefits li strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Technical Section */
.technical-section {
  margin-bottom: 100px;
}

.technical-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.section-intro {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #4a5568;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tech-card {
  background: white;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(24, 77, 125, 0.15);
  border-color: var(--primary-color);
}

.tech-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.tech-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* Use Cases Section */
.use-cases-section {
  margin-bottom: 100px;
}

.use-cases-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-align: center;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.use-case {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  padding: 35px 30px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.use-case:hover {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  border-left-width: 6px;
}

.use-case h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.use-case p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* CTA Section */
.features-cta {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 60px 40px;
  border-radius: 16px;
}

.features-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.features-cta p {
  font-size: 1.3rem;
  color: #4a5568;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-hero {
    padding: 60px 20px 50px;
  }

  .features-hero h1 {
    font-size: 2.5rem;
  }

  .features-hero .hero-subtitle {
    font-size: 1.2rem;
  }

  .features-content {
    padding: 50px 0;
  }

  .core-features-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 60px;
  }

  .feature-highlight {
    padding: 30px 25px;
  }

  .feature-highlight h2 {
    font-size: 1.7rem;
  }

  .feature-description {
    font-size: 1.05rem;
  }

  .technical-section,
  .use-cases-section {
    margin-bottom: 60px;
  }

  .technical-section h2,
  .use-cases-section h2 {
    font-size: 2rem;
  }

  .section-intro {
    font-size: 1.1rem;
  }

  .tech-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-cta {
    padding: 40px 20px;
  }

  .features-cta h2 {
    font-size: 2rem;
  }

  .features-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .core-features-grid {
    grid-template-columns: 1fr;
  }

  .feature-icon-large {
    font-size: 3rem;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .features-hero {
    background: linear-gradient(135deg, #1a4a61, #0f3348) !important;
  }

  .feature-highlight,
  .tech-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
  }

  .feature-highlight:hover,
  .tech-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 12px 24px rgba(255, 103, 31, 0.2) !important;
  }

  .feature-highlight h2,
  .tech-card h3,
  .use-case h3,
  .technical-section h2,
  .use-cases-section h2,
  .features-cta h2 {
    color: var(--accent-color) !important;
  }

  .feature-description,
  .tech-card p,
  .use-case p,
  .section-intro,
  .features-cta p {
    color: #cbd5e1 !important;
  }

  .feature-benefits li {
    color: #cbd5e1 !important;
  }

  .feature-benefits li strong {
    color: var(--accent-color) !important;
  }

  .feature-benefits li::before {
    color: var(--accent-color) !important;
  }

  .use-case {
    background: rgba(255, 255, 255, 0.05) !important;
    border-left-color: var(--accent-color) !important;
  }

  .use-case:hover {
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .features-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08)) !important;
  }
}
/* About Page Styles */

.about-page {
  min-height: 100vh;
}

.about-hero {
  background: linear-gradient(135deg, var(--primary-color), #2a6b95);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 0;
}

.about-content .container {
  max-width: 1100px;
}

.story-section,
.mission-section,
.vision-section,
.values-section {
  margin-bottom: 80px;
}

.story-section h2,
.mission-section h2,
.vision-section h2,
.values-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.story-section p,
.mission-section > p,
.vision-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 25px;
}

.story-section strong,
.mission-section strong,
.vision-section strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(24, 77, 125, 0.15);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* Values Section */
.value-item {
  background: #f8f9fa;
  border-left: 4px solid var(--primary-color);
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: #e9ecef;
  border-left-width: 6px;
}

.value-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.value-item p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 60px 40px;
  border-radius: 16px;
  margin-top: 80px;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.cta-section p {
  font-size: 1.3rem;
  color: #4a5568;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 20px 50px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

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

  .about-content {
    padding: 50px 0;
  }

  .story-section h2,
  .mission-section h2,
  .vision-section h2,
  .values-section h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .story-section p,
  .mission-section > p,
  .vision-section p {
    font-size: 1.1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .value-item {
    padding: 20px;
  }

  .cta-section {
    padding: 40px 20px;
    margin-top: 50px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

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

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .value-item h3 {
    font-size: 1.3rem;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  /* Hero Section */
  .about-hero {
    background: linear-gradient(135deg, #1a4a61, #0f3348) !important;
  }

  /* Content Sections */
  .story-section h2,
  .mission-section h2,
  .vision-section h2,
  .values-section h2 {
    color: var(--accent-color) !important;
  }

  .story-section p,
  .mission-section > p,
  .vision-section p {
    color: #cbd5e1 !important;
  }

  .story-section strong,
  .mission-section strong,
  .vision-section strong {
    color: var(--accent-color) !important;
  }

  /* Feature Cards */
  .feature-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
  }

  .feature-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 8px 16px rgba(255, 103, 31, 0.2) !important;
  }

  .feature-card h3 {
    color: var(--accent-color) !important;
  }

  .feature-card p {
    color: #cbd5e1 !important;
  }

  /* Value Items */
  .value-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border-left-color: var(--accent-color) !important;
  }

  .value-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .value-item h3 {
    color: var(--accent-color) !important;
  }

  .value-item p {
    color: #cbd5e1 !important;
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08)) !important;
  }

  .cta-section h2 {
    color: var(--accent-color) !important;
  }

  .cta-section p {
    color: #cbd5e1 !important;
  }
}
/* Contact Page Styles */

.contact-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 20px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(213, 99, 21, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  margin-top: 30px;
}

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #e87424;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 99, 21, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.info-section {
  margin-bottom: 30px;
}

.info-section h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 15px;
}

.info-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-text h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 18px;
}

.feature-text p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.form-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.required {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero p {
    font-size: 18px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper,
  .contact-info {
    padding: 30px 20px;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .contact-section {
    background: #0f3348;
  }

  .contact-form-wrapper,
  .contact-info {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .form-group label {
    color: #e6e6e6;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: #0f1820;
    border-color: #2a3a45;
    color: #e6e6e6;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #9fb0bd;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent-color);
    background: #121a21;
  }

  .info-section h3 {
    color: #ffffff;
  }

  .info-section p {
    color: #cbd5e1;
  }

  .feature-text h4 {
    color: #ffffff;
  }

  .feature-text p {
    color: #cbd5e1;
  }

  .form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border-color: #22c55e;
  }

  .form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border-color: #ef4444;
  }
}
/* Blog Pages Styles */

/* Blog Hero */
.blog-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.blog-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 20px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Section */
.blog-section {
  padding: 60px 0;
  background: #f8f9fa;
  min-height: 60vh;
}

/* Category Filter */
.blog-categories {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-btn {
  padding: 10px 20px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.category-btn.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(213, 99, 21, 0.1);
  color: var(--accent-color);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-card-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--accent-color);
}

.blog-card-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
  margin-bottom: 15px;
  font-size: 14px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: var(--text-secondary);
  font-weight: 500;
}

.blog-date {
  color: var(--text-light);
  font-size: 13px;
}

.read-more {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--accent-hover);
}

/* Loading State */
.blog-loading {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.blog-loading p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* Empty State */
.blog-empty {
  text-align: center;
  padding: 60px 20px;
}

.blog-empty p {
  color: var(--text-secondary);
  font-size: 18px;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.pagination-btn {
  padding: 12px 24px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Blog Post Detail Page */
.blog-post-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.blog-post-section .container {
  max-width: 900px;
}

.blog-post-header {
  margin-bottom: 40px;
}

.back-to-blog {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-to-blog:hover {
  color: var(--accent-hover);
}

.blog-post-title {
  font-size: 42px;
  color: var(--primary-color);
  margin: 20px 0;
  line-height: 1.3;
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 2px solid #e9ecef;
}

.blog-post-featured-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 40px;
}

.blog-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 18px;
}

.blog-post-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-post-content h3 {
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-content code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 16px;
}

.blog-post-content pre {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.blog-post-content pre code {
  background: none;
  padding: 0;
}

.blog-post-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px;
  background: white;
  border-radius: 12px;
}

.blog-post-tags strong {
  color: var(--primary-color);
}

.blog-tag {
  padding: 6px 14px;
  background: #f4f4f4;
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.blog-post-footer {
  text-align: center;
  padding: 30px 0;
}

.blog-not-found {
  text-align: center;
  padding: 80px 20px;
}

.blog-not-found h1 {
  color: var(--primary-color);
  font-size: 42px;
  margin-bottom: 20px;
}

.blog-not-found p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 36px;
  }

  .blog-hero p {
    font-size: 18px;
  }

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

  .blog-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .blog-post-title {
    font-size: 32px;
  }

  .blog-post-content {
    padding: 25px 20px;
    font-size: 16px;
  }

  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .blog-pagination {
    flex-direction: column;
  }

  .pagination-btn {
    width: 100%;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .blog-section,
  .blog-post-section {
    background: #0f3348;
  }

  .blog-card,
  .blog-post-content,
  .blog-post-tags {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .category-btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: #e6e6e6;
  }

  .category-btn:hover {
    border-color: var(--accent-color);
  }

  .blog-card-title a {
    color: #9ecbff;
  }

  .blog-card-title a:hover {
    color: var(--accent-color);
  }

  .blog-card-excerpt,
  .blog-post-content {
    color: #cbd5e1;
  }

  .blog-card-meta,
  .blog-post-meta {
    border-color: rgba(255, 255, 255, 0.14);
  }

  .author-name,
  .blog-date {
    color: #cbd5e1;
  }

  .blog-post-title {
    color: #ffffff;
  }

  .blog-post-content h2,
  .blog-post-content h3 {
    color: #ffffff;
  }

  .blog-post-content code {
    background: rgba(255, 255, 255, 0.1);
    color: #e6e6e6;
  }

  .blog-post-content pre {
    background: rgba(255, 255, 255, 0.1);
  }

  .blog-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
  }

  .blog-loading p,
  .blog-empty p {
    color: #cbd5e1;
  }

  .pagination-info {
    color: #cbd5e1;
  }
}
/* Legal document pages (Terms, Privacy, E-Sign Consent, DPA) */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.legal-doc {
  line-height: 1.65;
  color: var(--text-color, #1a2b33);
  font-size: 1rem;
  overflow-wrap: break-word;
}

.legal-doc h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: var(--brand-primary, #0f3348);
}
.legal-doc h2 {
  font-size: 1.3rem;
  margin: 2.25rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--brand-primary, #0f3348);
}
.legal-doc h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }

.legal-doc p { margin: 0 0 1rem; }
.legal-doc ul { margin: 0 0 1rem; padding-left: 1.4rem; }
.legal-doc li { margin: 0 0 0.4rem; }
.legal-doc a { color: var(--brand-accent, #d56315); text-decoration: underline; }
.legal-doc strong { font-weight: 700; }
.legal-doc hr { border: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); margin: 2rem 0; }

.legal-doc blockquote {
  margin: 1.25rem 0;
  padding: 0.75rem 1.1rem;
  background: rgba(213, 99, 21, 0.07);
  border-left: 3px solid var(--brand-accent, #d56315);
  border-radius: 4px;
}
.legal-doc blockquote p { margin: 0; }

.legal-doc code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Tables (sub-processor list, retention, plan comparisons) scroll on narrow screens */
.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  display: block;
  overflow-x: auto;
}
.legal-doc th, .legal-doc td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0.7rem;
  text-align: left;
  vertical-align: top;
}
.legal-doc th { background: rgba(15, 51, 72, 0.06); font-weight: 700; }

@media (prefers-color-scheme: dark) {
  .legal-doc { color: #d7e2e8; }
  .legal-doc h1, .legal-doc h2, .legal-doc h3 { color: #7fb2c8; }
  .legal-doc h2 { border-top-color: rgba(255, 255, 255, 0.1); }
  .legal-doc hr { border-top-color: rgba(255, 255, 255, 0.12); }
  .legal-doc code { background: rgba(255, 255, 255, 0.1); }
  .legal-doc th, .legal-doc td { border-color: rgba(255, 255, 255, 0.15); }
  .legal-doc th { background: rgba(127, 178, 200, 0.12); }
}


/* Global Styles - Matching the marketing site */
/* Import Google Fonts */
/* ================================
   CSS Reset & Variables
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Navy + Orange Color Scheme */
  --primary-color: #0f3348;
  --primary-hover: #1a4a61;
  --secondary-color: #62676b;
  --secondary-hover: #4a4f53;
  --accent-color: #d56315;
  --accent-hover: #e87424;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0f3348 0%, #1a4a61 100%);
  --gradient-secondary: linear-gradient(135deg, #d56315 0%, #e87424 100%);

  /* Text Colors */
  --text-primary: #0f3348;
  --text-secondary: #62676b;
  --text-light: #999;
  --text-white: #fff;
  --text-dark: #0f3348;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-light: #f8f9fa;
  --bg-dark: #0f3348;

  /* Border Colors */
  --border-color: #e9ecef;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50px;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1010;
  --z-fixed: 1020;
  --z-modal-backdrop: 1030;
  --z-modal: 1040;
  --z-tooltip: 1050;
}
/* ================================
   Base Styles
   ================================ */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Ensure no gap between header and content */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-content {
  flex: 1;
  margin-top: 0;
  padding-top: 0;
}
/* ================================
   Typography
   ================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}
h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-base);
}
p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--primary-hover);
}
/* ================================
   Layout & Container
   ================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
    padding: 0 48px;
  }
}
/* ================================
   Screen Reader Only
   ================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ================================
   Mobile Fixes
   ================================ */
@media (max-width: 768px) {
  /* iOS Safari fixes */
  -webkit-text-size-adjust: 100%;
  -webkit-appearance: none;

  /* Force proper container width */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
/* ================================
   Dark Mode Support
   ================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #e6e6e6;
    --text-light: #c0c7ce;
    --bg-light: #0f1820;
    --border-color: #2a3a45;
    --navy-light: #123447;
  }

  html,
  body {
    background: #0b2432;
    color: #e6e6e6;
  }

  .section-title,
  .section-subtitle,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #e6e6e6;
  }

  .section-subtitle {
    color: #c0c7ce;
  }

  a {
    color: #66b8ff;
  }
}
/* Dark Mode Styles - Matching the marketing site */

@media (prefers-color-scheme: dark) {
  :root {
    /* Dark mode color overrides */
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-light: #64748b;
    --text-dark: #e6e6e6;

    /* Background Colors */
    --bg-primary: #0b1220;
    --bg-secondary: #0f172a;
    --bg-light: #0f1820;
    --bg-dark: #1e293b;
    --border-color: #2a3a45;
  }

  /* Base elements */
  html,
  body,
  #root,
  .site,
  .site-content {
    background-color: #0f3348 !important;
    background: #0f3348 !important;
    color: #e2e8f0 !important;
  }

  /* Header - Keep gradient */
  .site-header {
    background: linear-gradient(135deg, #0b2432 0%, #123447 100%) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
  }

  .site-logo,
  .site-title {
    color: #ffffff !important;
  }

  .desktop-nav-menu a {
    color: #e6e6e6 !important;
  }

  .desktop-nav-menu a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  /* All sections - Use navy/teal theme */
  section,
  .hero-section,
  .features-section,
  .pricing-section,
  .cta-section,
  .content-section {
    background: #0f3348 !important;
    background-color: #0f3348 !important;
  }

  /* Alternating sections for contrast */
  section:nth-child(even),
  .features-section,
  .pricing-section,
  .content-section {
    background: #1a4a61 !important;
    background-color: #1a4a61 !important;
  }

  /* Keep Hedera section gradient dark */
  .hedera-tech-section {
    background: linear-gradient(135deg, #0b2432 0%, #123447 100%) !important;
  }

  /* Keep Trust section gradient dark */
  .trust-section {
    background: linear-gradient(135deg, #0b2432 0%, #1a3a52 100%) !important;
  }

  /* Container backgrounds */
  .container,
  .hero-content {
    background: transparent !important;
  }

  /* Typography */
  .section-title,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #e6e6e6 !important;
  }

  .section-subtitle,
  .hero-subtitle,
  p {
    color: #c0c7ce !important;
  }

  /* Links */
  a {
    color: #66b8ff !important;
  }

  a:hover {
    color: #93c5fd !important;
  }

  /* Hero section badges */
  .hero-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
  }

  /* Feature cards */
  .feature-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  }

  .feature-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    border-color: var(--accent-color) !important;
  }

  .feature-card h3 {
    color: #ffffff !important;
  }

  .feature-card p {
    color: #cbd5e1 !important;
  }

  /* Tech highlights */
  .tech-highlight {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #28a745 !important;
  }

  .tech-highlight:hover {
    background: rgba(255, 255, 255, 0.12) !important;
  }

  .tech-highlight h3 {
    color: #ffffff !important;
  }

  .tech-highlight p {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* Stats */
  .stat {
    background: rgba(213, 99, 21, 0.15) !important;
    border-color: var(--accent-color) !important;
  }

  .stat:hover {
    background: rgba(213, 99, 21, 0.25) !important;
  }

  .stat-number {
    color: var(--accent-color) !important;
  }

  .stat:hover .stat-number {
    color: #28a745 !important;
  }

  .stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* Trust badges */
  .trust-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
  }

  .trust-badge:hover {
    background: rgba(96, 165, 250, 0.2) !important;
    border-color: #60a5fa !important;
  }

  .trust-badge strong {
    color: #ffffff !important;
  }

  /* Enterprise logos */
  .enterprise-title {
    color: #e6f3ff !important;
  }

  .enterprise-logo {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
  }

  .enterprise-logo:hover {
    background: rgba(139, 92, 246, 0.15) !important;
    border-color: #8b5cf6 !important;
  }

  /* Pricing cards */
  .pricing-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
  }

  .pricing-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
  }

  .pricing-card.popular {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--accent-color) !important;
  }

  .popular-badge {
    background: linear-gradient(135deg, var(--accent-color), #ea580c) !important;
    color: #ffffff !important;
  }

  .plan-name {
    color: #ffffff !important;
  }

  .price-amount {
    color: #ffffff !important;
  }

  .price-period {
    color: #94a3b8 !important;
  }

  .plan-tokens {
    color: #e2e8f0 !important;
    border-bottom-color: rgba(255, 255, 255, 0.14) !important;
  }

  .plan-tokens strong {
    color: #ffffff !important;
  }

  .plan-per-token {
    color: #94a3b8 !important;
  }

  .plan-features li {
    color: #cbd5e1 !important;
  }

  .plan-features li::before {
    color: var(--accent-color) !important;
  }

  .pricing-loading p {
    color: #e2e8f0 !important;
  }

  .pricing-empty p {
    color: #cbd5e1 !important;
  }

  /* Blog section */
  .content-section {
    background: transparent !important;
  }

  .blog-excerpt,
  .blog-placeholder {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
  }

  .blog-excerpt .entry-title a {
    color: #9ecbff !important;
    background: transparent !important;
  }

  .blog-excerpt .entry-title a:hover {
    color: var(--accent-color) !important;
  }

  .blog-excerpt .entry-summary {
    color: #cbd5e1 !important;
  }

  .blog-excerpt .read-more {
    color: #f59e0b !important;
  }

  /* Mobile menu */
  .mobile-menu-sidebar {
    background: #121a21 !important;
  }

  .mobile-menu-header {
    background: #121a21 !important;
    border-bottom: 1px solid #2a3a45 !important;
  }

  .mobile-menu-logo {
    color: #e6e6e6 !important;
  }

  .mobile-menu-close {
    color: #e6e6e6 !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
  }

  .mobile-menu-nav a {
    color: #e6e6e6 !important;
    border-color: #2a3a45 !important;
  }

  .mobile-menu-nav a:hover {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #60a5fa !important;
  }

  .mobile-menu-backdrop {
    background: rgba(0, 0, 0, 0.55) !important;
  }

  /* Footer */
  .site-footer {
    background: linear-gradient(135deg, #0b2432 0%, #123447 100%) !important;
  }

  .footer-brand .brand-line {
    color: #ffffff !important;
  }

  .footer-brand .tagline {
    color: #c2d3da !important;
  }

  .footer-nav .footer-links a {
    color: #d9e7ec !important;
  }

  .footer-nav .footer-links a:hover {
    color: #ffffff !important;
  }

  .footer-bottom-content p,
  .footer-right-note {
    color: #b1c3cb !important;
  }

  /* Buttons */
  .btn {
    color: #ffffff !important;
  }

  .btn-primary,
  .btn-secondary {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
  }

  /* Placeholders */
  .pricing-placeholder,
  .blog-placeholder {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    color: #cbd5e1 !important;
  }
}

/* Class-based dark mode support (for manual toggle) */
.dark,
.dark-mode {
  /* Same styles as above but with class selectors */
  background-color: #0f3348 !important;
  color: #e2e8f0 !important;
}

.dark .site-header,
.dark-mode .site-header {
  background: linear-gradient(135deg, #0b2432 0%, #123447 100%) !important;
}

.dark .section-title,
.dark-mode .section-title,
.dark h1,
.dark-mode h1,
.dark h2,
.dark-mode h2,
.dark h3,
.dark-mode h3 {
  color: #e6e6e6 !important;
}

.dark .section-subtitle,
.dark-mode .section-subtitle,
.dark p,
.dark-mode p {
  color: #c0c7ce !important;
}

.dark .feature-card,
.dark-mode .feature-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}
