/* ==================== CSS RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand colours */
  --accent: #2DD4BF;
  --accent-light: rgba(45, 212, 191, 0.1);
  --accent-dark: #14B8A6;
  --accent-gradient: linear-gradient(135deg, #0D9488 0%, #2DD4BF 100%);
  --accent-shadow: rgba(45, 212, 191, 0.25);

  --coral: #F97B6C;
  --coral-light: rgba(249, 123, 108, 0.1);

  /* Product colours */
  --assured-green: #9ED039;
  --assured-green-light: rgba(158, 208, 57, 0.1);
  --accurate-blue: #3B82F6;
  --accurate-blue-light: rgba(59, 130, 246, 0.1);
  --automated-orange: #F97316;
  --automated-orange-light: rgba(249, 115, 22, 0.1);
  --assist-purple: #8B5CF6;
  --assist-purple-light: rgba(139, 92, 246, 0.1);
  --analyse-teal: #06B6D4;
  --analyse-teal-light: rgba(6, 182, 212, 0.1);

  /* Light mode base */
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F4F4F5;
  --text-primary: #18181B;
  --text-secondary: #3F3F46;
  --text-muted: #71717A;
  --border: #E4E4E7;
  --border-light: #F4F4F5;

  /* Dark surfaces */
  --dark-bg: #0F2830;
  --dark-bg-gradient: linear-gradient(135deg, #0F2830 0%, #134E4A 100%);

  /* Product theming defaults (overridden by data-product) */
  --product-color: var(--accent-dark);
  --product-color-light: var(--accent-light);
}

/* ==================== PRODUCT COLOUR THEMES ==================== */
body[data-product="assured"] {
  --product-color: var(--assured-green);
  --product-color-light: var(--assured-green-light);
}

body[data-product="accurate"] {
  --product-color: var(--accurate-blue);
  --product-color-light: var(--accurate-blue-light);
}

body[data-product="automated"] {
  --product-color: var(--automated-orange);
  --product-color-light: var(--automated-orange-light);
}

body[data-product="assist"] {
  --product-color: var(--assist-purple);
  --product-color-light: var(--assist-purple-light);
}

body[data-product="analyse"] {
  --product-color: var(--analyse-teal);
  --product-color-light: var(--analyse-teal-light);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

/* Subtle noise texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==================== NAVIGATION ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

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

.logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

/* Solutions dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.nav-dropdown-menu a img {
  height: 20px;
  width: auto;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 4px 0;
}

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

/* ==================== BUTTONS ==================== */
.btn-text {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--coral);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(249, 123, 108, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 123, 108, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-bg);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px var(--accent-shadow);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-shadow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .btn-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: 24px;
  color: #fff !important;
  background: var(--coral);
  padding: 14px 24px;
  border-radius: 8px;
  border-bottom: none;
}

.mobile-menu .mobile-sub {
  padding-left: 20px;
  font-size: 16px;
  color: var(--text-muted);
}

/* ==================== HERO SECTION ==================== */
.hero {
  padding: 80px 48px 60px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 123, 108, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-cta-supporting {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.trust-signals {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* Hero Visual - Screenshot frame */
.hero-visual {
  position: relative;
}

.screenshot-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 20px 50px rgba(15, 40, 48, 0.12),
    0 8px 24px rgba(15, 40, 48, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 24px 60px rgba(15, 40, 48, 0.15),
    0 12px 32px rgba(15, 40, 48, 0.1);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.floating-badge {
  position: absolute;
  bottom: 80px;
  left: -40px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

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

.floating-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--assured-green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--assured-green);
}

.floating-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-badge-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

body[data-product] .section-label {
  color: var(--product-color);
}

.section-header h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== LOGO BAR ==================== */
.logo-bar {
  padding: 60px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.logo-bar-container {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.logo-bar p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
}

.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.erp-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.erp-logo:hover {
  opacity: 0.8;
}

.erp-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-bar-supporting {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--text-muted) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 0 !important;
  margin-top: 24px;
  line-height: 1.6;
}

.logo-bar .logo-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 24px;
  transition: gap 0.2s ease;
}

.logo-bar .logo-bar-link:hover {
  gap: 10px;
}

.logo-bar .logo-bar-link svg {
  width: 16px;
  height: 16px;
}

/* ==================== PROBLEM / CHALLENGES SECTION ==================== */
.challenges {
  padding: 80px 48px;
  background: var(--bg-primary);
}

.challenges-container {
  max-width: 1320px;
  margin: 0 auto;
}

.challenges-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.challenges-text p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.challenges-text p:last-child {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==================== MODULE OVERVIEW / SOLUTIONS SECTION ==================== */
.solutions {
  padding: 120px 48px;
  background: var(--bg-secondary);
}

.solutions-container {
  max-width: 1320px;
  margin: 0 auto;
}

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

.solutions-grid-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.solutions-grid-5 .solution-card {
  width: calc((100% - 48px) / 3);
}

.solution-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--card-shadow);
  border-color: var(--card-accent);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card.assured {
  --card-accent: var(--assured-green);
  --card-accent-light: var(--assured-green-light);
  --card-shadow: rgba(158, 208, 57, 0.15);
}

.solution-card.accurate {
  --card-accent: var(--accurate-blue);
  --card-accent-light: var(--accurate-blue-light);
  --card-shadow: rgba(59, 130, 246, 0.15);
}

.solution-card.automated {
  --card-accent: var(--automated-orange);
  --card-accent-light: var(--automated-orange-light);
  --card-shadow: rgba(249, 115, 22, 0.15);
}

.solution-card.assist {
  --card-accent: var(--assist-purple);
  --card-accent-light: var(--assist-purple-light);
  --card-shadow: rgba(139, 92, 246, 0.15);
}

.solution-card.analyse {
  --card-accent: var(--analyse-teal);
  --card-accent-light: var(--analyse-teal-light);
  --card-shadow: rgba(6, 182, 212, 0.15);
}

.solution-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}

.solution-card.assist .solution-logo {
  height: 46px;
}

.solution-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.solution-screenshot {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.solution-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--card-accent);
  transition: gap 0.2s ease;
  margin-top: auto;
}

.solution-link:hover {
  gap: 10px;
}

.solution-link svg {
  width: 16px;
  height: 16px;
}

/* ==================== DIFFERENTIATORS / WHY CHOOSE ==================== */
.why-choose {
  padding: 120px 48px;
  background: var(--bg-primary);
}

.why-choose-container {
  max-width: 1320px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.why-choose-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-choose-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-dark);
}

.why-choose-card .card-icon svg {
  width: 28px;
  height: 28px;
}

.why-choose-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.why-choose-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  padding: 80px 48px;
  background: var(--dark-bg-gradient);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}

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

.stat-value {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.stat-value span {
  color: var(--accent);
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ==================== PRACTITIONERS / CREDIBILITY ==================== */
.practitioners {
  padding: 120px 48px;
  background: var(--bg-secondary);
}

.practitioners-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.practitioners-content .section-label {
  text-align: left;
}

.practitioners-content h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.practitioners-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.practitioners-content .text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
  transition: gap 0.2s ease;
}

.practitioners-content .text-link:hover {
  gap: 10px;
}

.practitioners-content .text-link svg {
  width: 18px;
  height: 18px;
}

.practitioners-visual {
  position: relative;
}

.practitioners-visual .screenshot-frame {
  transform: none;
}

.practitioners-visual .screenshot-frame:hover {
  transform: none;
}

.practitioners-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.practitioner-stat {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  transition: all 0.3s ease;
}

.practitioner-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.practitioner-stat-value {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.practitioner-stat-value span {
  color: var(--accent);
}

.practitioner-stat-label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==================== FAQ ==================== */
.faq {
  padding: 120px 48px;
  background: var(--bg-primary);
}

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

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-question h3::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-question .faq-toggle {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .faq-toggle {
  transform: rotate(180deg);
}

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

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 32px 28px;
  padding-left: 72px;
}

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

/* ==================== SOLUTION PAGE HERO ==================== */
.solution-hero {
  padding: 80px 48px 60px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.solution-hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-hero-badge {
  margin-bottom: 24px;
}

.solution-hero-badge img {
  height: 44px;
  width: auto;
}

.solution-hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.solution-hero .hero-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.solution-hero .hero-cta {
  margin-bottom: 12px;
}

.solution-hero .hero-cta-supporting {
  margin-bottom: 0;
}

/* Product-specific hero and card accents */
body[data-product] .solution-hero {
  background: linear-gradient(180deg, var(--product-color-light) 0%, var(--bg-primary) 100%);
}

body[data-product] .feature-card {
  border-top: 2px solid var(--product-color-light);
}

body[data-product] .feature-card:hover {
  border-top-color: var(--product-color);
}

/* Product-specific hero accents (logo sizing) */
.assured-hero .solution-hero-badge img,
.accurate-hero .solution-hero-badge img,
.automated-hero .solution-hero-badge img,
.analyse-hero .solution-hero-badge img {
  height: 44px;
}

.assist-hero .solution-hero-badge img {
  height: 46px;
}

/* ==================== PROBLEM SPLIT (solution pages) ==================== */
.problem-split {
  padding: 80px 48px;
  background: var(--bg-primary);
}

.problem-split-container {
  max-width: 1320px;
  margin: 0 auto;
}

.problem-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.problem-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--product-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--product-color);
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.problem-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== FEATURE CARDS (solution pages) ==================== */
.feature-cards-section {
  padding: 120px 48px;
  background: var(--bg-secondary);
}

.feature-cards-container {
  max-width: 1320px;
  margin: 0 auto;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--product-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--product-color);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== SCREENSHOT CAROUSEL ==================== */
.screenshot-carousel-section {
  padding: 20px 48px 120px;
  background: var(--bg-secondary);
}

.screenshot-carousel-container {
  max-width: 1320px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide .screenshot-frame {
  max-width: 960px;
  margin: 0 auto;
}

.carousel-caption {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.5;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--product-color);
  transform: scale(1.2);
}

/* ==================== CROSS-MODULE SECTION ==================== */
.cross-module {
  padding: 120px 48px;
  background: var(--bg-primary);
}

.cross-module-container {
  max-width: 1320px;
  margin: 0 auto;
}

.cross-module-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cross-module-text p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.cross-module-text p:last-child {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==================== CTA SECTION ==================== */
.cta {
  padding: 100px 48px;
  background: var(--dark-bg-gradient);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta h2 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}

.cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #0A1F26;
  color: rgba(255,255,255,0.7);
  padding: 80px 48px 40px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.footer-contact p a {
  color: rgba(255,255,255,0.6);
}

.footer-contact p a:hover {
  color: #fff;
}

.footer-contact .btn-primary {
  display: inline-flex;
  color: #fff;
  background: var(--coral);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(249, 123, 108, 0.3);
}

.footer-contact .btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 123, 108, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  margin-left: 24px;
}

.footer-legal a:hover {
  color: #fff;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

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

  .hero-cta {
    justify-content: center;
  }

  .hero-cta-supporting {
    text-align: center;
  }

  .trust-signals {
    justify-content: center;
    flex-wrap: wrap;
  }

  .screenshot-frame {
    transform: none;
  }

  .screenshot-frame:hover {
    transform: none;
  }

  .floating-badge {
    left: 20px;
    bottom: 40px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .solutions-grid-5 {
    flex-direction: column;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .solutions-grid-5 .solution-card {
    width: 100%;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .practitioners-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solution-hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .solution-hero .hero-cta {
    justify-content: center;
  }

  .solution-hero .hero-cta-supporting {
    text-align: center;
  }

  .solution-hero-badge {
    display: flex;
    justify-content: center;
  }

  .problem-split-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 24px;
  }

  .nav-links, .nav-actions .btn-text {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 60px 24px 80px;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta a {
    width: 100%;
    justify-content: center;
  }

  .trust-signals {
    flex-direction: column;
    gap: 12px;
  }

  .logo-bar {
    padding: 40px 24px;
  }

  .logo-grid {
    gap: 32px;
  }

  .erp-logo {
    font-size: 18px;
  }

  .stats-bar {
    padding: 60px 24px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stat-value {
    font-size: 20px;
  }

  .challenges,
  .solutions,
  .why-choose,
  .practitioners,
  .problem-split,
  .feature-cards-section,
  .screenshot-carousel-section,
  .cross-module,
  .faq {
    padding: 80px 24px;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-carousel-section {
    padding: 40px 24px 80px;
  }

  .problem-card {
    padding: 28px;
  }

  .solution-hero {
    padding: 60px 24px 40px;
  }

  .solution-hero h1 {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .cta {
    padding: 80px 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 60px 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 12px;
  }
}
