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

:root {
  /* Premium Light Mode Color Palette */
  --bg-base: #F4F7F6;       /* Soft canvas background */
  --bg-surface: #FFFFFF;    /* Pure white card backgrounds */
  --bg-surface-hover: #EAEFEF;
  --bg-darker: #E5EBEA;
  
  --primary: #004D40;       /* Deep Forest Green */
  --primary-rgb: 0, 77, 64;
  --primary-hover: #00332A;
  --accent: #10B981;        /* Bright Emerald Green */
  --accent-rgb: 16, 185, 129;
  --accent-hover: #059669;
  
  --text-primary: #0D1F1D;  /* High-contrast text layout */
  --text-secondary: #4A5A58;
  --text-muted: #7E908D;
  
  --border-color: #1E293B;  /* Thin dark borders as requested */
  --border-soft: #D1D8D6;
  --border-glow: rgba(16, 185, 129, 0.15);
  
  /* Font Families */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing & Utilities */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(13, 31, 29, 0.05);
  --shadow-md: 0 10px 24px -4px rgba(13, 31, 29, 0.08);
  --shadow-lg: 0 20px 48px -8px rgba(13, 31, 29, 0.12);
}

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

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--border-soft);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Global Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* Navigation Bar Frame */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
  transition: var(--transition);
}

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

/* Checkmark Zaptick Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo-check {
  color: var(--accent);
  font-weight: 900;
}

.logo-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  display: inline-block;
}

/* Center Links Track */
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-item-dropdown {
  position: relative;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
}

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

/* Right Navigation Elements */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.country-badge {
  background: rgba(0, 77, 64, 0.06);
  border: 1px solid var(--border-soft);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.wa-badge-btn {
  width: 32px;
  height: 32px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.wa-badge-btn:hover {
  transform: scale(1.05);
}

.nav-signin-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

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

/* Pill CTA Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-full); /* Styled as a pill button */
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 77, 64, 0.15);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 18px rgba(0, 77, 64, 0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(0, 77, 64, 0.03);
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* INTERACTIVE DROPDOWN OVERLAYS */
.dropdown-overlay {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 120;
}

/* Show Dropdown Active State */
.nav-item-dropdown:hover .dropdown-overlay,
.dropdown-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* 1. Platform Dropdown Grid (Two Column Layout) */
.platform-overlay-inner {
  width: 680px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 24px;
  gap: 24px;
}

.platform-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.platform-item {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
}

.platform-item:hover {
  background: var(--bg-base);
  border-color: var(--border-soft);
}

.platform-item.active-item {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.04);
}

.platform-item-title {
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-badge {
  font-size: 0.65rem;
  background: var(--primary);
  color: white;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-item-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.platform-toolkit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toolkit-link {
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--bg-base);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  border: 1px solid var(--border-soft);
}

.toolkit-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.platform-bottom-link {
  margin-top: auto;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.platform-footer-banner {
  grid-column: span 2;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.platform-footer-banner a {
  font-weight: 700;
  color: var(--primary);
}

/* 2. Solutions Dropdown Overlay (Grid Playbook Layout) */
.solutions-overlay-inner {
  width: 640px;
  padding: 24px;
}

.solutions-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.solutions-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.solutions-item {
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.solutions-item:hover {
  background: var(--bg-base);
  color: var(--primary);
}

.solutions-item svg {
  color: var(--accent);
}

.solutions-banner {
  margin-top: 20px;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* 3. Resources Dropdown Overlay (Sleek vertical list) */
.resources-overlay-inner {
  width: 320px;
  padding: 18px;
}

.resources-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resources-item {
  padding: 8px;
  border-radius: var(--radius-sm);
}

.resources-item:hover {
  background: var(--bg-base);
}

.resources-item-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.resources-item-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.resources-banner {
  margin-top: 12px;
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 77, 64, 0.06);
  border: 1px solid rgba(0, 77, 64, 0.15);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 24px;
  color: var(--text-primary);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.hero-actions .btn-primary {
  padding: 14px 28px;
  font-size: 0.95rem;
}

.hero-actions .btn-secondary {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* Split-Screen Sandbox Layout */
.sandbox-section {
  padding: 40px 0 60px;
}

.sandbox-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.sandbox-header {
  margin-bottom: 36px;
  text-align: center;
}

.sandbox-header h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.sandbox-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

.sandbox-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.sandbox-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.sandbox-card {
  background: var(--bg-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  width: 100%;
  transition: var(--transition);
  position: relative;
  text-align: left;
}

.sandbox-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.sandbox-card.active-card {
  border-color: var(--primary);
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
  outline: 2px solid var(--primary);
}

.card-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.sandbox-visual-preview {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Chat bubble styling in trigger block */
.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 85%;
  line-height: 1.4;
}

.chat-bubble.incoming {
  background: rgba(37, 211, 102, 0.08);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border-left: 2px solid #25D366;
}

.chat-bubble.incoming .user-name {
  color: #25D366;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.75rem;
}

/* Classification output in step block */
.class-output {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.class-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 4px;
}

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

.class-val {
  color: var(--text-primary);
  font-weight: 600;
}

/* Catalog push inside action block */
.catalog-push {
  background: var(--bg-base);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.catalog-img-ph {
  height: 60px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(0, 77, 64, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: bold;
}

.catalog-info {
  padding: 8px;
}

.catalog-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

.catalog-price {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
}

.catalog-btn {
  background: rgba(0, 77, 64, 0.06);
  color: var(--primary);
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 6px 0;
  text-align: center;
  width: 100%;
  display: block;
  cursor: pointer;
  margin-top: 6px;
  border-radius: 4px;
}

/* Sandbox right terminal panel */
.sandbox-terminal-wrapper {
  background: #0D1F1D;     /* High contrast terminal window as requested */
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sandbox-terminal-header {
  background: #091514;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sandbox-terminal-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

.editor-window-controls {
  display: flex;
  gap: 6px;
}

.control-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-muted);
  opacity: 0.3;
}

.control-dot:nth-child(1) { background-color: #ef4444; opacity: 0.8; }
.control-dot:nth-child(2) { background-color: #eab308; opacity: 0.8; }
.control-dot:nth-child(3) { background-color: #22c55e; opacity: 0.8; }

.sandbox-terminal-content {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #E2EFEF;
  flex-grow: 1;
  min-height: 420px;
  overflow-y: auto;
}

/* Capabilities Grid Section */
.capabilities {
  padding: 80px 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.cap-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.cap-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.cap-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 77, 64, 0.05);
  border: 1px solid rgba(0, 77, 64, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.cap-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* Stat Tracker Section */
.scale-tracker {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Integrations Page Grid & Table */
.integrations-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.integrations-wrapper {
  padding: 40px 0 80px;
}

.node-board {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 50px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.node-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.node-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 2;
}

.node-item {
  background: var(--bg-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.node-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.node-center {
  background: rgba(0, 77, 64, 0.05);
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  z-index: 3;
}

.node-center span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.node-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

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

.int-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
}

.int-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.int-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.int-logo-wrapper {
  width: 48px;
  height: 48px;
  background: var(--bg-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.int-logo-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.int-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 77, 64, 0.06);
  border: 1px solid rgba(0, 77, 64, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.int-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.int-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.int-features-list {
  list-style: none;
}

.int-features-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.int-features-list li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
}

/* High-Density Mappings Table */
.integrations-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  margin-top: 40px;
  box-shadow: var(--shadow-md);
}

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

.integrations-table th, .integrations-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-soft);
}

.integrations-table th {
  background: rgba(0, 77, 64, 0.02);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.integrations-table td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.integrations-table tr:hover td {
  color: var(--text-primary);
  background: rgba(0, 77, 64, 0.01);
}

.integrations-table .parameter-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--primary);
  background: rgba(0, 77, 64, 0.05);
  border: 1px solid rgba(0, 77, 64, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Developers Page terminal grids */
.dev-hero {
  padding: 80px 0 30px;
  text-align: center;
}

.dev-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  margin-bottom: 80px;
  align-items: stretch;
}

.code-editor-wrapper {
  background: #0D1F1D;     /* Dark code panel for high-contrast IDE aesthetic */
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.editor-header {
  background: #091514;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.editor-tabs {
  display: flex;
  gap: 16px;
}

.editor-tab {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.editor-tab.active {
  color: var(--accent);
  font-weight: 700;
}

.editor-content {
  padding: 24px;
  flex-grow: 1;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.65;
  overflow-x: auto;
  color: #E2EFEF;
}

.code-line {
  display: flex;
}

.line-number {
  color: var(--text-muted);
  width: 32px;
  text-align: right;
  margin-right: 20px;
  user-select: none;
  font-size: 0.8rem;
}

.code-text {
  flex-grow: 1;
  white-space: pre;
}

/* Syntax Highlighting */
.code-keyword { color: #f43f5e; }
.code-string { color: var(--accent); }
.code-builtin { color: #38bdf8; }
.code-comment { color: var(--text-muted); font-style: italic; }
.code-type { color: #fbbf24; }
.code-property { color: #a78bfa; }

.dev-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.dev-benefit-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.dev-benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dev-benefit-card h3 span {
  color: var(--primary);
  font-family: var(--font-mono);
}

.dev-benefit-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Webhook Simulator Panel */
.webhook-simulator-section {
  padding: 40px 0 80px;
}

.webhook-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.webhook-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  text-align: left;
}

.webhook-controls {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.webhook-logs-terminal {
  background: #0D1F1D;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 280px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #E2EFEF;
}

.webhook-log-line {
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}

.webhook-log-line.delivered {
  border-color: var(--accent);
}

.webhook-log-line.read {
  border-color: #38bdf8;
}

.webhook-log-line.sent {
  border-color: var(--text-muted);
}

.log-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

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

.log-status {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.log-status.sent { color: var(--text-muted); }
.log-status.delivered { color: var(--accent); }
.log-status.read { color: #38bdf8; }

.log-payload {
  color: var(--text-secondary);
  white-space: pre-wrap;
  word-break: break-all;
}

/* Pricing Page Tiers */
.pricing-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  text-align: left;
}

.pricing-card.featured {
  border-color: var(--primary);
  outline: 2px solid var(--primary);
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--primary);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-cost {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 8px;
}

.pricing-features-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

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

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-card .btn-primary, .pricing-card .btn-secondary {
  width: 100%;
  padding: 12px 0;
}

.pricing-meta-info {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px;
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.pricing-meta-info h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pricing-meta-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer Onboarding Flow Grid */
.footer-onboarding {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  padding: 80px 0 60px;
  position: relative;
}

.onboarding-title {
  text-align: center;
  margin-bottom: 50px;
}

.onboarding-title h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.onboarding-title p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto 60px;
  gap: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--border-soft);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--bg-base);
  border: 2px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.timeline-step:hover .step-number {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 25px rgba(0, 77, 64, 0.15);
  transform: scale(1.05);
}

.timeline-step.active .step-number {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 77, 64, 0.05);
  box-shadow: 0 0 25px rgba(0, 77, 64, 0.1);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
}

/* Bottom Footer Links */
.footer-main {
  background: var(--bg-base);
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  text-align: left;
}

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

.footer-links-col h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(0, 77, 64, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}

/* Animations, Utilities & Mobile Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .sandbox-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sandbox-card {
    width: 100%;
  }
  .int-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dev-container {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 50px;
  }
  .timeline {
    flex-direction: column;
    gap: 40px;
  }
  .timeline::before {
    top: 5%;
    bottom: 5%;
    left: 35px;
    width: 2px;
    height: 90%;
  }
  .timeline-step {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 20px;
  }
  .step-number {
    margin: 0;
  }
  .step-desc {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-soft);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .navbar-inner .btn-primary {
    display: none;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .stats-grid {
    justify-content: center;
  }
  .node-container {
    flex-direction: column;
    gap: 40px;
  }
  .node-col {
    gap: 16px;
  }
  .node-center {
    width: 90px;
    height: 90px;
    font-size: 0.95rem;
  }
  .int-details-grid {
    grid-template-columns: 1fr;
  }
  .webhook-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Meta Verification Badge Positioning */
.meta-badge-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition);
}

.meta-badge:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.meta-badge svg {
  color: #1877F2; /* Meta Blue */
}

/* Hero Core Metrics Row */
.hero-metrics-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-metric-item {
  flex: 1;
  min-width: 250px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.hero-metric-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-metric-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.hero-metric-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-metric-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Sandbox Dashboard Preview Image */
.sandbox-dashboard-preview {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transition: var(--transition);
}

.sandbox-dashboard-preview:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* WhatsApp Status Pulse Badge styling */
.whatsapp-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.online-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.online-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-ring 1.2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* Solutions Mega Menu styling overrides */
.dropdown-overlay.w-\[600px\] {
  width: 600px !important;
  min-width: 600px !important;
  padding: 24px !important;
  border-radius: 12px !important;
  border: 1px solid var(--border-soft) !important;
  box-shadow: var(--shadow-lg) !important;
  background: var(--bg-surface) !important;
}
.grid.grid-cols-2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
}
.gap-4 {
  gap: 16px !important;
}
.flex.gap-4 {
  display: flex !important;
  gap: 16px !important;
}
.p-3 {
  padding: 12px !important;
}
.rounded-lg {
  border-radius: 8px !important;
}
.hover\:bg-slate-50:hover {
  background: var(--bg-base) !important;
}
.transition {
  transition: var(--transition) !important;
}
.w-12 {
  width: 48px !important;
}
.h-12 {
  height: 48px !important;
}
.bg-teal-50 {
  background: rgba(0, 77, 64, 0.05) !important;
}
.flex.items-center.justify-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.text-teal-700 {
  color: var(--primary) !important;
}
.shrink-0 {
  flex-shrink: 0 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.text-slate-900 {
  color: var(--text-primary) !important;
}
.text-xs {
  font-size: 0.85rem !important;
}
.text-\[11px\] {
  font-size: 0.72rem !important;
}
.text-slate-500 {
  color: var(--text-secondary) !important;
}
.font-normal {
  font-weight: 400 !important;
}
.mt-1 {
  margin-top: 4px !important;
}
.leading-normal {
  line-height: 1.4 !important;
}



