/* ===== DESIGN TOKENS ===== */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f7fa;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fafb;
  --border-card: #e2e8f0;
  --border-card-hover: #cbd5e1;

  --text-primary: #1a202c;
  --text-secondary: #5a6577;
  --text-muted: #94a3b8;

  --accent-blue: #2196F3;
  --accent-red: #D32F2F;
  --accent-yellow: #FFC107;
  --accent-gradient: linear-gradient(135deg, #2196F3, #1565C0);
  --accent-gradient-hover: linear-gradient(135deg, #42A5F5, #1E88E5);
  --accent-gradient-warm: linear-gradient(135deg, #D32F2F, #F44336);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-padding: 120px 0;
  --container-width: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);

  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #1565C0;
}

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

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-title-elegant {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== PIONEER UNDERLINE ===== */
.pioneer-word {
  position: relative;
  display: inline;
  font-weight: inherit;
  color: inherit;
}

.pioneer-word svg {
  position: absolute;
  bottom: -4px;
  left: -2px;
  width: calc(100% + 4px);
  height: 10px;
  overflow: visible;
}

.pioneer-word svg path {
  fill: none;
  stroke: var(--accent-blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.pioneer-word.animated svg path {
  animation: drawUnderline 0.6s ease forwards;
}

@keyframes drawUnderline {
  to { stroke-dashoffset: 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.25);
}

.btn-primary:hover {
  background: var(--accent-gradient-hover);
  box-shadow: 0 6px 32px rgba(33, 150, 243, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--text-primary);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--border-card-hover);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

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

/* Light nav on dark hero backgrounds */
.nav-dark .nav-logo {
  color: #fff;
}

.nav-dark .nav-links a {
  color: rgba(255,255,255,0.8);
}

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

.nav-dark .nav-toggle span {
  background: #fff;
}

.nav-dark .nav-dropdown-menu a {
  color: var(--text-secondary);
}

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

.nav-dark.scrolled .nav-logo {
  color: var(--text-primary);
}

.nav-dark.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav-dark.scrolled .nav-links a:hover {
  color: var(--text-primary);
}

.nav-dark.scrolled .nav-toggle span {
  background: var(--text-primary);
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

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

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-arrow {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  min-width: 160px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

/* ===== PIONEER HERO ===== */
.pioneer-hero {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2d45 50%, #162032 100%);
  color: #fff;
}

.pioneer-hero-logo {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
  width: 350px;
  height: auto;
  opacity: 0.25;
  pointer-events: none;
}

.pioneer-hero-content img {
  height: clamp(23px, 3.4vw, 40px);
  width: auto;
  margin-bottom: 20px;
}

.pioneer-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.pioneer-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: #fff;
}

.pioneer-hero h1 .pioneer-word svg path {
  stroke: #42A5F5;
  stroke-width: 3;
}

.pioneer-hero .pioneer-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.pioneer-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pioneer-hero p.cta-line {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 24px;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.feature-card-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.feature-card-hero .feature-card-img {
  margin-bottom: 0;
}

.feature-card-hero-text h3 {
  font-size: 1.4rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 800px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-blue);
}

.lightbox-video {
  background: #111;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PORTAL SPLIT (features + inline gallery) ===== */
.portal-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.portal-split-gallery {
  display: flex;
  flex-direction: column;
}

.inline-gallery {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.inline-gallery-image {
  position: relative;
  background: #fff;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inline-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.inline-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.inline-gallery-controls .gallery-arrow {
  position: static;
  transform: none;
  flex-shrink: 0;
}

.inline-gallery-controls .gallery-dots {
  position: static;
  transform: none;
}

.inline-gallery-caption {
  text-align: center;
  margin-top: 8px;
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-lightbox {
  max-width: 1000px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.gallery-image-wrap {
  position: relative;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.gallery-arrow {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.gallery-arrow:hover {
  background: var(--border-card);
  color: var(--text-primary);
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition);
}

.gallery-dot.active {
  background: var(--accent-blue);
}

.gallery-info {
  padding: 40px 32px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.gallery-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-card);
}

/* ===== SOLUTION GRID (overlay cards) ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 480px;
  gap: 20px;
}

.solution-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: default;
  background: #1a202c;
}

.solution-card-bg {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.solution-card:hover .solution-card-bg {
  transform: scale(1.05);
}

.solution-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 100%);
  transition: background var(--transition);
}

.solution-card:hover .solution-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.95) 100%);
}

.solution-card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.solution-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.solution-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.solution-card ul {
  margin-top: 8px;
  padding-left: 18px;
  list-style: disc;
}

.solution-card ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2px;
}

/* ===== HIGHLIGHT SECTION (large feature callout) ===== */
.highlight {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 80px 60px;
  border: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(33, 150, 243, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.highlight h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-primary);
}

.highlight p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.highlight-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.highlight-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  color: var(--text-secondary);
}

.highlight-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.highlight-feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== COMPACT FEATURE LIST ===== */
.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.compact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.compact-card:hover {
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-md);
}

.compact-card-icon {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.compact-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.compact-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FEATURES SPLIT (compact grid + phone image) ===== */
.features-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: stretch;
}

.features-split .compact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.features-split-image {
  position: relative;
}

.features-split-image img {
  width: 100%;
  max-width: 375px;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
}

/* ===== MARQUEE REPORTS ===== */
.marquee-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 4px 0;
}

.marquee-track.scroll-left {
  animation: marqueeLeft 40s linear infinite;
}

.marquee-track.scroll-right {
  animation: marqueeRight 40s linear infinite;
}

/* marquee never pauses */

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-item {
  flex-shrink: 0;
  padding: 12px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--transition);
}

.marquee-item:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

/* ===== PLATFORM BADGES ===== */
.platforms {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.platform-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ===== ACCORDION SPLIT LAYOUT ===== */
.accordion-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.accordion-split-text {
  padding-top: 24px;
}

/* ===== ACCORDION ===== */
.accordion {
  max-width: 700px;
}

.accordion-item {
  border-bottom: 1px solid var(--border-card);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition);
}

.accordion-trigger:hover {
  color: var(--accent-blue);
}

.accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.accordion-body-inner ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}

.accordion-body-inner ul li {
  margin-bottom: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-status {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
}

.form-status.success {
  color: #16a34a;
}

.form-status.error {
  color: #dc2626;
}

/* Contact split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-split-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-split-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
}

.contact-split-form .contact-form {
  margin: 0;
  max-width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-card);
  padding: 20px 0;
  background: var(--bg-secondary);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-card);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-row img {
  height: 28px;
  width: auto;
}

.footer-security {
  display: flex;
  gap: 20px;
}

.footer-security span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== SCREENSHOT SHOWCASE ===== */
.screenshot-showcase {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
  margin-top: 48px;
}

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PARALLAX ===== */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

/* ===== CUSTOM REPORTING CALLOUT ===== */
.custom-report-callout {
  margin-top: 48px;
  padding: 20px 32px;
  background: linear-gradient(135deg, #1565C0, #2196F3);
  border-radius: var(--border-radius-lg);
  text-align: center;
  color: #fff;
  display: inline-block;
}

.custom-report-callout h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.custom-report-callout p {
  font-size: 1rem;
  opacity: 0.85;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.wave-divider-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ===== DIVIDER ===== */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-card);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight {
    padding: 60px 40px;
  }

}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-card);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .pioneer-hero {
    padding: 100px 0 80px;
  }

  .pioneer-hero h1 {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 480px;
  }

  .compact-grid {
    grid-template-columns: 1fr;
  }

  .highlight {
    padding: 40px 24px;
  }

  .footer-inner {
    flex-direction: column;
  }

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

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .accordion-split {
    grid-template-columns: 1fr;
  }

  .feature-card-hero-content {
    grid-template-columns: 1fr;
  }

  .portal-split {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-info {
    padding: 0 24px 24px;
  }

  .gallery-image-wrap {
    min-height: 250px;
  }

  .features-split {
    grid-template-columns: 1fr;
  }

  .features-split-image img {
    max-width: 260px;
  }
}
