/* ==========================================================================
   CHANOVA — AI AUTOMATION AGENCY DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Syne:wght@600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Core Brand Colors */
  --bg-base: #0B0B0C;
  --bg-surface: #121215;
  --bg-surface-elevated: #18181D;
  --bg-surface-active: #22222A;
  --bg-contrast: #F4F4F2;
  
  /* Borders */
  --border-subtle: #24242C;
  --border-medium: #32323D;
  --border-bright: #444452;
  
  /* Brand Accent */
  --accent-orange: #FF5A1F;
  --accent-orange-hover: #FF6B00;
  --accent-orange-subtle: rgba(255, 90, 31, 0.12);
  --accent-orange-glow: rgba(255, 90, 31, 0.25);
  
  /* Typography Colors */
  --text-primary: #F4F4F2;
  --text-secondary: #9E9EA8;
  --text-muted: #6B6B76;
  --text-inverse: #0B0B0C;
  
  /* Feedback */
  --success: #10B981;
  --warning: #F59E0B;
  --info: #3B82F6;
  
  /* Fonts */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Layout & Spacing */
  --max-width: 1240px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Subtle Dark Surface Noise / Texture Simulation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Selection & Focus */
::selection {
  background: var(--accent-orange);
  color: #FFFFFF;
}

:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 3px;
}

/* Typography Standards */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.75rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Section Wrapper */
.section {
  padding: 6.5rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 680px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin-bottom: 0.85rem;
}

.section-kicker::before {
  content: '//';
  opacity: 0.6;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 14px rgba(255, 90, 31, 0.28);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 90, 31, 0.4);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-secondary:hover {
  background-color: var(--bg-surface-elevated);
  border-color: var(--border-bright);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-primary);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--accent-orange);
  background-color: var(--accent-orange-subtle);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(11, 11, 12, 0.96);
  border-bottom-color: var(--border-medium);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.brand-logo .accent-dot {
  color: var(--accent-orange);
}

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

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION & SIGNATURE WORKFLOW VISUALIZER
   ========================================================================== */

.hero-section {
  padding-top: calc(var(--header-height) + 4.5rem);
  padding-bottom: 5.5rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-headline {
  margin-bottom: 1.35rem;
}

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

.hero-subheadline {
  font-size: 1.18rem;
  margin-bottom: 2.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-metric-item {
  display: flex;
  flex-direction: column;
}

.trust-metric-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.trust-metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

/* --- Signature Visual Moment: Workflow Automation Engine --- */
.hero-visualizer {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.visualizer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.visualizer-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.visualizer-controls {
  display: flex;
  gap: 0.5rem;
}

.flow-step-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.flow-step-btn:hover, .flow-step-btn.active {
  background: var(--accent-orange-subtle);
  border-color: var(--accent-orange);
  color: var(--text-primary);
}

.visualizer-canvas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.canvas-node {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: all var(--transition-normal);
  position: relative;
}

.canvas-node.active-step {
  border-color: var(--accent-orange);
  background: #1C1A1A;
  box-shadow: 0 4px 18px rgba(255, 90, 31, 0.12);
}

.node-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-base);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.canvas-node.active-step .node-icon-box {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
}

.node-details h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.node-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.node-status-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.canvas-node.active-step .node-status-badge {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: var(--accent-orange-subtle);
}

.node-connector-line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  position: relative;
}

.node-connector-line::before {
  content: '';
  width: 2px;
  height: 100%;
  background: var(--border-medium);
}

.node-connector-line.active::before {
  background: var(--accent-orange);
}

.node-connector-line .packet {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 6px var(--accent-orange);
  animation: pulsePacket 1.8s infinite linear;
}

@keyframes pulsePacket {
  0% { transform: translateY(-8px); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

.visualizer-log {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.log-text {
  color: var(--text-secondary);
}

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

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.service-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-surface-elevated);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-base);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  margin-bottom: 1.75rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-features-list li svg {
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-btn {
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--bg-base);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: left;
  line-height: 1.3;
}

.service-card-btn:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.service-card-btn .btn-arrow {
  color: var(--accent-orange);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform var(--transition-fast);
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.service-card-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.service-cta-link {
  display: none;
}

/* ==========================================================================
   PROOF OF WORK SECTION (REPEATABLE ARCHITECTURE)
   ========================================================================== */

.proof-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.proof-filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.proof-filter-btn:hover, .proof-filter-btn.active {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
}

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

.case-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.case-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-surface-elevated);
}

.case-media-box {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-subtle);
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.case-media-graphic {
  width: 100%;
  height: 100%;
  background: #141418;
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.case-media-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 11, 12, 0.85);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-orange);
}

.case-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-industry {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.case-title {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.ba-col h5 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.ba-col.before h5 {
  color: #EF4444;
}

.ba-col.after h5 {
  color: var(--success);
}

.ba-col p {
  font-size: 0.825rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.case-outcome-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.outcome-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   TESTIMONIALS SECTION (REPEATABLE & HONEST PLACEHOLDER STATE)
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card.placeholder-mode {
  border-style: dashed;
  border-color: var(--border-medium);
  background: rgba(18, 18, 21, 0.5);
}

.testimonial-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--warning);
  background: rgba(245, 158, 11, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.testimonial-quote {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.author-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface-active);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

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

/* ==========================================================================
   PROCESS SECTION (5 TRANSPARENT STEPS)
   ========================================================================== */

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.process-card:hover {
  border-color: var(--accent-orange);
  background: var(--bg-surface-elevated);
  transform: translateY(-3px);
}

.step-num-badge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-num-badge .step-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.process-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.process-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   PRICING / SCOPE-ONLY TIERS
   ========================================================================== */

.pricing-disclaimer {
  max-width: 720px;
  margin: 0 auto 3rem auto;
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
}

.pricing-disclaimer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-disclaimer strong {
  color: var(--accent-orange);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  border-color: var(--border-bright);
}

.pricing-card.featured {
  border-color: var(--accent-orange);
  background: #141316;
  box-shadow: 0 10px 30px rgba(255, 90, 31, 0.15);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
}

.tier-header {
  margin-bottom: 1.75rem;
}

.tier-name {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.tier-scope-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
}

.tier-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.tier-features {
  list-style: none;
  margin: 1.75rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tier-features li svg {
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.tier-features li strong {
  color: var(--text-primary);
}

.pricing-bottom-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item.active {
  border-color: var(--border-bright);
}

.faq-question-btn {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT / TEAM SECTION
   ========================================================================== */

.about-layout-simple {
  max-width: 1080px;
  margin: 0 auto;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-surface-elevated);
  transform: translateY(-2px);
}

.pillar-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--accent-orange);
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   CONTACT / LEAD CAPTURE FORM SECTION
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  margin-bottom: 2rem;
}

.contact-guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.guarantee-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.guarantee-item .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-orange-subtle);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.guarantee-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-label .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 2px var(--accent-orange-glow);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.form-privacy-note a {
  color: var(--text-secondary);
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.site-footer {
  background: #070708;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2.5rem 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

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

.social-links-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

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

/* ==========================================================================
   LIVE CHATBOT WIDGET (MAKE.COM QUALIFY-FIRST ARCHITECTURE)
   ========================================================================== */

.chanova-chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.45);
  transition: transform var(--transition-normal), background var(--transition-normal);
  position: relative;
}

.chat-trigger-btn:hover {
  transform: scale(1.06);
  background: var(--accent-orange-hover);
}

.chat-pulse-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: var(--success);
  border: 2px solid var(--bg-base);
  border-radius: 50%;
}

.chat-panel {
  width: 380px;
  height: 580px;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 6rem);
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 1rem;
  transform-origin: bottom right;
  animation: chatOpen 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-panel.open {
  display: flex;
}

.chat-header {
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.chat-header-title h4 {
  font-size: 0.9rem;
  line-height: 1.1;
}

.chat-header-title p {
  font-size: 0.72rem;
  color: var(--success);
  font-family: var(--font-mono);
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chat-btn-icon {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.chat-btn-icon:hover {
  background: var(--bg-surface-active);
  color: var(--text-primary);
}

/* Chat Safeguard Notice Bar */
.chat-safeguard-bar {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.35rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.chat-safeguard-bar span {
  color: var(--accent-orange);
}

/* Chat Messages */
.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--bg-surface);
}

.chat-msg {
  max-width: 85%;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.45;
  word-break: break-word;
}

.chat-msg.bot {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background: var(--accent-orange);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-msg.qualification-card {
  background: #18171B;
  border: 1px solid var(--accent-orange);
  width: 100%;
  max-width: 100%;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.chat-msg.qualification-card h5 {
  font-size: 0.92rem;
  color: var(--accent-orange);
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}

.chat-msg.qualification-card p.form-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.chat-inline-field {
  margin-bottom: 0.65rem;
}

.chat-inline-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .chat-inline-field-row {
    grid-template-columns: 1fr;
  }
}

.chat-inline-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.chat-inline-field input,
.chat-inline-field textarea {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.chat-inline-field textarea {
  resize: vertical;
  min-height: 52px;
}

.chat-inline-field input:focus,
.chat-inline-field textarea:focus {
  border-color: var(--accent-orange);
  outline: none;
}

.chat-inline-submit-btn {
  width: 100%;
  background: var(--accent-orange);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.35rem;
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.chat-inline-submit-btn:hover {
  background: var(--accent-orange-hover);
}

.quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.quick-prompt-btn {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-prompt-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.chat-input-area {
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: 0.85rem;
}

.chat-form {
  display: flex;
  gap: 0.5rem;
}

.chat-input {
  flex-grow: 1;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: var(--font-body);
}

.chat-input:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.chat-send-btn {
  background: var(--accent-orange);
  border: none;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.chat-send-btn:hover {
  background: var(--accent-orange-hover);
}

/* ==========================================================================
   DISCOVERY CALL BOOKING MODAL
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.open {
  display: flex;
}

.modal-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
  position: relative;
  animation: modalEnter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.35rem;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: 1.75rem;
}

.calendar-slot-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.slot-btn {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slot-btn:hover, .slot-btn.selected {
  background: var(--accent-orange-subtle);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  font-weight: 600;
}

/* ==========================================================================
   COOKIE CONSENT BANNER (GDPR / CCPA)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 440px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
}

.cookie-banner.visible {
  display: block !important;
  animation: cookieSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.cookie-banner a {
  color: var(--accent-orange);
  text-decoration: underline;
}

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

/* ==========================================================================
   LEGAL PAGES & 404 STYLES
   ========================================================================== */

.legal-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 0 6rem 0;
}

.legal-content-wrap h1 {
  margin-bottom: 0.5rem;
}

.legal-last-updated {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-orange);
  margin-bottom: 3rem;
  display: block;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-section p, .legal-section li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-callout {
  background: var(--bg-surface);
  border-left: 3px solid var(--accent-orange);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.legal-callout p {
  margin-bottom: 0;
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* 404 Error View */
.error-view-wrap {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE VIEWPORT OPTIMIZATIONS
   ========================================================================== */

/* Universal Responsive Guardrails */
img, svg, video, canvas {
  max-width: 100%;
}

button, input, textarea, select {
  font-family: inherit;
}

/* Tablet & Smaller Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  
  .services-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
  }
}

/* Tablets & Large Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  /* Header & Navigation */
  .site-header {
    height: var(--header-height);
  }

  .brand-logo {
    font-size: 1.3rem;
  }

  .brand-logo svg {
    width: 28px;
    height: 28px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-base);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
  
  .nav-menu.open {
    transform: translateX(0);
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .header-cta-btn {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3.5rem;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 7.5vw, 2.65rem);
    line-height: 1.2;
    margin-bottom: 1.15rem;
    word-break: break-word;
  }

  .hero-subheadline {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    justify-content: center;
    white-space: normal;
  }

  .hero-trust-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
    padding-top: 1.35rem;
  }

  .trust-metric-item {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
  }

  .trust-metric-val {
    font-size: 1.2rem;
  }

  .trust-metric-label {
    font-size: 0.75rem;
  }

  /* Hero Workflow Visualizer (Signature Component Mobile Containment) */
  .hero-visualizer {
    padding: 1.15rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }

  .visualizer-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
  }

  .visualizer-title {
    font-size: 0.75rem;
    width: 100%;
  }

  .visualizer-controls {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
  }

  .flow-step-btn {
    padding: 0.35rem 0.2rem;
    font-size: 0.68rem;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
  }

  .canvas-node {
    padding: 0.85rem 0.9rem;
    gap: 0.75rem;
    grid-template-columns: auto 1fr;
  }

  .node-icon-box {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .node-icon-box svg {
    width: 16px;
    height: 16px;
  }

  .node-details h4 {
    font-size: 0.88rem;
    margin-bottom: 0.15rem;
  }

  .node-details p {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .node-status-badge {
    grid-column: 1 / -1;
    align-self: flex-start;
    margin-top: 0.15rem;
    font-size: 0.65rem;
    padding: 0.18rem 0.55rem;
  }

  .visualizer-log {
    padding: 0.65rem 0.8rem;
    font-size: 0.68rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .log-text {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Services Section */
  .service-card {
    padding: 1.65rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .service-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 1.25rem;
  }

  .service-icon-wrap svg {
    width: 22px;
    height: 22px;
  }

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

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.35rem;
  }

  .service-features-list {
    margin-bottom: 1.5rem;
    gap: 0.65rem;
  }

  .service-features-list li {
    font-size: 0.85rem;
  }

  .service-card-btn {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }

  /* Process Section */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-card {
    padding: 1.35rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .step-num-badge {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .process-card h4 {
    font-size: 1rem;
  }

  .process-card p {
    font-size: 0.85rem;
  }

  /* Pricing Section */
  .pricing-grid {
    gap: 2.25rem;
  }

  .pricing-card {
    padding: 2.25rem 1.25rem 1.75rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .pricing-disclaimer {
    padding: 0.85rem 1rem;
    margin-bottom: 2rem;
  }

  .pricing-disclaimer p {
    font-size: 0.82rem;
  }

  .tier-name {
    font-size: 1.45rem;
  }

  .tier-features {
    margin: 1.25rem 0 1.75rem 0;
    gap: 0.75rem;
  }

  .tier-features li {
    font-size: 0.85rem;
  }

  /* FAQ Section */
  .faq-question-btn {
    padding: 1.05rem 1.15rem;
    font-size: 0.98rem;
    gap: 0.75rem;
  }

  .faq-question-btn span:first-child {
    word-break: break-word;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 1.15rem;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 1.15rem;
    max-height: 500px;
  }

  .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* About Section */
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-card {
    padding: 1.35rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .pillar-card h4 {
    font-size: 1.05rem;
  }

  .pillar-card p {
    font-size: 0.88rem;
  }

  /* Contact Section */
  .contact-layout {
    gap: 2rem;
  }

  .contact-info-panel h3 {
    font-size: 1.45rem;
  }

  .contact-info-panel p {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .contact-form-card {
    padding: 1.75rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .form-group {
    margin-bottom: 1.1rem;
  }

  .form-control {
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }

  textarea.form-control {
    min-height: 95px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .site-footer {
    padding: 3.5rem 0 2rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  /* Discovery Modal (Mobile Responsive) */
  .modal-backdrop {
    padding: 0.5rem;
    align-items: center;
  }

  .modal-window {
    width: 100%;
    max-width: 100%;
    max-height: 94vh;
    border-radius: var(--radius-md);
  }

  .modal-header {
    padding: 1rem 1.15rem;
  }

  .modal-header h3 {
    font-size: 1.15rem;
  }

  .modal-body {
    padding: 1.15rem 1rem 1.5rem 1rem;
  }

  .modal-body p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}

/* Mobile Devices & Phones (<= 480px, including 375px and 390px) */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .brand-logo {
    font-size: 1.22rem;
    gap: 0.55rem;
  }

  .brand-logo svg {
    width: 26px;
    height: 26px;
  }

  .hero-headline {
    font-size: 1.95rem;
  }

  .hero-subheadline {
    font-size: 0.95rem;
  }

  .hero-ctas .btn {
    padding: 0.82rem 1rem;
    font-size: 0.92rem;
  }

  /* Workflow Visualizer in 375px/390px */
  .hero-visualizer {
    padding: 0.95rem 0.75rem;
  }

  .visualizer-title {
    font-size: 0.7rem;
  }

  .flow-step-btn {
    padding: 0.35rem 0.15rem;
    font-size: 0.65rem;
  }

  .canvas-node {
    padding: 0.75rem 0.75rem;
    gap: 0.6rem;
  }

  .node-icon-box {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .node-details h4 {
    font-size: 0.84rem;
  }

  .node-details p {
    font-size: 0.72rem;
  }

  .visualizer-log {
    padding: 0.55rem 0.65rem;
    font-size: 0.65rem;
  }

  /* Chatbot Widget Full-Screen Native App Mode on Mobile */
  .chanova-chat-widget {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .chat-trigger-btn {
    width: 52px;
    height: 52px;
  }

  .chat-trigger-btn svg {
    width: 24px;
    height: 24px;
  }

  .chat-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
    z-index: 10001;
    border: none;
    box-shadow: none;
  }

  .chat-header {
    padding: 0.75rem 1rem;
  }

  .chat-messages {
    padding: 0.85rem 0.75rem;
  }

  .chat-msg {
    max-width: 90%;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }

  .chat-msg.qualification-card {
    padding: 0.85rem 0.75rem;
  }

  .chat-inline-field {
    margin-bottom: 0.55rem;
  }

  .chat-inline-field label {
    font-size: 0.68rem;
  }

  .chat-inline-field input,
  .chat-inline-field textarea {
    padding: 0.45rem 0.6rem;
    font-size: 0.82rem;
  }

  .chat-inline-field-row {
    grid-template-columns: 1fr !important;
    gap: 0.45rem;
  }

  .chat-inline-submit-btn {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .chat-input-area {
    padding: 0.65rem 0.75rem;
  }

  .chat-input {
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
  }

  .chat-send-btn {
    width: 36px;
    height: 36px;
  }

  /* Cookie Consent Banner on Mobile */
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 1.15rem 1rem;
    max-width: none;
    border-radius: var(--radius-sm);
  }

  .cookie-banner p {
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .cookie-actions .btn {
    width: 100%;
    padding: 0.6rem 0.5rem;
    font-size: 0.82rem;
    justify-content: center;
  }
}

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