/* ============================================================
   Quipu AI Accounting — Marketing Website Styles
   Extends quipu.css design tokens (--q-* variables)
   ============================================================ */

/* ---------- General ---------- */
.w-body {
  background: #ffffff;
  color: var(--q-text-body);
  overflow-x: hidden;
}

.w-section {
  padding: 5rem 0;
}

.w-section-alt {
  background: var(--q-body-bg);
}

.w-section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--q-text-heading);
  margin-bottom: 0.75rem;
}

.w-section-subtitle {
  font-size: 1.1rem;
  color: var(--q-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ---------- Navbar ---------- */
.w-navbar {
  padding: 1rem 0;
  transition: all var(--q-transition-normal) var(--q-ease-smooth);
  background: transparent;
  z-index: 1030;
}

.w-navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
}

.w-navbar .navbar-brand img {
  height: 36px;
  transition: filter var(--q-transition-normal);
}

/* On transparent navbar over dark hero, logo should be white */
.w-navbar:not(.scrolled) .navbar-brand img {
  filter: brightness(0) invert(1);
}

.w-navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: color var(--q-transition-fast);
}

.w-navbar.scrolled .nav-link {
  color: var(--q-text-body);
}

.w-navbar .nav-link:hover {
  color: #ffffff;
}

.w-navbar.scrolled .nav-link:hover {
  color: var(--q-primary);
}

.w-navbar .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.w-navbar.scrolled .btn-outline-light {
  border-color: var(--q-primary);
  color: var(--q-primary);
}

.w-navbar.scrolled .btn-outline-light:hover {
  background: var(--q-primary);
  color: #ffffff;
}

.w-navbar .btn-light {
  background: #ffffff;
  color: var(--q-primary);
  font-weight: 600;
  border: none;
}

.w-navbar.scrolled .btn-light {
  background: var(--q-primary);
  color: #ffffff;
}

/* Mobile navbar toggle */
.w-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.w-navbar.scrolled .navbar-toggler {
  border-color: var(--q-border-color);
  color: var(--q-text-body);
}

/* ---------- Hero Section ---------- */
.w-hero {
  background: linear-gradient(135deg, #0D3B66 0%, #0A4F70 40%, #00838F 70%, #00ACC1 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.w-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.2) 0%, transparent 60%);
  animation: w-float 20s ease-in-out infinite;
  pointer-events: none;
}

.w-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(13, 59, 102, 0.3) 0%, transparent 60%);
  animation: w-float 15s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes w-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.w-hero-content {
  position: relative;
  z-index: 2;
}

.w-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* ---------- Hero entrance animation ---------- */
.wh-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(20deg);
  animation: wh-word-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 0.12s + 0.15s);
}

@keyframes wh-word-in {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.wh-fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: wh-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0.8s);
}

@keyframes wh-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.w-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.w-hero-ctas .btn {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
}

.w-hero-ctas .btn-light {
  background: #ffffff;
  color: var(--q-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.w-hero-ctas .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.w-hero-ctas .btn-light .bi-rocket-takeoff {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.w-hero-ctas .btn-light:hover .bi-rocket-takeoff {
  transform: translate(4px, -4px) rotate(-15deg);
}

.w-hero-ctas .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.w-hero-ctas .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Hero image/mockup */
.w-hero-image {
  position: relative;
  z-index: 2;
}

.w-hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* ---------- Product Demo (Hero) ---------- */
.pd-window {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: pd-window-in 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

@keyframes pd-window-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pd-topbar {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pd-dots {
  display: flex;
  gap: 6px;
}

.pd-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.pd-dots span:first-child { background: #ff5f57; }
.pd-dots span:nth-child(2) { background: #febc2e; }
.pd-dots span:nth-child(3) { background: #28c840; }

.pd-title {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
}

/* Screens container */
.pd-screens {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.pd-screen {
  position: absolute;
  inset: 0;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.pd-screen.pd-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.pd-screen-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pd-screen-label i {
  margin-right: 6px;
  color: #4DD0E1;
}

/* Screen 1: Dashboard */
.pd-dash-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.pd-dash-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pd-visible .pd-dash-card {
  opacity: 1;
  transform: translateY(0);
}

.pd-visible .pd-dash-card:nth-child(1) { transition-delay: 0.15s; }
.pd-visible .pd-dash-card:nth-child(2) { transition-delay: 0.3s; }
.pd-visible .pd-dash-card:nth-child(3) { transition-delay: 0.45s; }

.pd-dash-card-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 4px;
}

.pd-dash-card-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.pd-dash-card-trend {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.pd-dash-card-trend.up {
  color: #4DD0E1;
}

.pd-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.pd-chart-bar {
  flex: 1;
  background: rgba(77, 208, 225, 0.3);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pd-visible .pd-chart-bar {
  transform: scaleY(1);
}

.pd-visible .pd-chart-bar:nth-child(1) { transition-delay: 0.5s; }
.pd-visible .pd-chart-bar:nth-child(2) { transition-delay: 0.6s; }
.pd-visible .pd-chart-bar:nth-child(3) { transition-delay: 0.7s; }
.pd-visible .pd-chart-bar:nth-child(4) { transition-delay: 0.8s; }
.pd-visible .pd-chart-bar:nth-child(5) { transition-delay: 0.9s; }
.pd-visible .pd-chart-bar:nth-child(6) { transition-delay: 1.0s; }

.pd-chart-bar.accent {
  background: linear-gradient(to top, #00BCD4, #4DD0E1);
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

/* Screen 2: Invoice form */
.pd-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pd-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pd-visible .pd-form-row { opacity: 1; transform: translateX(0); }
.pd-visible .pd-form-row:nth-child(1) { transition-delay: 0.1s; }
.pd-visible .pd-form-row:nth-child(2) { transition-delay: 0.2s; }
.pd-visible .pd-form-row:nth-child(3) { transition-delay: 0.3s; }
.pd-visible .pd-form-row:nth-child(4) { transition-delay: 0.4s; }
.pd-visible .pd-form-row:nth-child(5) { transition-delay: 0.5s; }
.pd-visible .pd-form-row:nth-child(6) { transition-delay: 0.6s; }
.pd-visible .pd-form-row:nth-child(7) { transition-delay: 0.7s; }

.pd-form-row.highlight {
  border-color: rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.08);
}

.pd-form-row.total {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.pd-form-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.pd-form-value {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.pd-form-row.total .pd-form-value {
  color: #4DD0E1;
  font-size: 0.85rem;
  font-weight: 800;
}

/* Screen 3: GST Filing */
.pd-filing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1rem;
}

.pd-filing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pd-visible .pd-filing-item { opacity: 1; transform: translateY(0); }
.pd-visible .pd-filing-item:nth-child(1) { transition-delay: 0.15s; }
.pd-visible .pd-filing-item:nth-child(2) { transition-delay: 0.35s; }
.pd-visible .pd-filing-item:nth-child(3) { transition-delay: 0.55s; }

.pd-filing-item.done {
  border-color: rgba(38, 166, 154, 0.3);
}

.pd-filing-item.active {
  border-color: rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.06);
}

.pd-filing-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 70px;
}

.pd-filing-status {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
}

.pd-filing-item.done .pd-filing-status {
  color: #80CBC4;
}

.pd-filing-item.active .pd-filing-status {
  color: #4DD0E1;
}

.pd-filing-progress {
  flex: 1;
}

.pd-filing-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.pd-filing-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00BCD4, #4DD0E1);
  border-radius: 3px;
  animation: pd-fill-bar 3s ease-in-out infinite;
}

@keyframes pd-fill-bar {
  0% { width: 0%; }
  50% { width: 75%; }
  100% { width: 100%; }
}

.pd-filing-summary {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s ease 0.7s;
}

.pd-visible .pd-filing-summary { opacity: 1; }

/* Screen 4: Health Score */
.pd-health {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1rem 0;
}

.pd-health-ring {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.pd-health-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pd-health-arc {
  stroke-dasharray: 0 214;
  transition: stroke-dasharray 1.5s ease;
}

.pd-screen-4.pd-visible .pd-health-arc {
  stroke-dasharray: 197 214;
}

.pd-health-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 800;
  color: #4DD0E1;
  text-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}

.pd-health-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-health-item {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pd-visible .pd-health-item { opacity: 1; transform: translateX(0); }
.pd-visible .pd-health-item:nth-child(1) { transition-delay: 0.3s; }
.pd-visible .pd-health-item:nth-child(2) { transition-delay: 0.45s; }
.pd-visible .pd-health-item:nth-child(3) { transition-delay: 0.6s; }
.pd-visible .pd-health-item:nth-child(4) { transition-delay: 0.75s; }

.pd-health-item i {
  color: #4DD0E1;
  font-size: 0.85rem;
}

/* Step indicator dots */
.pd-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

.pd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pd-dot.pd-dot-active {
  background: #4DD0E1;
  width: 24px;
  border-radius: 4px;
}

/* ---------- Features Hero: Feature Grid ---------- */
.hero-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.hf-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: hf-card-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hf-card-1 { animation-delay: 0.8s; }
.hf-card-2 { animation-delay: 0.95s; }
.hf-card-3 { animation-delay: 1.1s; }
.hf-card-4 { animation-delay: 1.25s; }
.hf-card-5 { animation-delay: 1.4s; }
.hf-card-6 { animation-delay: 1.55s; }

@keyframes hf-card-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hf-icon {
  font-size: 1.3rem;
  color: #4DD0E1;
  margin-bottom: 6px;
}

.hf-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.hf-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}

.hf-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00BCD4, #4DD0E1);
  border-radius: 2px;
  animation: hf-bar-grow 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

@keyframes hf-bar-grow { to { width: var(--w); } }

.hf-stat {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ---------- Pricing Hero: Savings Calculator ---------- */
.hero-price-calc { position: relative; z-index: 2; }

.hp-window {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: hp-win-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

@keyframes hp-win-in { to { opacity: 1; transform: translateY(0); } }

.hp-header {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.hp-header i { color: #4DD0E1; margin-right: 8px; }

.hp-body { padding: 20px; }

.hp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-row:last-of-type { border-bottom: none; }

.hp-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hp-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
}

.hp-rupee { font-weight: 600; }

.hp-divider {
  height: 1px;
  background: rgba(77, 208, 225, 0.3);
  margin: 8px 0;
}

.hp-total .hp-label { font-weight: 700; color: rgba(255, 255, 255, 0.8); }

.hp-highlight {
  color: #4DD0E1;
  font-size: 1.4rem;
}

.hp-badge {
  margin-top: 16px;
  display: inline-block;
  background: rgba(77, 208, 225, 0.15);
  border: 1px solid rgba(77, 208, 225, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4DD0E1;
  opacity: 0;
  animation: hf-card-in 0.5s ease 2.5s forwards;
}

.hp-badge i { margin-right: 4px; }

/* ---------- About Hero: Orbit ---------- */
.hero-about-orbit { position: relative; z-index: 2; display: flex; justify-content: center; }

.ha-ring {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  animation: ha-spin 40s linear infinite;
}

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

.ha-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  animation: ha-counter-spin 40s linear infinite;
}

@keyframes ha-counter-spin { to { transform: translate(-50%, -50%) rotate(-360deg); } }

.ha-logo {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #00BCD4, #0D3B66);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: #fff;
  margin: 0 auto 6px;
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.3);
}

.ha-center-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.ha-node {
  position: absolute;
  width: 62px; height: 62px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  animation: ha-counter-spin 40s linear infinite;
  opacity: 0;
}

.ha-node i { font-size: 1rem; color: #4DD0E1; }
.ha-node span { font-size: 0.55rem; font-weight: 700; color: rgba(255, 255, 255, 0.7); margin-top: 2px; }

.ha-node-1 { top: -31px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.ha-node-2 { top: 15%; right: -20px; }
.ha-node-3 { bottom: 15%; right: -20px; }
.ha-node-4 { bottom: -31px; left: 50%; transform: translateX(-50%); }
.ha-node-5 { bottom: 15%; left: -20px; }
.ha-node-6 { top: 15%; left: -20px; }

.ha-node-1 { animation: ha-counter-spin 40s linear infinite, ha-node-in 0.5s ease 0.6s forwards; }
.ha-node-2 { animation: ha-counter-spin 40s linear infinite, ha-node-in 0.5s ease 0.8s forwards; }
.ha-node-3 { animation: ha-counter-spin 40s linear infinite, ha-node-in 0.5s ease 1.0s forwards; }
.ha-node-4 { animation: ha-counter-spin 40s linear infinite, ha-node-in 0.5s ease 1.2s forwards; }
.ha-node-5 { animation: ha-counter-spin 40s linear infinite, ha-node-in 0.5s ease 1.4s forwards; }
.ha-node-6 { animation: ha-counter-spin 40s linear infinite, ha-node-in 0.5s ease 1.6s forwards; }

@keyframes ha-node-in { to { opacity: 1; } }

/* ---------- Contact Hero: Chat Mockup ---------- */
.hero-contact-msg { position: relative; z-index: 2; }

.hc-window {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: hp-win-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hc-header {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.hc-header i { color: #4DD0E1; margin-right: 8px; }

.hc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
}

.hc-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(12px);
}

.hc-msg-1 { animation: hc-msg-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards; }
.hc-msg-2 { animation: hc-msg-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards; }
.hc-msg-3 { animation: hc-msg-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards; }

.hc-typing {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  animation: hc-msg-in 0.5s ease 3.2s forwards;
}

@keyframes hc-msg-in { to { opacity: 1; transform: translateY(0); } }

.hc-msg-out { flex-direction: row-reverse; }

.hc-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.hc-avatar-bot {
  background: rgba(77, 208, 225, 0.2);
  color: #4DD0E1;
}

.hc-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 80%;
}

.hc-msg-out .hc-bubble {
  background: rgba(77, 208, 225, 0.12);
  border-color: rgba(77, 208, 225, 0.2);
}

.hc-dots {
  display: flex;
  gap: 4px;
  padding: 10px 16px;
  background: rgba(77, 208, 225, 0.12);
  border-radius: 14px;
}

.hc-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4DD0E1;
  animation: hc-dot-bounce 1.2s ease-in-out infinite;
}

.hc-dots span:nth-child(2) { animation-delay: 0.15s; }
.hc-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes hc-dot-bounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ---------- Trust Bar ---------- */
.w-trust-bar {
  padding: 3rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--q-border-color);
}

.w-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
}

.w-trust-item i {
  font-size: 1.5rem;
  color: var(--q-primary);
}

.w-trust-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--q-text-heading);
}

/* ---------- Feature Cards ---------- */
.w-feature-card {
  background: var(--q-card-bg);
  border-radius: var(--q-card-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--q-card-shadow);
  transition: all var(--q-transition-normal) var(--q-ease-smooth);
  border: 1px solid var(--q-border-color);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.w-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00BCD4, #0D3B66);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.w-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--q-card-shadow-hover);
  border-color: transparent;
}

.w-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.w-feature-card:hover .w-feature-icon {
  transform: scale(1.1) rotate(-3deg);
}

.w-feature-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--q-text-heading);
  margin-bottom: 0.75rem;
}

.w-feature-card p {
  font-size: 0.9rem;
  color: var(--q-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- AI Input Section ---------- */
.ai-input-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.15), rgba(77, 208, 225, 0.1));
  border: 1px solid rgba(0, 188, 212, 0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--q-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.ai-input-badge i { margin-right: 4px; }

.ai-input-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 1.5rem;
}

.ai-input-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ai-input-feat-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--q-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ai-input-feat strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--q-heading-color);
  margin-bottom: 2px;
}

.ai-input-feat span {
  font-size: 0.82rem;
  color: var(--q-text-muted);
  line-height: 1.4;
}

.ai-demo-standalone {
  background: rgba(13, 59, 102, 0.04);
  border: 1px solid var(--q-border-color);
  border-radius: 20px;
}

/* Mobile AI demo flow */
.ai-input-mobile-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(13, 59, 102, 0.04);
  border-radius: 16px;
  border: 1px solid var(--q-border-color);
}

.ai-input-mobile-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--q-border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ai-input-mobile-step i {
  font-size: 1.5rem;
  color: var(--q-primary);
}

.ai-input-mobile-step span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--q-heading-color);
}

.ai-input-mobile-arrow {
  color: var(--q-primary);
  font-size: 1rem;
  opacity: 0.5;
}

/* ---------- AI Demo Card ---------- */
.ai-demo-card {
  text-align: left;
  padding: 2rem 2.5rem;
}

.ai-demo h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--q-text-heading);
  margin-bottom: 0.25rem;
}

.ai-demo-subtitle {
  font-size: 0.85rem;
  color: var(--q-text-muted);
  margin-bottom: 1.5rem;
}

/* Stage layout: 3 columns with arrows */
.ai-demo-stage {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 180px;
}

/* Arrows between phases */
.ai-demo-arrow {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  color: var(--q-text-muted);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ai-demo.ai-active .ai-demo-arrow {
  animation: ai-arrow-pulse 8s infinite;
}

@keyframes ai-arrow-pulse {
  0%, 15% { opacity: 0; }
  20%, 45% { opacity: 0.4; }
  50%, 100% { opacity: 0.2; }
}

/* Phase labels */
.ai-demo-phase-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--q-text-muted);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0;
}

.ai-demo-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00BCD4;
  display: inline-block;
}

.ai-demo-spin {
  animation: ai-spin 1s linear infinite;
}

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

/* === Phase 1: Phone === */
.ai-demo-phone {
  flex: 0 0 120px;
}

.ai-demo-phone-frame {
  width: 110px;
  height: 155px;
  border: 2.5px solid var(--q-border-color);
  border-radius: 16px;
  padding: 12px 10px 8px;
  position: relative;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ai-demo.ai-active .ai-demo-phone-frame {
  animation: ai-phone-in 8s infinite;
}

@keyframes ai-phone-in {
  0% { opacity: 0; transform: scale(0.8); }
  5%, 90% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; transform: scale(0.8); }
}

.ai-demo-phone-notch {
  width: 40px;
  height: 4px;
  background: var(--q-border-color);
  border-radius: 2px;
  margin: 0 auto 10px;
}

/* Document inside phone */
.ai-demo-doc {
  opacity: 0;
}

.ai-demo.ai-active .ai-demo-doc {
  animation: ai-doc-appear 8s infinite;
}

@keyframes ai-doc-appear {
  0%, 5% { opacity: 0; transform: translateY(10px); }
  10%, 85% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(10px); }
}

.ai-demo-doc-header {
  width: 60%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-bottom: 8px;
}

.ai-demo-doc-line {
  width: 100%;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  margin-bottom: 5px;
}

.ai-demo-doc-line.short {
  width: 65%;
}

.ai-demo-doc-amount {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--q-text-heading);
  margin-top: 8px;
  text-align: right;
}

/* Flash effect */
.ai-demo-flash {
  position: absolute;
  inset: 0;
  background: rgba(0, 188, 212, 0.15);
  opacity: 0;
  border-radius: 14px;
}

.ai-demo.ai-active .ai-demo-flash {
  animation: ai-flash 8s infinite;
}

@keyframes ai-flash {
  0%, 14% { opacity: 0; }
  15%, 17% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

/* Phase 1 label */
.ai-demo.ai-active .ai-demo-phone .ai-demo-phase-label {
  animation: ai-label-1 8s infinite;
}

@keyframes ai-label-1 {
  0%, 10% { opacity: 0; }
  15%, 25% { opacity: 1; }
  30%, 100% { opacity: 0; }
}

/* === Phase 2: Fields === */
.ai-demo-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ai-demo-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: var(--q-body-bg);
  border: 1px solid var(--q-border-color);
  border-radius: 8px;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-15px);
}

.ai-demo-field-label {
  color: var(--q-text-muted);
  font-weight: 500;
}

.ai-demo-field-value {
  color: var(--q-text-heading);
  font-weight: 700;
  font-family: monospace;
  font-size: 0.72rem;
}

/* Staggered field appearance */
.ai-demo.ai-active .ai-demo-field-1 { animation: ai-field-in 8s infinite; animation-delay: 0s; }
.ai-demo.ai-active .ai-demo-field-2 { animation: ai-field-in 8s infinite; animation-delay: 0.3s; }
.ai-demo.ai-active .ai-demo-field-3 { animation: ai-field-in 8s infinite; animation-delay: 0.6s; }
.ai-demo.ai-active .ai-demo-field-4 { animation: ai-field-in 8s infinite; animation-delay: 0.9s; }
.ai-demo.ai-active .ai-demo-field-5 { animation: ai-field-in 8s infinite; animation-delay: 1.2s; }

@keyframes ai-field-in {
  0%, 24% { opacity: 0; transform: translateX(-15px); }
  30%, 70% { opacity: 1; transform: translateX(0); border-color: #00BCD4; }
  75%, 85% { opacity: 1; transform: translateX(0); border-color: var(--q-border-color); }
  90%, 100% { opacity: 0; transform: translateX(0); }
}

/* Phase 2 label */
.ai-demo.ai-active .ai-demo-fields .ai-demo-phase-label {
  animation: ai-label-2 8s infinite;
}

@keyframes ai-label-2 {
  0%, 24% { opacity: 0; }
  28%, 55% { opacity: 1; }
  60%, 100% { opacity: 0; }
}

/* === Phase 3: Result === */
.ai-demo-result {
  flex: 0 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-demo-invoice-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--q-body-bg);
  border: 2px solid var(--q-border-color);
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  transform: scale(0.7);
}

.ai-demo.ai-active .ai-demo-invoice-mini {
  animation: ai-result-in 8s infinite;
}

@keyframes ai-result-in {
  0%, 55% { opacity: 0; transform: scale(0.7); border-color: var(--q-border-color); }
  62%, 85% { opacity: 1; transform: scale(1); border-color: #26A69A; }
  90%, 100% { opacity: 0; transform: scale(0.9); }
}

.ai-demo-invoice-icon {
  font-size: 1.8rem;
  color: #26A69A;
  margin-bottom: 0.4rem;
}

.ai-demo-invoice-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ai-demo-invoice-info strong {
  font-size: 0.78rem;
  color: var(--q-text-heading);
}

.ai-demo-invoice-info span {
  font-size: 0.7rem;
  color: var(--q-text-muted);
}

.ai-demo-success-label {
  color: #26A69A;
}

.ai-demo.ai-active .ai-demo-success-label {
  animation: ai-label-3 8s infinite;
}

@keyframes ai-label-3 {
  0%, 60% { opacity: 0; }
  65%, 85% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

/* ---------- How It Works ---------- */
.w-step {
  text-align: center;
  position: relative;
  padding: 0 1.5rem;
}

.w-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--q-gradient);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(6, 147, 227, 0.3);
}

.w-step h5 {
  font-weight: 700;
  color: var(--q-text-heading);
  margin-bottom: 0.5rem;
}

.w-step p {
  font-size: 0.9rem;
  color: var(--q-text-muted);
  line-height: 1.6;
}

/* Connector line between steps */
.w-step-connector {
  position: absolute;
  top: 28px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--q-border-color);
  z-index: 0;
}

/* ---------- Stats ---------- */
.w-stat {
  text-align: center;
  padding: 1.5rem;
}

.w-stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--q-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.w-stat-label {
  font-size: 0.9rem;
  color: var(--q-text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ---------- Pricing Cards ---------- */
.w-pricing-card {
  background: var(--q-card-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--q-card-shadow);
  border: 2px solid var(--q-border-color);
  transition: all var(--q-transition-normal) var(--q-ease-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.w-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--q-card-shadow-hover);
}

.w-pricing-card.popular {
  border-color: var(--q-primary);
  position: relative;
}

.w-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--q-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.w-pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--q-text-heading);
  margin-bottom: 0.25rem;
}

.w-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--q-text-heading);
  margin: 1rem 0;
}

.w-pricing-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--q-text-muted);
}

.w-pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  flex-grow: 1;
}

.w-pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--q-text-body);
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.w-pricing-features li i {
  color: var(--q-success);
  margin-top: 2px;
}

.w-pricing-card .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

/* ---------- CTA Section ---------- */
.w-cta-section {
  background: linear-gradient(135deg, #0D3B66 0%, #00838F 60%, #00ACC1 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.w-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.w-cta-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.w-cta-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.w-cta-section .btn {
  position: relative;
  z-index: 1;
  padding: 0.85rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
}

/* ---------- Footer ---------- */
.w-footer {
  background: #1a1d2e;
  color: #a1a7bb;
  padding: 4rem 0 0;
}

.w-footer h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.w-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.w-footer-links li {
  margin-bottom: 0.5rem;
}

.w-footer-links a {
  color: #a1a7bb;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--q-transition-fast);
}

.w-footer-links a:hover {
  color: #ffffff;
}

.w-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.w-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.w-footer-bottom p {
  font-size: 0.85rem;
  color: #5d6384;
  margin: 0;
}

.w-footer-legal-links {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #3d4160;
}

.w-footer-legal-links a {
  color: #5d6384;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.85rem;
  transition: color var(--q-transition-fast);
}

.w-footer-legal-links a:hover {
  color: var(--q-primary);
}

.w-footer-social a {
  color: #5d6384;
  font-size: 1.25rem;
  margin-left: 1rem;
  transition: color var(--q-transition-fast);
}

.w-footer-social a:hover {
  color: var(--q-primary);
}

/* ---------- Scroll Animations ---------- */
.w-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--q-ease-smooth), transform 0.6s var(--q-ease-smooth);
}

.w-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.w-stagger > * {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s var(--q-ease-smooth), transform 0.6s var(--q-ease-smooth);
}

.w-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.w-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.w-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.w-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.w-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.w-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.w-stagger.visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------- Feature Badge ---------- */
.w-feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: rgba(0, 188, 212, 0.1);
  color: #00ACC1;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Feature List ---------- */
.w-feature-list-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
}

.w-feature-list-item + .w-feature-list-item {
  border-top: 1px solid var(--q-border-color);
}

.w-feature-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 188, 212, 0.1);
  color: #00ACC1;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}

.w-feature-list-item strong {
  font-size: 0.95rem;
  color: var(--q-text-heading);
  display: block;
  margin-bottom: 0.2rem;
}

.w-feature-list-item p {
  font-size: 0.85rem;
  color: var(--q-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ---------- Feature Mockup Windows ---------- */
.w-feature-mockup {
  background: var(--q-card-bg);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--q-border-color);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.w-feature-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.w-mockup-header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--q-body-bg);
  border-bottom: 1px solid var(--q-border-color);
}

.w-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
}

.w-mockup-dot:first-child { background: #ff5f57; }
.w-mockup-dot:nth-child(2) { background: #febc2e; }
.w-mockup-dot:nth-child(3) { background: #28c840; }

.w-mockup-body {
  padding: 1.5rem;
}

.w-mockup-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--q-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.w-mockup-label i {
  color: var(--q-primary);
  margin-right: 6px;
}

/* Mockup rows (GST filing) */
.w-mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--q-body-bg);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--q-text-body);
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.w-mockup-row.done {
  border-color: rgba(38, 166, 154, 0.2);
}

.w-mockup-row.active {
  border-color: rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.04);
}

.w-mockup-status {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--q-text-muted);
}

.w-mockup-row.done .w-mockup-status {
  color: #26A69A;
}

.w-mockup-row.active .w-mockup-status {
  color: #00ACC1;
}

.w-mockup-status.pending {
  color: #FFA000;
}

.w-mockup-divider {
  height: 1px;
  background: var(--q-border-color);
  margin: 12px 0;
}

.w-mockup-stat-row {
  display: flex;
  gap: 1rem;
}

.w-mockup-stat {
  flex: 1;
  padding: 10px 14px;
  background: var(--q-body-bg);
  border-radius: 8px;
}

.w-mockup-stat-label {
  font-size: 0.7rem;
  color: var(--q-text-muted);
  font-weight: 500;
}

.w-mockup-stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--q-text-heading);
}

/* Mockup fields (AI extraction) */
.w-mockup-field {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--q-body-bg);
  border-radius: 8px;
  margin-bottom: 6px;
  border: 1px solid var(--q-border-color);
  transition: border-color 0.3s ease;
}

.w-mockup-field.highlight {
  border-color: rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.04);
}

.w-mockup-field-label {
  font-size: 0.72rem;
  color: var(--q-text-muted);
  font-weight: 500;
  min-width: 80px;
}

.w-mockup-field-value {
  font-size: 0.8rem;
  color: var(--q-text-heading);
  font-weight: 600;
  flex: 1;
}

.w-mockup-confidence {
  font-size: 0.65rem;
  font-weight: 700;
  color: #00ACC1;
  background: rgba(0, 188, 212, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: auto;
}

/* Mockup invoice */
.w-mockup-invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.w-mockup-invoice-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: #26A69A;
  background: rgba(38, 166, 154, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
}

.w-mockup-invoice-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--q-text-body);
}

.w-mockup-invoice-line.sub {
  font-size: 0.75rem;
  color: var(--q-text-muted);
  padding-left: 1rem;
}

.w-mockup-invoice-line.total {
  font-weight: 800;
  color: var(--q-text-heading);
  font-size: 0.95rem;
}

/* Mockup company selector */
.w-mockup-company {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid var(--q-border-color);
  background: var(--q-body-bg);
  transition: all 0.3s ease;
}

.w-mockup-company.active {
  border-color: rgba(67, 160, 71, 0.3);
  background: rgba(67, 160, 71, 0.04);
}

.w-mockup-company-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 188, 212, 0.15);
  color: #00ACC1;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.w-mockup-company-info {
  flex: 1;
}

.w-mockup-company-info strong {
  display: block;
  font-size: 0.82rem;
  color: var(--q-text-heading);
}

.w-mockup-company-info span {
  font-size: 0.7rem;
  color: var(--q-text-muted);
  font-family: monospace;
}

.w-mockup-add-company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px dashed var(--q-border-color);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--q-text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.w-mockup-add-company:hover {
  border-color: var(--q-primary);
  color: var(--q-primary);
}

/* Mockup bank reconciliation */
.w-mockup-recon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--q-body-bg);
  border: 1px solid var(--q-border-color);
}

.w-mockup-recon-item.matched {
  border-color: rgba(38, 166, 154, 0.15);
}

.w-mockup-recon-item.pending {
  border-color: rgba(255, 160, 0, 0.2);
}

.w-mockup-recon-left {
  flex: 1;
}

.w-mockup-recon-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--q-text-heading);
}

.w-mockup-recon-date {
  font-size: 0.7rem;
  color: var(--q-text-muted);
}

.w-mockup-recon-amount {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: monospace;
}

.w-mockup-recon-amount.credit { color: #26A69A; }
.w-mockup-recon-amount.debit { color: #EF5350; }

.w-mockup-recon-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: #26A69A;
  background: rgba(38, 166, 154, 0.1);
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.w-mockup-recon-badge.unmatched {
  color: #FFA000;
  background: rgba(255, 160, 0, 0.1);
}

/* Mockup health ring */
.w-mockup-health {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.w-mockup-health-ring {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.w-mockup-health-ring svg {
  width: 100%;
  height: 100%;
}

.w-mockup-health-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--q-text-heading);
}

.w-mockup-health-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.w-mockup-health-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--q-text-body);
}

/* ---------- GST Filing Demo Animation ---------- */
/* 12s total loop: rows appear sequentially, file one by one, then summary */
.gf-label,
.gf-row,
.gf-divider,
.gf-stats,
.gf-summary {
  opacity: 0;
}

.gf-spin {
  display: inline-block;
}

.gst-filing-demo.gf-active .gf-spin {
  animation: gf-spin-icon 0.8s linear infinite;
}

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

/* Status spans: stacked via absolute positioning, controlled by opacity */
.gf-status {
  font-size: 0.78rem;
  font-weight: 600;
  position: relative;
  min-width: 110px;
  text-align: right;
  height: 1.2em;
}
.gf-status > span {
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
}
.gf-status-gen { color: #FFA000; }
.gf-status-filing { color: #00ACC1; display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.gf-status-done { color: #26A69A; }
.gf-status-pending { color: #FFA000; }

/* Progress bar inside GSTR-3B */
.gf-progress-bar {
  width: 60px;
  height: 4px;
  background: rgba(0, 188, 212, 0.15);
  border-radius: 2px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.gf-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00BCD4, #4DD0E1);
  border-radius: 2px;
}

/* Summary bar */
.gf-summary {
  text-align: center;
  padding: 10px;
  margin-top: 12px;
  background: rgba(38, 166, 154, 0.08);
  border: 1px solid rgba(38, 166, 154, 0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #26A69A;
}

/* Row state changes during animation */
.gst-filing-demo.gf-active .gf-label {
  animation: gf-fade-in 12s infinite;
}

@keyframes gf-fade-in {
  0% { opacity: 0; transform: translateY(-5px); }
  3%, 90% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; }
}

/* Row 1: GSTR-1 — appears at 5%, generating at 5-15%, filed from 18% */
.gst-filing-demo.gf-active .gf-row-1 {
  animation: gf-row1-appear 12s infinite;
}

@keyframes gf-row1-appear {
  0%, 4% { opacity: 0; transform: translateX(-20px); }
  7%, 90% { opacity: 1; transform: translateX(0); }
  95%, 100% { opacity: 0; transform: translateX(0); }
}

.gst-filing-demo.gf-active .gf-row-1 .gf-status-gen {
  animation: gf-r1-gen 12s infinite;
}

@keyframes gf-r1-gen {
  0%, 6% { opacity: 0; }
  8%, 16% { opacity: 1; }
  18%, 100% { opacity: 0; }
}

.gst-filing-demo.gf-active .gf-row-1 .gf-status-done {
  animation: gf-r1-done 12s infinite;
}

@keyframes gf-r1-done {
  0%, 17% { opacity: 0; }
  20%, 90% { opacity: 1; }
  95%, 100% { opacity: 0; }
}

/* Row 1 border changes to done */
.gst-filing-demo.gf-active .gf-row-1 {
  animation: gf-row1-appear 12s infinite, gf-row1-border 12s infinite;
}

@keyframes gf-row1-border {
  0%, 17% { border-color: rgba(0, 188, 212, 0.3); background: rgba(0, 188, 212, 0.04); }
  20%, 90% { border-color: rgba(38, 166, 154, 0.2); background: var(--q-body-bg); }
  95%, 100% { border-color: transparent; }
}

/* Row 2: GSTR-3B — appears at 20%, generating 20-30%, filing 32-50%, filed from 52% */
.gst-filing-demo.gf-active .gf-row-2 {
  animation: gf-row2-appear 12s infinite, gf-row2-border 12s infinite;
}

@keyframes gf-row2-appear {
  0%, 19% { opacity: 0; transform: translateX(-20px); }
  23%, 90% { opacity: 1; transform: translateX(0); }
  95%, 100% { opacity: 0; transform: translateX(0); }
}

@keyframes gf-row2-border {
  0%, 19% { border-color: transparent; }
  23%, 50% { border-color: rgba(0, 188, 212, 0.3); background: rgba(0, 188, 212, 0.04); }
  53%, 90% { border-color: rgba(38, 166, 154, 0.2); background: var(--q-body-bg); }
  95%, 100% { border-color: transparent; }
}

.gst-filing-demo.gf-active .gf-row-2 .gf-status-gen {
  animation: gf-r2-gen 12s infinite;
}

@keyframes gf-r2-gen {
  0%, 22% { opacity: 0; }
  25%, 30% { opacity: 1; }
  33%, 100% { opacity: 0; }
}

.gst-filing-demo.gf-active .gf-row-2 .gf-status-filing {
  animation: gf-r2-filing 12s infinite;
}

@keyframes gf-r2-filing {
  0%, 32% { opacity: 0; }
  35%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}

.gst-filing-demo.gf-active .gf-row-2 .gf-progress-fill {
  animation: gf-r2-progress 12s infinite;
}

@keyframes gf-r2-progress {
  0%, 34% { width: 0%; }
  50% { width: 100%; }
  100% { width: 100%; }
}

.gst-filing-demo.gf-active .gf-row-2 .gf-status-done {
  animation: gf-r2-done 12s infinite;
}

@keyframes gf-r2-done {
  0%, 50% { opacity: 0; }
  53%, 90% { opacity: 1; }
  95%, 100% { opacity: 0; }
}

/* Row 3: GSTR-9 — appears at 55% as pending */
.gst-filing-demo.gf-active .gf-row-3 {
  animation: gf-row3-appear 12s infinite;
}

@keyframes gf-row3-appear {
  0%, 54% { opacity: 0; transform: translateX(-20px); }
  58%, 90% { opacity: 1; transform: translateX(0); }
  95%, 100% { opacity: 0; transform: translateX(0); }
}

.gst-filing-demo.gf-active .gf-row-3 .gf-status-pending {
  animation: gf-r3-pending 12s infinite;
}

@keyframes gf-r3-pending {
  0%, 57% { opacity: 0; }
  60%, 90% { opacity: 1; }
  95%, 100% { opacity: 0; }
}

/* Divider + Stats — appear at 62% */
.gst-filing-demo.gf-active .gf-divider {
  animation: gf-stats-in 12s infinite;
  animation-delay: 0s;
}

.gst-filing-demo.gf-active .gf-stats {
  animation: gf-stats-in 12s infinite;
  animation-delay: 0.15s;
}

@keyframes gf-stats-in {
  0%, 62% { opacity: 0; transform: translateY(8px); }
  67%, 90% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; }
}

/* Summary bar — appears at 72% */
.gst-filing-demo.gf-active .gf-summary {
  animation: gf-summary-in 12s infinite;
}

@keyframes gf-summary-in {
  0%, 72% { opacity: 0; transform: scale(0.9); }
  77%, 87% { opacity: 1; transform: scale(1); }
  92%, 100% { opacity: 0; transform: scale(0.95); }
}

/* ---------- About Page ---------- */
.w-about-origin-card {
  background: var(--q-body-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--q-border-color);
  position: relative;
  overflow: hidden;
}

.w-about-origin-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--q-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.w-about-origin-card h4 {
  margin-bottom: 0.75rem;
}

.w-about-origin-card p {
  margin-bottom: 1.5rem;
}

.w-about-origin-dots {
  display: flex;
  gap: 8px;
}

.w-about-origin-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.15);
  animation: w-dot-pulse 2s ease-in-out infinite;
}

.w-about-origin-dots span:nth-child(2) { animation-delay: 0.2s; }
.w-about-origin-dots span:nth-child(3) { animation-delay: 0.4s; }
.w-about-origin-dots span:nth-child(4) { animation-delay: 0.6s; }
.w-about-origin-dots span:nth-child(5) { animation-delay: 0.8s; }

@keyframes w-dot-pulse {
  0%, 100% { background: rgba(0, 188, 212, 0.15); transform: scale(1); }
  50% { background: rgba(0, 188, 212, 0.5); transform: scale(1.2); }
}

/* Tech cards */
.w-tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--q-card-bg);
  border-radius: 12px;
  border: 1px solid var(--q-border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.w-tech-card:hover {
  border-color: var(--q-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.w-tech-card i {
  font-size: 1.5rem;
  color: var(--q-primary);
}

.w-tech-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--q-text-heading);
}

/* ---------- Pricing Page Extras ---------- */
/* Included items */
.w-included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--q-card-bg);
  border-radius: 10px;
  border: 1px solid var(--q-border-color);
  transition: all 0.3s ease;
}

.w-included-item:hover {
  border-color: var(--q-primary);
  transform: translateY(-2px);
}

.w-included-item i {
  font-size: 1.25rem;
  color: var(--q-primary);
}

.w-included-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--q-text-heading);
}

/* FAQ */
.w-faq-item {
  background: var(--q-card-bg);
  border-radius: 12px;
  border: 1px solid var(--q-border-color);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.w-faq-item:hover {
  border-color: rgba(0, 188, 212, 0.3);
}

.w-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

.w-faq-question span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--q-text-heading);
}

.w-faq-question i {
  color: var(--q-text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.w-faq-item.open .w-faq-question i {
  transform: rotate(180deg);
}

.w-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.w-faq-item.open .w-faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

.w-faq-answer p {
  font-size: 0.9rem;
  color: var(--q-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- Contact Page ---------- */
.w-contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

.w-contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 188, 212, 0.1);
  color: #00ACC1;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.w-contact-method strong {
  display: block;
  font-size: 0.85rem;
  color: var(--q-text-heading);
}

.w-contact-method span {
  font-size: 0.78rem;
  color: var(--q-text-muted);
}

.w-contact-sidebar-card {
  background: var(--q-body-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--q-border-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.w-contact-sidebar-card:hover {
  border-color: rgba(0, 188, 212, 0.3);
  transform: translateY(-2px);
}

.w-contact-sidebar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 188, 212, 0.1);
  color: #00ACC1;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.w-contact-sidebar-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--q-text-heading);
  margin-bottom: 0.4rem;
}

.w-contact-sidebar-card p {
  font-size: 0.85rem;
  color: var(--q-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .w-hero {
    min-height: auto;
    padding: 7rem 0 4rem;
  }

  .w-hero-title {
    font-size: 2.5rem;
  }

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

  .w-hero-image {
    margin-top: 3rem;
  }

  .w-section-title {
    font-size: 1.85rem;
  }

  /* Mobile navbar — solid background when collapsed menu is open */
  .w-navbar .navbar-collapse.show,
  .w-navbar .navbar-collapse.collapsing {
    background: rgba(26, 29, 46, 0.97);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
  }

  .w-navbar.scrolled .navbar-collapse.show,
  .w-navbar.scrolled .navbar-collapse.collapsing {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .w-navbar.scrolled .navbar-collapse .nav-link {
    color: var(--q-text-body);
  }

  .w-step-connector {
    display: none;
  }

  .pd-window {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .w-hero-title {
    font-size: 2rem;
  }

  .w-hero-ctas .btn {
    width: 100%;
  }

  .w-section {
    padding: 3.5rem 0;
  }

  .w-stat-number {
    font-size: 2rem;
  }

  .w-pricing-card {
    padding: 2rem 1.5rem;
  }
}

/* ========== WHY CHOOSE / ADVANTAGES ========== */
.w-advantage-card {
  background: var(--q-card-bg);
  border-radius: var(--q-card-radius);
  padding: 2rem;
  box-shadow: var(--q-card-shadow);
  border: 1px solid var(--q-border-color);
  height: 100%;
  transition: all var(--q-transition-normal) var(--q-ease-smooth);
  position: relative;
}

.w-advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--q-card-shadow-hover);
  border-color: transparent;
}

.w-advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 188, 212, 0.1);
  color: #00BCD4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.w-advantage-card h5 {
  font-weight: 700;
  color: var(--q-text-heading);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.w-advantage-card p {
  color: var(--q-text-body);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ========== COMPARISON STRIP ========== */
.w-comparison-strip {
  background: var(--q-card-bg);
  border-radius: var(--q-card-radius);
  box-shadow: var(--q-card-shadow);
  border: 1px solid var(--q-border-color);
  overflow: hidden;
}

.w-comparison-header {
  background: linear-gradient(135deg, #0D3B66, #00BCD4);
  padding: 1.25rem 2rem;
}

.w-comparison-header h4 {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.w-comparison-grid {
  padding: 0;
}

.w-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid var(--q-border-color);
  align-items: center;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.w-comparison-row:last-child {
  border-bottom: none;
}

.w-comparison-row:not(.w-comparison-head):hover {
  background: rgba(0, 188, 212, 0.03);
}

.w-comparison-head {
  background: rgba(0, 0, 0, 0.02);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--q-text-muted);
  padding: 0.75rem 2rem;
}

.w-comparison-feature {
  font-weight: 600;
  color: var(--q-text-heading);
}

.w-comparison-us {
  color: var(--q-text-body);
}

.w-comparison-us i {
  margin-right: 0.4rem;
}

.w-comparison-them {
  color: var(--q-text-muted);
}

.w-comparison-them i {
  margin-right: 0.4rem;
}

@media (max-width: 768px) {
  .w-comparison-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 1rem 1.25rem;
  }

  .w-comparison-head {
    display: none;
  }

  .w-comparison-feature {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .w-comparison-us,
  .w-comparison-them {
    font-size: 0.85rem;
    padding-left: 0.25rem;
  }

  .w-comparison-us::before {
    content: "Quipu: ";
    font-weight: 600;
    color: var(--q-text-heading);
  }

  .w-comparison-them::before {
    content: "Others: ";
    font-weight: 600;
    color: var(--q-text-muted);
  }
}

/* ========== LEGAL PAGES (Privacy, Terms, Refund) ========== */
.w-legal-content {
  color: var(--q-text-body);
  line-height: 1.8;
  font-size: 0.95rem;
}

.w-legal-content h2 {
  color: var(--q-text-heading);
  font-weight: 700;
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--q-border-color);
}

.w-legal-content h2:first-child {
  margin-top: 0;
}

.w-legal-content h3 {
  color: var(--q-text-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.w-legal-content p {
  margin-bottom: 1rem;
}

.w-legal-content ul,
.w-legal-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.w-legal-content li {
  margin-bottom: 0.5rem;
}

.w-legal-content a {
  color: #00BCD4;
  text-decoration: none;
}

.w-legal-content a:hover {
  text-decoration: underline;
}

.w-legal-content strong {
  color: var(--q-text-heading);
}

.w-refund-table {
  margin: 1.5rem 0;
  overflow-x: auto;
}

.w-refund-table .table {
  font-size: 0.88rem;
  margin: 0;
}

.w-refund-table .table th {
  background: var(--q-bg-subtle, #f8f9fa);
  font-weight: 700;
  color: var(--q-text-heading);
  border-bottom: 2px solid var(--q-border-color);
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.w-refund-table .table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  border-color: var(--q-border-color);
}
