/* ==========================================================================
   HelpEcom Design System & Stylesheet
   Theme: High-Trust E-Commerce Growth Agency & Technical Partner
   Typography: Outfit (Headings) + Inter (Body/UI)
   ========================================================================== */

:root {
  /* Core Backgrounds */
  --bg-main: #060911;
  --bg-surface: #0b1120;
  --bg-surface-elevated: #131c31;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-hover: rgba(24, 35, 62, 0.95);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-highlight: rgba(14, 165, 233, 0.4);
  --border-emerald: rgba(16, 185, 129, 0.4);
  --border-gold: rgba(245, 158, 11, 0.4);

  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Trust Accents */
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-emerald: #10b981;
  --accent-gold: #f59e0b;
  --accent-purple: #a855f7;
  --accent-orange: #f97316;
  --accent-rose: #f43f5e;
  --accent-indigo: #6366f1;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #a855f7 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow-cyan: 0 0 35px rgba(6, 182, 212, 0.2);
  --shadow-glow-emerald: 0 0 35px rgba(16, 185, 129, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Background Glow */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #0284c7 0%, transparent 70%);
  top: -150px;
  left: 10%;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 800px;
  right: -100px;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  bottom: 900px;
  left: -100px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, .brand-logo, .hero-title, .section-title {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Top Trust Bar */
.top-trust-bar {
  background: #091322;
  border-bottom: 1px solid rgba(14, 165, 233, 0.25);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.trust-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-pill-tag {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border: 1px solid var(--border-emerald);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.trust-bar-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
}

.trust-bar-link:hover {
  text-decoration: underline;
}

/* Badges */
.section-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.badge-partner {
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-pill);
  color: var(--accent-emerald);
  margin-left: 0.5rem;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
  background: linear-gradient(135deg, #0891b2, #1d4ed8);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 9, 17, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0 4rem;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.verified-partner-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.85rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.hero-description strong {
  color: var(--text-primary);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Trust Metrics Ribbon */
.trust-metrics-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-ribbon-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ribbon-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.ribbon-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.1;
}

.ribbon-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Hero Proof Card */
.proof-card {
  padding: 1.75rem;
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-glow-emerald);
}

.proof-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}

.proof-badge-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-emerald);
}

.pulse-emerald {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.proof-client-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.case-highlight-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.case-brand-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.case-revenue-metric {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
}

.milestones-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
}

.milestone-item .check-box {
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.25);
  color: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.milestone-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.milestone-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.1rem;
}

.proof-card-footer {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
}

.signed-off-by {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--accent-emerald);
  font-weight: 500;
}

/* Partners Logo Bar */
.partners-logo-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(11, 17, 32, 0.6);
}

.partners-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.partner-badge-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: transform var(--transition-fast);
}

.partner-badge-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
}

.partner-badge-card .badge-icon {
  font-size: 1.4rem;
  margin-bottom: 0.15rem;
}

.partner-badge-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
}

.partner-badge-card .badge-status {
  font-size: 0.68rem;
  color: var(--accent-cyan);
  font-weight: 500;
}

/* Section Styles */
.section-container {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services Bento Grid */
.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-bento-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-bento-card.featured-service {
  grid-column: span 2;
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow-cyan);
}

.service-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.service-icon-box.cyan { background: rgba(6, 182, 212, 0.15); border: 1px solid rgba(6, 182, 212, 0.3); }
.service-icon-box.purple { background: rgba(168, 85, 247, 0.15); border: 1px solid rgba(168, 85, 247, 0.3); }
.service-icon-box.emerald { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); }
.service-icon-box.orange { background: rgba(249, 115, 22, 0.15); border: 1px solid rgba(249, 115, 22, 0.3); }
.service-icon-box.rose { background: rgba(244, 63, 94, 0.15); border: 1px solid rgba(244, 63, 94, 0.3); }
.service-icon-box.indigo { background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.3); }

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.service-guarantee-badge {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-emerald);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--accent-emerald);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.service-deliverables {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-deliverables li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.45;
}

.service-deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.service-deliverables li strong {
  color: var(--text-primary);
}

/* Guarantees Section */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.guarantee-card {
  padding: 1.75rem;
  border-color: rgba(245, 158, 11, 0.25);
  display: flex;
  flex-direction: column;
}

.guarantee-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.guarantee-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.guarantee-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Audit Tool Section */
.audit-tool-wrapper {
  padding: 3rem;
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow-cyan);
  max-width: 900px;
  margin: 0 auto;
}

.audit-tool-header {
  margin-bottom: 2rem;
}

.audit-calculator-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  background: rgba(11, 16, 28, 0.95);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-cyan);
}

.audit-status-banner {
  min-height: 20px;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  text-align: center;
}

.audit-status-banner.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  color: var(--accent-emerald);
  padding: 0.9rem;
  border-radius: var(--radius-md);
  font-weight: 500;
}

.audit-status-banner.error {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid var(--accent-rose);
  color: var(--accent-rose);
  padding: 0.9rem;
  border-radius: var(--radius-md);
}

.audit-trust-guarantees {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
}

/* Case Studies Section */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-study-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.case-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.case-tag.migration { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); border: 1px solid rgba(6, 182, 212, 0.3); }
.case-tag.marketing { background: rgba(168, 85, 247, 0.15); color: var(--accent-purple); border: 1px solid rgba(168, 85, 247, 0.3); }
.case-tag.speed { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); border: 1px solid rgba(16, 185, 129, 0.3); }

.case-roi {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.case-client-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.case-summary {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.case-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.4rem;
  text-align: center;
  margin-bottom: 1.1rem;
}

.metric-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.metric-lbl {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.case-quote {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 0.85rem;
  padding-left: 0.65rem;
  border-left: 2px solid var(--accent-cyan);
}

.case-author {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Process Section */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.step-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-bottom: 0.85rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.step-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  padding: 1.25rem;
}

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

.comparison-table th, .comparison-table td {
  padding: 1.1rem 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.comparison-table th {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-secondary);
}

.col-feature {
  width: 32%;
}

.highlight-col {
  background: rgba(6, 182, 212, 0.08);
  border-left: 1px solid rgba(6, 182, 212, 0.25);
  border-right: 1px solid rgba(6, 182, 212, 0.25);
}

.col-helpecom.highlight-col {
  border-top: 2px solid var(--accent-cyan);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.col-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.col-brand {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.check-icon {
  color: var(--accent-emerald);
  font-weight: bold;
  margin-right: 0.3rem;
}

.partial-icon {
  margin-right: 0.3rem;
}

.cross-icon {
  color: var(--accent-rose);
  font-weight: bold;
  margin-right: 0.3rem;
}

/* FAQ Accordion */
.faq-accordion-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-chevron {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent-cyan);
  transition: transform var(--transition-fast);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.35rem 1.35rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-answer.open {
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0 3.5rem;
}

.cta-card {
  padding: 4rem 2rem;
  text-align: center;
  border-color: rgba(6, 182, 212, 0.4);
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.15) 0%, rgba(11, 17, 32, 0.95) 80%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow-cyan);
}

.cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.cta-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-action-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--accent-emerald);
  font-weight: 500;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  background: rgba(6, 9, 17, 0.98);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.brand-col .footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0.85rem 0 1.25rem;
  max-width: 320px;
  line-height: 1.55;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-bento-card.featured-service {
    grid-column: span 2;
  }
  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-bento-grid {
    grid-template-columns: 1fr;
  }
  .service-bento-card.featured-service {
    grid-column: span 1;
  }
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .audit-tool-wrapper {
    padding: 1.75rem 1.25rem;
  }
  .audit-trust-guarantees {
    flex-direction: column;
    gap: 0.4rem;
  }
  .trust-metrics-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(6, 9, 17, 0.98);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: 1rem;
  }
  .mobile-toggle {
    display: flex;
  }
}
