/* ============================================================
   OIS Colab – style.css
   Fonts:
     Headings     → Plus Jakarta Sans
     Body/Para    → Outfit
     "NO CODE"    → Fjalla One
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --blue-primary:   #1D4ED8;
  --blue-accent:    #2563EB;
  --blue-light:     #EFF6FF;
  --blue-med:       #BFDBFE;
  --text-dark:      #0F172A;
  --text-body:      #334155;
  --text-muted:     #64748B;
  --text-lighter:   #94A3B8;
  --bg-page:        #FFFFFF;
  --bg-light:       #F8FAFC;
  --border-light:   #E2E8F0;
  --radius-card:    16px;
  --radius-sm:      8px;
  --shadow-card:    0 2px 16px rgba(0,0,0,0.06);
  --shadow-hover:   0 8px 32px rgba(0,0,0,0.12);
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
}


/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero-section {
  padding: 30px 0 0 0;
  background: var(--bg-page);
}

.hero-heading {
    padding-top: 48px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--text-dark);
}

/* "No Code" text in Fjalla One + blue */
.nocode-text {
  font-family: 'Fjalla One', sans-serif;
  color: var(--blue-accent);
  font-weight: 500;
  font-size: 4.5rem;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 420px;
  line-height: 1.7;
}

.read-more-link {
  color: var(--blue-accent);
  text-decoration: none;
  font-weight: 500;
}
.read-more-link:hover { text-decoration: underline; }

.btn-get-started {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--blue-primary);
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(29,78,216,0.3);
}
.btn-get-started:hover {
  background: var(--blue-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,78,216,0.4);
}

.btn-watch-reveal {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  background: transparent;
  color: var(--text-dark) !important;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-watch-reveal:hover { border-color: var(--blue-accent); background: var(--blue-light); }

.watch-icon { font-size: 1.1rem; color: var(--blue-accent); }

/* Hero UI Card */
.hero-ui-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.hero-ui-label {
  text-align: center;
  margin-bottom: 4px;
}
.label-code { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--text-dark); }
.label-arrow { font-family: 'Outfit', sans-serif; font-size: 1.2rem; color: var(--text-muted); }
.label-interface { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--blue-accent); }
.label-sub { font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--text-muted); margin: 2px 0 0; }

/* Code Panel */
.code-panel {
  background: #1E293B;
  border-radius: var(--radius-sm);
  padding: 14px;
  position: relative;
  min-height: 200px;
}

.panel-dots { display: flex; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-red    { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green  { background: #10B981; }

.code-lines { display: flex; flex-direction: column; gap: 7px; }
.code-line {
  height: 8px;
  background: #334155;
  border-radius: 4px;
}
.code-blue { background: #3B82F6; opacity: 0.7; }

.arrow-connector {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.arrow-circle {
  width: 36px; height: 36px;
  background: var(--blue-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(29,78,216,0.35);
}

/* Form Builder Panel */
.form-builder-panel {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 200px;
}

.fb-header {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.fb-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}
.fb-header-actions { display: flex; gap: 4px; }
.fb-dot-sm { width: 8px; height: 8px; border-radius: 50%; background: var(--border-light); }

.fb-body {
  display: flex;
  height: 170px;
}

.fb-sidebar {
  width: 70px;
  background: #fff;
  border-right: 1px solid var(--border-light);
  display: flex; flex-direction: column; gap: 2px; padding: 6px;
}
.fb-sidebar-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
}
.fb-sidebar-item:hover, .active-item {
  background: var(--blue-light);
  color: var(--blue-accent);
}

.fb-preview {
  flex: 1;
  padding: 8px 10px;
  overflow: hidden;
}
.fb-preview-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.fb-field-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.fb-field-input {
  height: 16px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  margin-bottom: 6px;
}
.fb-field-textarea {
  height: 28px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  margin-bottom: 6px;
}
.fb-submit-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  background: var(--blue-primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  width: fit-content;
}

/* ══════════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════════ */
.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-subtext {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 820px;
  margin: 8px auto 0;
}

/* ══════════════════════════════════════════════
   ORCHESTRATING VERTICALS
══════════════════════════════════════════════ */
.verticals-section {
  padding: 32px 0;
  background: var(--bg-light);
}

.vertical-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
}
.vertical-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.vertical-img-wrap {
  height: 180px;
  overflow: hidden;
}
.vertical-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vertical-card:hover .vertical-img { transform: scale(1.04); }

.vertical-card-body {
  padding: 20px;
}
.vertical-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.vertical-card-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.vertical-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vtag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--bg-light);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3px 12px;
}

/* ══════════════════════════════════════════════
   CORE CAPABILITIES
══════════════════════════════════════════════ */
.capabilities-section {
  padding: 32px 0;
  background: var(--bg-page);
}

.capability-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
}
.capability-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* Capability preview area */
.cap-preview {
  padding: 20px;
  min-height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.cap-preview-forms { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); }
.cap-preview-logic { background: linear-gradient(135deg, #F0FDF4 0%, #D1FAE5 100%); }
.cap-preview-doc   { background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%); }

.cap-preview-inner {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Forms preview internals */
.cap-mock-header {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.cap-mock-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 4px;
  cursor: pointer;
}
.active-tab {
  background: var(--blue-primary);
  color: #fff;
}

.cap-field-row { margin-bottom: 8px; }
.cap-label-bar {
  height: 6px; background: var(--border-light); border-radius: 3px; margin-bottom: 4px;
}
.cap-input-bar {
  height: 18px; background: var(--bg-light); border: 1px solid var(--border-light); border-radius: 4px;
}
.cap-btn-bar {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  background: var(--blue-primary);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 4px;
  margin-top: 8px;
}

/* Logic preview internals */
.cap-logic-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.cap-logic-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--text-dark);
}
.cap-logic-actions { display: flex; gap: 6px; }
.logic-btn {
  font-family: 'Outfit', sans-serif; font-size: 0.68rem; color: var(--text-muted);
  background: var(--bg-light); border: 1px solid var(--border-light); border-radius: 4px; padding: 2px 8px; cursor: pointer;
}
.logic-btn-primary { background: var(--blue-primary); color: #fff !important; border-color: var(--blue-primary); }

.cap-logic-body {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.logic-node {
  font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 500;
  padding: 5px 16px; border-radius: 20px; text-align: center;
}
.logic-node-trigger   { background: var(--blue-primary); color: #fff; }
.logic-node-condition { background: #F0FDF4; color: #15803D; border: 1px solid #86EFAC; font-size: 0.62rem; padding: 4px 10px; }
.logic-node-action    { background: #FFF7ED; color: #C2410C; border: 1px solid #FDBA74; }
.logic-connector { width: 1px; height: 16px; background: var(--border-light); }
.logic-row { display: flex; gap: 10px; }

/* Doc preview internals */
.cap-doc-header { margin-bottom: 10px; }
.cap-doc-tabs { display: flex; gap: 6px; }
.cap-doc-tab {
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; color: var(--text-muted);
  padding: 3px 10px; border-radius: 4px; cursor: pointer;
}
.active-tab-doc { background: #FFF7ED; color: #C2410C; }

.doc-file-item {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
  padding: 6px; background: var(--bg-light); border-radius: 6px;
}
.doc-icon { font-size: 1.1rem; }
.doc-pdf { color: #EF4444; }
.doc-word { color: #2563EB; }
.doc-file-name { font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 500; color: var(--text-dark); }
.doc-file-size { font-family: 'Outfit', sans-serif; font-size: 0.6rem; color: var(--text-muted); }
.doc-status { margin-left: auto; font-size: 0.78rem; color: #10B981; font-weight: 700; }
.doc-processing { color: #F59E0B; }
.doc-arrow-row { text-align: center; font-size: 1.2rem; color: var(--blue-accent); margin: 4px 0; }
.doc-form-mini {
  font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 600;
  text-align: center; background: var(--blue-primary); color: #fff;
  padding: 5px; border-radius: 6px;
}

/* Cap Card Body */
.cap-body { padding: 20px; }
.cap-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cap-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.cap-features {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px;
}
.cap-features li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex; align-items: center; gap: 8px;
}
.cap-features li i { font-size: 0.9rem; }

/* ══════════════════════════════════════════════
   ENTERPRISE SDK SECTION
══════════════════════════════════════════════ */
.sdk-section {
  padding: 32px 0;
  background: var(--bg-light);
}

.sdk-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue-accent);
  text-transform: uppercase;
  background: var(--blue-light);
  border: 1px solid var(--blue-med);
  border-radius: 20px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 16px;
}

.sdk-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.sdk-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

.sdk-features-list {
  display: flex; flex-direction: column; gap: 20px;
}

.sdk-feature-item {
  display: flex; align-items: flex-start; gap: 14px;
}

.sdk-feat-icon {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.sdk-icon-blue   { background: #EFF6FF; color: var(--blue-accent); }
.sdk-icon-purple { background: #F5F3FF; color: #7C3AED; }
.sdk-icon-yellow { background: #FFFBEB; color: #D97706; }
.sdk-icon-green  { background: #F0FDF4; color: #16A34A; }
.sdk-icon-orange { background: #FFF7ED; color: #EA580C; }

.sdk-feat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.sdk-feat-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SDK Diagram */
.sdk-diagram-wrap {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 20px 20px;
  position: relative;
  min-height: 340px;
}

.sdk-diagram {
  position: relative;
  min-height: 280px;
}

.sdk-diagram-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.sdk-center-node {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(37,99,235,0.12), 0 0 0 24px rgba(37,99,235,0.06);
}

.sdk-center-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.sdk-integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px;
}

.sdk-int-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}

.sdk-int-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-light);
  background: #fff;
}
.sdk-int-google { color: #EA4335; }
.sdk-int-slack  { color: #4A154B; }
.sdk-int-ms     { color: #00A4EF; }
.sdk-int-sf     { color: #00A1E0; }
.sdk-int-aws    { color: #FF9900; }
.sdk-int-api    { color: var(--blue-accent); }

.sdk-int-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sdk-connect-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sdk-svg-lines {
  width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
}

/* ══════════════════════════════════════════════
   SPECIALIZED INDUSTRY MODULES
══════════════════════════════════════════════ */
.industry-section {
  padding: 32px 0;
  background: var(--bg-page);
}

/* Industry Cards */
.industry-card {
  border-radius: var(--radius-card);
  padding: 22px;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Card Themes */
.industry-healthcare   { background: #FFF1F2; border: 1.5px solid #FECDD3; }
.industry-legal        { background: #F0FDF4; border: 1.5px solid #BBF7D0; }
.industry-education    { background: #EFF6FF; border: 1.5px solid #BFDBFE; }
.industry-manufacturing{ background: #F0FDFA; border: 1.5px solid #99F6E4; }

.industry-card-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}

.industry-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 20px;
  padding: 3px 10px;
}
.tag-healthcare   { background: #FFE4E6; color: #BE123C; }
.tag-legal        { background: #DCFCE7; color: #15803D; }
.tag-education    { background: #DBEAFE; color: #1D4ED8; }
.tag-manufacturing{ background: #CCFBF1; color: #0F766E; }

.industry-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.industry-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Slide Container */
.industry-scroll-container {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.industry-slide {
  display: none;
  animation: slideIn 0.4s ease forwards;
}
.industry-slide.active-slide { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.industry-slide-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.industry-slide-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.industry-slide-list li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--text-body);
  display: flex; align-items: center; gap: 7px;
}
.industry-slide-list li i {
  font-size: 0.85rem;
  color: var(--blue-accent);
  flex-shrink: 0;
}
.industry-healthcare .industry-slide-list li i  { color: #BE123C; }
.industry-legal      .industry-slide-list li i  { color: #15803D; }
.industry-education  .industry-slide-list li i  { color: #1D4ED8; }
.industry-manufacturing .industry-slide-list li i { color: #0F766E; }

/* Slider Dots */
.industry-slider-dots {
  display: flex; gap: 6px; margin-top: 16px;
}
.idot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.idot-active {
  background: var(--blue-primary);
  transform: scale(1.3);
}
.industry-healthcare   .idot-active { background: #BE123C; }
.industry-legal        .idot-active { background: #15803D; }
.industry-education    .idot-active { background: #1D4ED8; }
.industry-manufacturing .idot-active { background: #0F766E; }

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.cta-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cta-subtext {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
}

.btn-cta-primary {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--blue-primary);
  color: #fff !important;
  border-radius: 8px;
  padding: 14px 32px;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(29,78,216,0.3);
}
.btn-cta-primary:hover {
  background: var(--blue-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29,78,216,0.4);
}

.btn-cta-secondary {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  color: var(--text-dark) !important;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 13px 32px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-secondary:hover {
  border-color: var(--blue-accent);
  background: var(--blue-light);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: #0B1427;
  border-top: 1px solid var(--border-light);
  padding: 32px 0 0;
}

.footer-brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var( --bg-page);
}

.footer-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var( --text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 4px;
}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var( --bg-page);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-links li a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--blue-accent); }

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--text-muted);
  text-align: center;
}
.footer-bottom p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--text-lighter);
  margin: 0;
}

/* ══════════════════════════════════════════════
   RESPONSIVE TWEAKS
══════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-section { padding: 60px 0 40px; }
  .hero-heading { font-size: 2.4rem; }
  .hero-ui-card { margin-top: 20px; }
  .arrow-connector { display: none; }
  .sdk-section { padding: 70px 0; }
  .sdk-diagram-wrap { margin-top: 30px; }
}

@media (max-width: 767.98px) {
  .hero-heading { font-size: 2rem; }
  .hero-desc { max-width: 100%; }
  .verticals-section,
  .capabilities-section,
  .industry-section,
  .cta-section { padding: 60px 0; }
  .sdk-section { padding: 60px 0; }
  .sdk-integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .col-xl-3.col-md-6 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 575.98px) {
  .hero-section { padding: 48px 0 32px; }
  .hero-heading { font-size: 1.8rem; }
  .btn-get-started, .btn-watch-reveal { width: 100%; justify-content: center; }
  .d-flex.gap-3.flex-wrap.mt-4 { flex-direction: column; }
  .cta-section { padding: 50px 0; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; }
}



 /* ===== NAVBAR ===== */
    .navbar {
      background: #fff;
      backdrop-filter: blur(16px);
      border-bottom: 1px solid #eeeeee;
      padding: .7rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: background var(--tr), border-color var(--tr);
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text) !important;
      display: flex;
      align-items: center;
      gap: .35rem;
    }

    .nav-link {
      font-size: .83rem;
      font-weight: 500;
      color: var(--text2) !important;
      padding: .38rem .82rem !important;
      border-radius: var(--radius-sm);
      transition: all var(--tr);
    }

    .nav-link:hover {
      color: var(--text) !important;
      background: var(--bg3);
    }

    .nav-link.active {
      color: var(--accent) !important;
      background: var(--abg);
    }

    /* Theme toggle button */
    .theme-btn {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: var(--bg2);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      transition: all var(--tr);
    }

    .theme-btn:hover {
      background: var(--bg3);
      border-color: var(--accent);
    }

    /* Get Started button */
    .btn-fill {
      background: var(--blue-primary);
      border: none;
      color: #fff;
      padding: .42rem 1.05rem;
      border-radius: var(--radius-sm);
      font-size: .82rem;
      font-weight: 600;
      font-family: var(--font);
      cursor: pointer;
      transition: all var(--tr);
    }

    .btn-fill:hover {
      background: var(--blue-accent);
      transform: translateY(-1px);
    }

    /* Mobile hamburger */
    .navbar-toggler {
      border-color: var(--border);
      background: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(139,148,158,1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Chevron on dropdown triggers */
    .nav-link.drops .bi-chevron-down {
      font-size: .65rem;
      margin-left: .25rem;
      transition: transform .2s ease;
      display: inline-block;
    }

    .nav-item:hover .nav-link.drops .bi-chevron-down {
      transform: rotate(180deg);
    }

    /* ===== MEGA MENU ===== */
    .navbar-nav > .nav-item {
      position: static;
    }

    .mega-menu {
      position: absolute;
      top: calc(100% + 1px);
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      width: 860px;
      background: #ffffff;
      border: 1px solid #e4e8ee;
      border-top: 3px solid #0d5cb9;
      border-radius: 0 0 12px 12px;
      box-shadow: 0 12px 40px rgba(0,0,0,.13);
      padding: 24px 28px 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .22s ease, transform .22s ease, visibility .22s;
      z-index: 99999;
    }

    .nav-item:hover .mega-menu,
    .nav-item:focus-within .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    /* Mega menu header */
    .mega-head {
      font-size: .95rem;
      font-weight: 700;
      color: #16181b;
      padding: 0 0 12px;
      margin-bottom: 18px;
      border-bottom: 1px solid #e4e8ee;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mega-head .view-all {
      font-size: .78rem;
      font-weight: 600;
      color: #0d5cb9;
      text-decoration: none;
    }

    .mega-head .view-all:hover {
      text-decoration: underline;
    }

    /* Products: 3-column grid */
    .mega-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px 12px;
    }

    /* Each product item */
    .mega-item a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 10px;
      border-radius: 8px;
      text-decoration: none;
      transition: background .18s ease;
    }

    .mega-item a:hover {
      background: #f4f7fb;
      text-decoration: none;
    }

    .mega-item.current a {
      background: #eef4ff;
    }

    /* Product icon */
    .mega-item .prod-icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #eef2f7;
      border: 1.5px solid #d4dde8;
      border-radius: 10px;
      clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
      overflow: hidden;
    }

    .mega-item .prod-icon img {
      width: 24px;
      height: 22px;
      object-fit: contain;
    }

    .mega-item .prod-icon i {
      font-size: 1.15rem;
      color: #0d5cb9;
    }

    /* Product name */
    .mega-item h4 {
      font-size: .84rem;
      font-weight: 700;
      margin: 0 0 3px;
      line-height: 1.2;
      color: #16181b;
      letter-spacing: .3px;
    }

    .mega-item h4 .name-blue { color: #0d5cb9; font-weight: 700; }
    .mega-item h4 .name-green { color: #7ab029; font-weight: 700; }

    /* Product description */
    .mega-item p {
      font-size: .72rem;
      color: #6b7280;
      margin: 0;
      line-height: 1.35;
    }

    /* ===== SOLUTIONS MEGA MENU ===== */
    .mega-cols {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mega-col-s {
      padding: 4px 6px;
    }

    .mega-col-s h3 {
      font-size: .75rem;
      font-weight: 700;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 10px;
      padding-bottom: 9px;
      border-bottom: 1px solid #e4e8ee;
    }

    .mega-col-s ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px 8px;
    }

    .mega-col-s li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 10px;
      border-radius: 8px;
      font-size: .83rem;
      color: #16181b;
      cursor: pointer;
      transition: background .18s;
    }

    .mega-col-s li:hover { background: #f4f7fb; }

    .mega-col-s li i {
      width: 30px;
      height: 30px;
      border-radius: 7px;
      background: #eef2f7;
      border: 1px solid #d4dde8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      color: #0d5cb9;
      flex-shrink: 0;
    }

    /* ===== MOBILE ===== */
    @media (max-width: 991.98px) {
      .mega-menu {
        position: static;
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: 1px solid #e4e8ee;
        border-top: 3px solid #0d5cb9;
        border-radius: 8px;
        padding: 14px;
        margin: 6px 0 10px;
        display: none;
      }

      .nav-item.mega-open .mega-menu { display: block; }

      .mega-row { grid-template-columns: 1fr 1fr; gap: 4px; }
      .mega-cols { flex-direction: column; gap: 10px; }
      .mega-col-s ul { grid-template-columns: 1fr; }

      .nav-link.drops {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
    }

    @media (max-width: 540px) {
      .mega-row { grid-template-columns: 1fr; }
      .mega-item .prod-icon { width: 40px; height: 40px; }
    }

.footer-socials {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-social-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.6);
      font-size: .9rem;
      text-decoration: none;
      transition: all .2s ease;
      cursor: pointer;
    }

    .footer-social-btn:hover {
      background: rgba(255,255,255,.15);
      color: #fff;
      border-color: rgba(255,255,255,.3);
      transform: translateY(-2px);
    }
