/* ==========================================================================
   BillMaster97 — Global Static Landing Page Stylesheet
   Theme: Luxury Obsidian Dark with Emerald & Electric Cyan Accents
   Author: Narayan Modak & Antigravity Design Lab
   ========================================================================== */

:root {
  --bg-main: #070b13;
  --bg-surface-1: #0e1526;
  --bg-surface-2: #162035;
  --bg-surface-3: #1f2c47;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(56, 189, 248, 0.4);
  --primary: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.35);
  --accent-cyan: #38bdf8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.25);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-main);
}

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

/* Typography & Utilities */
.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 11, 19, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 14px var(--primary-glow);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

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

.badge-pro {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-launch-app {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-launch-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 60px 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(16, 185, 129, 0.12) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px var(--primary-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--primary-glow);
}

.btn-secondary-hero {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--border-active);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-secondary-hero:hover {
  transform: translateY(-2px);
  background: rgba(51, 65, 85, 0.9);
}

.hero-guarantees {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Device Mockup */
.hero-showcase {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.device-mockup-laptop {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.mockup-header {
  background: #1e293b;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #334155;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.mockup-address {
  font-size: 11px;
  color: #94a3b8;
  margin-left: 12px;
  font-family: monospace;
}

.mockup-img {
  width: 100%;
  display: block;
}

.floating-mobile-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  background: #0f172a;
  border: 1px solid #38bdf8;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: block;
}

.card-badge {
  background: #38bdf8;
  color: #070b13;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  padding: 4px;
}

.mobile-mockup-img {
  width: 100%;
  display: block;
}

/* Metrics Strip */
.metrics-strip {
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px 0;
  margin: 50px 0 70px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.metric-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 9 Modules Grid */
.section-suite {
  padding: 60px 0;
}

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

.suite-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.suite-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.suite-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.suite-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}

.card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gallery / Feature Visuals */
.section-gallery {
  padding: 60px 0;
  background: rgba(14, 21, 38, 0.4);
}

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

.gallery-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-img-wrap {
  width: 100%;
  height: 220px;
  background: #0f172a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.03);
}

.gallery-info {
  padding: 18px;
}

.gallery-info h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.gallery-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Templates Section */
.section-templates {
  padding: 70px 0;
}

.template-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.template-tab {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.template-tab.active,
.template-tab:hover {
  background: var(--bg-surface-2);
  color: #fff;
  border-color: var(--accent-cyan);
}

.template-display {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.template-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.template-sample-img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.template-details h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.template-details p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.template-details ul {
  list-style: none;
}

.template-details li {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.template-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* 44 Languages & Global Section */
.section-global {
  padding: 70px 0;
  background: rgba(14, 21, 38, 0.5);
}

.tax-zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.tax-zone-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.zone-flag {
  font-size: 28px;
  margin-bottom: 6px;
}

.tax-zone-card h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.tax-zone-card p {
  font-size: 12px;
  color: var(--text-secondary);
}

.language-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.lang-tag {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Pricing Section & Regional Controls */
.section-pricing {
  padding: 80px 0;
}

.pricing-region-control {
  text-align: center;
  margin-bottom: 36px;
}

.country-picker-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.picker-label {
  font-size: 14px;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: 0.3px;
}

.picker-select-box {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.country-select {
  width: 100%;
  background: #1e293b;
  border: 2px solid var(--accent-cyan);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
  outline: none;
  transition: all 0.2s ease;
}

.country-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.tier-quick-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.filter-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.tier-filter-btn {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-subtle);
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tier-filter-btn:hover {
  color: #fff;
  border-color: var(--accent-cyan);
}

.tier-filter-btn.active {
  background: var(--primary);
  color: #070b13;
  border-color: var(--primary);
  font-weight: 800;
}

.selected-country-banner {
  display: inline-block;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 800;
  color: #38bdf8;
  margin-top: 4px;
}

.selected-country-banner .badge-tier {
  color: var(--primary);
}

/* Master Regional Pricing Table */
.master-pricing-box {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-top: 50px;
}

.master-pricing-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
}

.master-pricing-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.regional-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.regional-table th {
  background: rgba(15, 23, 42, 0.85);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 2px solid var(--border-subtle);
}

.regional-table td {
  padding: 12px 14px;
  font-size: 13.5px;
  color: #cbd5e1;
  border-bottom: 1px solid var(--border-subtle);
}

.regional-table tr:hover {
  background: rgba(30, 41, 59, 0.4);
}

.tier-badge-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
}

.tier-1-pill { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.tier-2-pill { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.tier-3-pill { background: rgba(16, 185, 129, 0.15); color: #10b981; }

/* Billing Cycle Toggle */
.billing-cycle-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px auto 40px auto;
}

.cycle-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.cycle-label.active {
  color: var(--accent-cyan);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(51, 65, 85, 0.8);
  transition: .3s;
  border: 1px solid var(--border-subtle);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 26px;
}

.slider.round:before {
  border-radius: 50%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
}

.pricing-card.featured {
  background: radial-gradient(circle at top right, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
  border: 2px solid var(--primary);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.popular-ribbon {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--primary);
  color: #070b13;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
}

.pricing-tier-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.pricing-tier-badge.highlighted {
  color: var(--primary);
}

.pricing-tier {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 38px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.pricing-period {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-subtext {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 2px;
  margin-bottom: 18px;
}

.pricing-subtext.highlighted {
  color: #34d399;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}

.pricing-features li {
  font-size: 13.5px;
  color: #e2e8f0;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.btn-pricing-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 14.5px;
  font-weight: 800;
  padding: 13px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px var(--primary-glow);
  transition: transform 0.15s ease;
}

.btn-pricing-primary:hover {
  transform: translateY(-2px);
}

.btn-pricing-outline {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-subtle);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.btn-pricing-outline:hover {
  background: rgba(51, 65, 85, 0.7);
  border-color: var(--accent-cyan);
}

/* Competitor Comparison Table */
.competitor-comparison-box {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-top: 50px;
}

.comparison-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  background: rgba(15, 23, 42, 0.8);
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 2px solid var(--border-subtle);
}

.comparison-table td {
  padding: 14px;
  font-size: 13.5px;
  color: #cbd5e1;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table tr.winner-row {
  background: rgba(16, 185, 129, 0.08);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
}

.comparison-table tr.winner-row td {
  color: #fff;
  border-bottom: none;
}

.text-danger { color: #f87171 !important; }
.text-success { color: #34d399 !important; }
.font-weight-bold { font-weight: 700 !important; }

.pricing-guarantee {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 30px;
}

/* FAQ Section */
.section-faq {
  padding: 60px 0;
  background: rgba(14, 21, 38, 0.3);
}

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

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 20px;
  color: var(--accent-cyan);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-bottom: 20px;
}

/* CTA Box */
.section-cta {
  padding: 70px 0;
}

.cta-box {
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.15), rgba(16, 185, 129, 0.1)), var(--bg-surface-1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-box h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #05080e;
  padding: 50px 0 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand {
  max-width: 360px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 50px;
}

.link-col h5 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.link-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.link-col a:hover {
  color: var(--accent-cyan);
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
  .hero-title {
    font-size: 34px;
  }
  .floating-mobile-card {
    display: none;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .template-view {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: #0f172a;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .main-nav.active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
}


/* ==========================================================================
   GLOBAL TRUST, PAYMENT STRIP, ROI CALCULATOR & SOCIAL PROOF STYLES
   ========================================================================== */

/* Trust & Security Strip */
.trust-security-strip {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 15, 30, 0.95) 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}

.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.payment-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-cert-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-icon {
  font-size: 22px;
}

.cert-text strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.cert-text span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

/* Get Paid 3x Faster Section */
.section-faster-pay {
  padding: 70px 0;
  background: rgba(14, 21, 38, 0.4);
}

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

.faster-pay-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faster-pay-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
}

.faster-pay-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.faster-pay-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.faster-pay-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.aging-demo-bar {
  display: flex;
  height: 28px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 28px;
  margin-top: auto;
}

.aging-segment.current { background: #10b981; }
.aging-segment.mid { background: #f59e0b; }
.aging-segment.danger { background: #ef4444; }

.chat-preview-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px;
  border-left: 3px solid #25d366;
  margin-top: auto;
}

.chat-bubble {
  font-size: 12px;
  color: #e2e8f0;
  line-height: 1.4;
}

.chat-link {
  color: #38bdf8;
  text-decoration: underline;
}

.copies-pill-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.copy-pill {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
}

.copy-pill.recipient { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.copy-pill.transport { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }
.copy-pill.supplier { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }

/* Interactive ROI Calculator Section */
.section-calculator {
  padding: 80px 0;
}

.calculator-box {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.95)), var(--bg-surface-1);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

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

.calc-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-input-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.input-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.input-label-row label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.range-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.calc-slider {
  width: 100%;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.calc-assumptions {
  color: var(--text-muted);
  font-size: 11.5px;
  line-height: 1.4;
}

.calc-results-card {
  background: var(--bg-surface-2);
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.calc-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.calc-metric-row .metric-name {
  font-size: 13.5px;
  color: var(--text-secondary);
}

.calc-metric-row .metric-val {
  font-size: 18px;
  font-weight: 800;
}

.calc-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 18px 0;
}

.calc-savings-total {
  text-align: center;
}

.savings-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.savings-amount {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: #34d399;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.savings-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Verified Reviews & Social Proof */
.section-reviews {
  padding: 70px 0;
  background: rgba(10, 15, 26, 0.6);
}

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

.review-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  font-size: 15px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.reviewer-info strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.reviewer-info span {
  display: block;
  font-size: 12px;
  color: var(--accent-cyan);
}

/* Responsive updates */
@media (max-width: 900px) {
  .calc-body-grid {
    grid-template-columns: 1fr;
  }
  .faster-pay-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
