/* ============================================
   Galt & Taggart – Landing Page Stylesheet
   Brand Colors Preserved. DO NOT CHANGE.
   ============================================ */

:root {
  /* Brand Colors */
  --primary-green: #499e6c;
  --primary-green-hover: #3d875b;
  --secondary-purple: #8048d8;
  --bg-white: #ffffff;
  --bg-light-purple: #f2edfb;
  --bg-dark-neutral: #383f3e;
  --bg-off-white: #f9fafb;
  --text-dark: #101828;
  --text-white: #ffffff;
  --text-gray: #667085;

  /* Spacing & Layout */
  --border-radius: 4px;
  --card-radius: 12px;
  --max-width: 1280px;
  --header-height: 80px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, 0.1),
    0 2px 4px -2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08),
    0 4px 6px -2px rgba(16, 24, 40, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(16, 24, 40, 0.1),
    0 8px 10px -6px rgba(16, 24, 40, 0.1);
}

/* =========================
   Reset
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family:
    "Inter",
    "Noto Sans JP",
    system-ui,
    -apple-system,
    sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  color: var(--text-dark);
  line-height: 1.7;
}

body {
  background-color: var(--bg-white);
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   Typography
   ========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: inline-block;
}

/* Green underline accent for h2 */
h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-purple)
  );
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

.text-small {
  font-size: 1rem;
}
.text-muted {
  color: var(--text-gray);
}

/* =========================
   Layout
   ========================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.875rem;
}

section {
  padding: 5rem 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

/* Decelerating Focus Effect */
.section-blur {
  opacity: 0.3;
  transform: scale(0.95);
  filter: blur(2px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-focus {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--text-white);
}

.btn-large {
  font-size: 1.15rem;
  padding: 16px 36px;
  border-radius: 6px;
}

.pop-on-hover:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-sm);
}

/* Button size variants */
.btn-small {
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 6px;
}

/* Button groups */
.cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Pill CTA */
.btn-pill {
  font-size: 1.15rem;
  padding: 18px 52px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* Hero text link */
.hero-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
}
.hero-link:hover {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Accent highlight */
.text-accent {
  color: var(--primary-green);
}

/* Brand gradient text for H1 */
.brand-gradient-text {
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-purple)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h1-sub {
  font-size: 0.8em;
  display: inline-block;
  margin-top: 10px;
  opacity: 0.9;
}

/* CTA pulse ring */
.btn.pulse {
  position: relative;
  overflow: visible;
}
.btn.pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(73, 158, 108, 0.36);
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(73, 158, 108, 0.36);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(73, 158, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(73, 158, 108, 0);
  }
}

/* =========================
   Header
   ========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Brand lockup */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
}
.brand-lockup {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.brand-lockup img {
  height: 36px;
  width: auto;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--text-gray);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.brand-lockup .brand-text {
  line-height: 1.05;
  display: grid;
}
.brand-lockup .brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.brand-lockup .brand-text span {
  font-size: 0.68rem;
  color: var(--text-gray);
  letter-spacing: 0.04em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--primary-green);
}

/* Subtle underline hover for nav links */
nav li:not(:last-child) a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: width 0.3s ease;
}

nav li:not(:last-child) a:hover::after {
  width: 100%;
}

/* =========================
   Hero Section
   ========================= */
.hero {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #0b1120;
  color: var(--text-white);
  padding-top: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/hero_bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(11, 17, 32, 0.88) 0%,
    rgba(11, 17, 32, 0.7) 50%,
    rgba(11, 17, 32, 0.55) 100%
  );
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
  padding: 0 1.875rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-text-wrapper {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.6;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero-sub-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.hero-sub-link:visited {
  color: rgba(255, 255, 255, 0.95);
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.hero-sub-link:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.hero p {
  margin-bottom: 1.5rem;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  cursor: pointer;
  animation: gentleFloat 3s ease-in-out infinite;
  transition: border-color 0.3s, color 0.3s;
}

.scroll-indicator:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator svg {
  display: block;
}

/* =========================
   Animations
   ========================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Scroll-triggered reveal */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

/* =========================
   Flow Section
   ========================= */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid #eaecf0;
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, var(--bg-light-purple));
  border: 1px solid #eaecf0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
  transition: transform 0.25s ease;
}

.step-card:hover .step-icon {
  transform: translateY(-2px);
}

/* reveal-on-scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-green), #3d875b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(73, 158, 108, 0.3);
}

.step-content h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.7;
}

/* =========================
   Cards – Generic Hover Card
   ========================= */
.card-hover {
  background: white;
  padding: 28px;
  border-radius: var(--card-radius);
  border: 1px solid #eaecf0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.card-hover h4 {
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.card-hover p {
  color: var(--text-gray);
  margin-bottom: 0;
}

/* =========================
   Service Cards
   ========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border: 1px solid #eaecf0;
  border-radius: var(--card-radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.highlight {
  border: 2px solid var(--secondary-purple);
}

.service-card.highlight::before {
  background: var(--secondary-purple);
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f2f4f7;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.service-features li:last-child {
  border-bottom: none;
}

/* =========================
   Comparison Tables
   ========================= */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid #eaecf0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid #f2f4f7;
  font-size: 0.95rem;
}

.comparison-table th {
  background-color: #f9fafb;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

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

.comparison-table tbody tr {
  transition: background-color 0.2s;
}

.comparison-table tbody tr:hover {
  background-color: #fafbfc;
}

.comparison-table .highlight-col {
  background-color: #f6fbf8;
  font-weight: 600;
  color: var(--primary-green);
}

/* Costs Table */
.costs-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eaecf0;
}

.costs-table th,
.costs-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #f2f4f7;
  font-size: 0.95rem;
}

.costs-table th {
  background-color: var(--bg-off-white);
  font-weight: 600;
  color: var(--text-dark);
}

.costs-table tr:last-child td,
.costs-table tr:last-child th {
  border-bottom: none;
}

/* =========================
   Performance Card
   ========================= */
.performance-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
  text-align: center;
  border: 1px solid #eaecf0;
  position: relative;
  overflow: hidden;
}

.performance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-purple)
  );
}

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

.stat-item h4 {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-item .stat-value {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
}

.stat-item .stat-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 4px;
}

/* =========================
   Risk Section
   ========================= */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.risk-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.risk-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
}

.risk-item h4 {
  color: #721c24;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

/* =========================
   FAQ  – Accordion
   ========================= */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: white;
  border: 1px solid #eaecf0;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.accordion-item:hover {
  border-color: var(--primary-green);
}

.accordion-header {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
  color: var(--text-dark);
}

.accordion-header:hover {
  background-color: var(--bg-off-white);
}

.accordion-header::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary-green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-item.active .accordion-header::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 24px 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* =========================
   Footer
   ========================= */
footer {
  background-color: var(--bg-dark-neutral);
  color: white;
  padding: 60px 0;
}

footer a {
  color: #d0d5dd;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: white;
}

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

  .hero-sub {
    font-size: 1rem;
  }

  .hero-text-wrapper {
    max-width: 100%;
  }

  .cta-group {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-pill {
    width: 100%;
  }

  h2 {
    font-size: 1.75rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

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

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

  .performance-stats {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 0;
  }
}

/* =========================
   Minimal overrides per feedback (clean + subtle)
   ========================= */
.hero-ornaments {
  display: none !important;
}
.brand-gradient-text {
  color: inherit !important;
  background: none !important;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.btn.pulse::after {
  display: none !important;
}
.reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
}
.reveal-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.step-icon {
  display: none !important;
}

.callout {
  padding: 16px 18px !important;
  border: 1px solid #eaecf0 !important;
  box-shadow: none !important;
  background: white !important;
}
.callout .callout-icon {
  display: none !important;
}
.callout-neutral {
  border-left: 4px solid var(--primary-green) !important;
}

.comparison-table th.sticky-col,
.comparison-table td.sticky-col {
  position: static !important;
  box-shadow: none !important;
  background: inherit !important;
}
.comparison-table-wrapper::before,
.comparison-table-wrapper::after {
  display: none !important;
}
.comparison-table[data-col-hover] th,
.comparison-table[data-col-hover] td {
  background-color: inherit !important;
}

/* =========================
   Language-specific typography (JP fallback)
   ========================= */
html:lang(ja) {
  line-break: strict; /* better CJK line breaking */
  word-break: normal;
  overflow-wrap: anywhere; /* allow natural wrapping without forcing mid-word breaks */
}

/* =========================
   About / Trustbar
   ========================= */
.trustbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0.9;
}
.trustbar img {
  height: 28px;
  opacity: 0.6;
}

/* =========================
   Hero ornaments (subtle brand glow)
   ========================= */
.hero-ornaments {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-ornaments .shape {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}
.shape-purple {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(128, 72, 216, 0.3),
    rgba(128, 72, 216, 0) 60%
  );
  top: 10%;
  left: -6%;
}
.shape-green {
  background: radial-gradient(
    circle at 60% 60%,
    rgba(73, 158, 108, 0.28),
    rgba(73, 158, 108, 0) 60%
  );
  bottom: -6%;
  right: -4%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================
   Callouts
   ========================= */
.callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}
.callout .callout-icon {
  line-height: 0;
  flex: 0 0 auto;
}
.callout-warning {
  background: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
}
.list-disc-red {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
  color: #dc3545;
  font-weight: 700;
}

/* =========================
   Tables – sticky header & first column + edge fade
   ========================= */
.comparison-table-wrapper {
  position: relative;
}
.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}
.comparison-table th.sticky-col,
.comparison-table td.sticky-col {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #ffffff;
  box-shadow: 1px 0 0 #f2f4f7;
}

.comparison-table-wrapper::before,
.comparison-table-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  pointer-events: none;
}
.comparison-table-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}
.comparison-table-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

/* Column hover highlight (supports first 4 columns used here) */
.comparison-table[data-col-hover="1"] th:nth-child(1),
.comparison-table[data-col-hover="1"] td:nth-child(1),
.comparison-table[data-col-hover="2"] th:nth-child(2),
.comparison-table[data-col-hover="2"] td:nth-child(2),
.comparison-table[data-col-hover="3"] th:nth-child(3),
.comparison-table[data-col-hover="3"] td:nth-child(3),
.comparison-table[data-col-hover="4"] th:nth-child(4),
.comparison-table[data-col-hover="4"] td:nth-child(4) {
  background-color: #f6fbf8;
}
