/* ===================================================
   Flash BTC Software 2026 - SEO Optimized Stylesheet
   =================================================== */

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

:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fb923c;
  --orange-glow: rgba(249, 115, 22, 0.3);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --dark-5: #2a2a2a;
  --gray: #9ca3af;
  --gray-light: #d1d5db;
  --gray-dark: #6b7280;
  --white: #ffffff;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--gray-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  line-height: 1.3;
  font-weight: 700;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  font-size: 14px;
}
.skip-link:focus {
  left: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--orange-glow);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --- Header / Navbar --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo:hover { color: var(--white); }

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
.logo-text small {
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 8px 14px;
  color: var(--gray-light);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.nav-cta .btn { padding: 8px 20px; font-size: 13px; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .nav-links, .nav-cta {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-cta {
    top: auto;
    padding-top: 0;
    border-bottom: none;
  }
  .nav-links.open, .nav-cta.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 16px; }
  .mobile-toggle { display: flex; }
}

/* --- HERO --- */
.hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,0.08) 0%, transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--orange-light);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BTC Orb Animation */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btc-orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(249, 115, 22, 0.3);
  animation: orb-pulse 3s ease-in-out infinite;
}

.orb-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.2);
}

.orb-ring::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.orb-core {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--orange) 0%, #f59e0b 50%, var(--orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 0 60px var(--orange-glow), inset 0 -4px 12px rgba(0,0,0,0.2);
  animation: orb-glow 4s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes orb-glow {
  0%, 100% { box-shadow: 0 0 60px var(--orange-glow); }
  50% { box-shadow: 0 0 80px rgba(249, 115, 22, 0.5); }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}
.stat span {
  font-size: 14px;
  color: var(--gray);
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .btc-orb { width: 220px; height: 220px; }
  .orb-core { width: 130px; height: 130px; font-size: 52px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* --- Sections General --- */
.section {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}

/* --- About Section --- */
.about-section {
  background: var(--dark-2);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.about-text h3 {
  font-size: 22px;
  margin: 32px 0 16px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  padding: 28px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 36px 28px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* --- Video Demo (in How It Works) --- */
.video-main {
  margin-top: 60px;
  text-align: center;
}
.video-main h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--white);
}
.video-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
}
.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}
.video-caption {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gray-light);
}

/* --- Video Gallery --- */
.videos-section {
  background: var(--dark-2);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.video-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.video-card .video-wrapper {
  border-radius: 0;
  border: none;
}

.video-info {
  padding: 16px 20px;
}
.video-info p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .videos-grid { grid-template-columns: 1fr; }
}

/* --- Wallets --- */
.wallets-section {
  background: var(--dark-2);
}

.wallets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wallet-item {
  padding: 24px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all var(--transition);
}
.wallet-item:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}
.wallet-item strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}
.wallet-item span {
  font-size: 13px;
  color: var(--gray);
}

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

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  padding: 40px 32px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}
.price-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, var(--dark-3) 100%);
  transform: scale(1.04);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.price-header {
  text-align: center;
  margin-bottom: 32px;
}
.price-header h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.price-tag {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}
.price-tag .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}
.price-tag .amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-tag .period {
  font-size: 14px;
  color: var(--gray);
  align-self: flex-end;
  margin-bottom: 6px;
  margin-left: 4px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.price-features li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--gray-light);
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-4px); }
}

/* --- Demo Section --- */
.demo-section {
  background: var(--dark-2);
}

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

.demo-cta {
  margin-top: 10px;
}

.demo-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray);
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  padding: 32px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.review-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

.review-stars {
  color: #f59e0b;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card blockquote p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-card cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
}
.review-card cite strong {
  color: var(--white);
  font-size: 15px;
}
.review-card cite span {
  color: var(--orange);
  font-size: 13px;
}

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

/* --- FAQ --- */
.faq-section {
  background: var(--dark-2);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.2);
}

.faq-item[open] {
  border-color: rgba(249, 115, 22, 0.3);
  background: var(--dark-3);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

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

.faq-answer {
  padding: 0 24px 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
}

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

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.content-columns h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.content-columns h3 {
  font-size: 20px;
  margin: 28px 0 12px;
}

.content-columns p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

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

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark-2);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

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

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--gray);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--orange);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-contact a {
  color: var(--gray);
  font-size: 14px;
}
.footer-contact a:hover {
  color: var(--orange);
}

.footer-keywords {
  font-size: 12px;
  color: var(--gray-dark);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray-dark);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Accessibility / Print --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

@media print {
  .site-header, .hero-visual, .mobile-toggle, .btn, .nav-cta, .cta-section { display: none; }
  body { background: #fff; color: #000; }
  h1, h2, h3, h4 { color: #000; }
  .section { opacity: 1; transform: none; padding: 20px 0; }
}
