/* Ingenixa theme stylesheet — glass design system ported from the Next.js build, plus
   layout classes for the hand-coded header/footer and the custom Elementor widgets. */

:root {
  --bg-dark: #040711;
  --bg-card: rgba(13, 20, 36, 0.55);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-glow: rgba(0, 242, 254, 0.35);
  --cyan-glow: #00f2fe;
  --blue-glow: #4facfe;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: #f1f5f9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.ig-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ig-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Glassmorphism design system (ported from globals.css) ---------- */
.glass-panel {
  background: rgba(13, 22, 41, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 1.5rem;
}

.glass-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(0, 242, 254, 0.05) 100%);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 14px 40px rgba(0, 242, 254, 0.15), 0 0 20px rgba(0, 242, 254, 0.1);
  transform: translateY(-4px);
}

.glass-nav {
  background: rgba(4, 7, 17, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-badge {
  background: rgba(0, 242, 254, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.glass-btn-primary {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #040711;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
}

.glass-btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
  transform: translateY(-2px);
  color: #040711;
}

.glass-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.glass-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 242, 254, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.bg-glow-cyan, .bg-glow-blue {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-cyan {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
}
.bg-glow-blue {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
}

.bg-cyber-grid {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #040711; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 242, 254, 0.4); }

@keyframes ig-fade-in { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-in { animation: ig-fade-in 0.2s ease-out; }

.ig-gradient-text {
  background: linear-gradient(90deg, #22d3ee, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ig-eyebrow { margin-bottom: 1rem; }
.ig-section-heading { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 1rem; }
.ig-lede { color: #cbd5e1; font-size: 1.0625rem; line-height: 1.7; margin: 0; }

/* ---------- Site header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}
.site-header.is-scrolled {
  padding: 0.75rem 0;
}
.site-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 2.5rem; width: auto; object-fit: contain; }

.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
}
.site-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: #22d3ee; background: rgba(255,255,255,0.05); }

/* wp_nav_menu()'s items_wrap strips the <ul>, so bare <li>s default to
   display:list-item (a visible bullet) regardless of the "ul { list-style }"
   rule above, which needs a <ul> ancestor to match. */
.site-nav li, .mobile-drawer li { list-style: none; display: contents; }

.header-actions { display: none; align-items: center; gap: 1rem; }

.mobile-menu-toggle {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #cbd5e1;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-drawer {
  display: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.75rem;
  padding: 0.75rem 1rem 1.5rem;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #e2e8f0;
  border-radius: 0.5rem;
}
.mobile-drawer a:hover { color: #22d3ee; background: rgba(255,255,255,0.05); }

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .header-actions { display: flex; }
  .mobile-menu-toggle { display: none; }
  .mobile-drawer { display: none !important; }
}

/* ---------- Site footer ---------- */
.site-footer {
  position: relative;
  background: #020409;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col-brand { grid-column: span 1; }
.footer-col-brand p { font-size: 0.875rem; line-height: 1.6; max-width: 24rem; }
.footer-social { display: flex; gap: 0.75rem; padding-top: 0.5rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: #cbd5e1;
}
.footer-social a:hover { color: #22d3ee; }
.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  margin: 0 0 1rem;
}
.footer-links li { margin-bottom: 0.625rem; font-size: 0.875rem; }
.footer-links a:hover { color: #22d3ee; }
.footer-contact li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.footer-bottom {
  padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem; color: #94a3b8;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: #e2e8f0; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: row; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-col-brand { grid-column: span 2; }
}

/* ---------- Contact modal (site-wide, opened by any [data-ig-open-contact] trigger) ---------- */
.ig-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ig-modal-overlay.is-open { display: flex; }
.ig-modal-box {
  position: relative;
  width: 100%; max-width: 32rem;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  overflow: hidden;
}
.ig-modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  padding: 0.5rem;
  border-radius: 999px;
  border: none;
  color: #94a3b8;
  cursor: pointer;
}
.ig-modal-close:hover { color: #fff; }
.ig-modal-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.ig-modal-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(6,182,212,0.2);
  border: 1px solid rgba(34,211,238,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #22d3ee;
  flex-shrink: 0;
}
.ig-modal-header h3 { margin: 0; font-size: 1.25rem; font-weight: 700; color: #fff; }
.ig-modal-header p { margin: 0.125rem 0 0; font-size: 0.75rem; color: #94a3b8; }
.ig-modal-success { text-align: center; padding: 3rem 0; }
.ig-modal-success-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(6,182,212,0.2);
  border: 1px solid rgba(34,211,238,0.4);
  color: #22d3ee;
  display: flex; align-items: center; justify-content: center;
}
.ig-modal-success h3 { color: #fff; font-size: 1.5rem; margin: 0 0 0.5rem; }
.ig-modal-success p { color: #cbd5e1; font-size: 0.875rem; }

/* ---------- Form fields (contact modal + Contact page + CF7) ---------- */
.ig-field { margin-bottom: 1rem; }
.ig-field label {
  display: block;
  font-size: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #cbd5e1;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.ig-field input,
.ig-field select,
.ig-field textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
}
.ig-field input:focus,
.ig-field select:focus,
.ig-field textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #22d3ee;
}
.ig-submit-btn { width: 100%; }

.wpcf7-form label {
  display: block;
  font-size: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #cbd5e1;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.wpcf7-form label > br { display: none; }
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #040711;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
  transition: all 0.3s ease;
}
.wpcf7-form input[type="submit"]:hover {
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
  transform: translateY(-2px);
}
.wpcf7-form input[type="submit"]:disabled { opacity: 0.6; cursor: default; transform: none; }
.wpcf7-spinner { display: none; }
.wpcf7-not-valid-tip { color: #f87171; font-size: 0.75rem; margin-top: 0.25rem; }
.wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: #cbd5e1;
  font-size: 0.8125rem;
}

/* ---------- Icon utility (inline lucide SVGs) ---------- */
.ig-icon { display: inline-flex; flex-shrink: 0; }
.ig-icon svg { width: 1em; height: 1em; stroke: currentColor; }

/* ---------- Custom widget: Image Overlay Panel ---------- */
.ig-overlay-panel {
  position: relative;
  border-radius: 1.5rem;
  padding: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.ig-overlay-panel-inner {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.ig-overlay-panel-inner img { width: 100%; height: 100%; object-fit: cover; }
.ig-overlay-panel-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 55%, transparent 100%);
  opacity: 0.5;
}
.ig-overlay-panel-caption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}
.ig-overlay-panel-caption strong { color: #fff; font-weight: 600; }
.ig-overlay-panel-badges { display: flex; align-items: center; gap: 0.5rem; }
.ig-overlay-panel-badges span { padding: 0.15rem 0.5rem; border-radius: 0.25rem; font-size: 0.625rem; }

/* ---------- Custom widget: Stat Grid ---------- */
.ig-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.ig-stat-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
  .ig-stat-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.ig-stat-card { padding: 1.5rem; text-align: center; }
.ig-stat-card .ig-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: #22d3ee;
}
.ig-stat-card .ig-stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ---------- Custom widget: Tag Pills ---------- */
.ig-tag-pills { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.ig-tag-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(6,182,212,0.1);
  color: #67e8f9;
  border: 1px solid rgba(34,211,238,0.2);
  font-weight: 500;
}

/* ---------- Custom widget: Pillar Services Grid ---------- */
.ig-pillar { border-radius: 1.5rem; overflow: hidden; margin-bottom: 3rem; }
.ig-pillar:last-child { margin-bottom: 0; }
.ig-pillar-banner {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
}
.ig-pillar-number {
  font-size: 1.75rem; font-weight: 800; color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.ig-pillar-divider { width: 1px; height: 1.5rem; background: rgba(255,255,255,0.2); }
.ig-pillar-banner h3 { margin: 0; font-size: 1.375rem; font-weight: 700; color: #fff; }
.ig-pillar-banner .ig-pillar-subtitle { margin: 0.125rem 0 0; font-size: 0.8125rem; color: #cbd5e1; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.ig-pillar-cards { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .ig-pillar-cards { grid-template-columns: repeat(3, 1fr); } }
.ig-pillar-card {
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
}
@media (min-width: 768px) {
  .ig-pillar-card { border-top: none; border-left: 1px solid rgba(255,255,255,0.1); }
  .ig-pillar-card:first-child { border-left: none; }
}
.ig-pillar-card:hover { background: rgba(255,255,255,0.02); }
.ig-pillar-card-icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.ig-pillar-card h4 { color: #fff; font-size: 1.125rem; font-weight: 700; margin: 0 0 0.75rem; }
.ig-pillar-card > div > p { color: #cbd5e1; font-size: 0.875rem; line-height: 1.6; margin: 0 0 1rem; }
.ig-pillar-highlights-label {
  font-size: 0.6875rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; font-weight: 600;
  margin-bottom: 0.5rem;
}
.ig-pillar-highlights { margin-bottom: 1rem; }
.ig-pillar-highlights li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: #cbd5e1; margin-bottom: 0.5rem; }
.ig-pillar-highlights li .ig-icon { color: #22d3ee; margin-top: 0.125rem; }
.ig-pillar-toggle {
  background: none; border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 600; color: #22d3ee;
  margin-bottom: 0.75rem;
}
.ig-pillar-toggle:hover { color: #67e8f9; }
.ig-pillar-toggle .ig-icon svg { transition: transform 0.2s ease; }
.ig-pillar-toggle[aria-expanded="true"] .ig-icon svg { transform: rotate(180deg); }
.ig-pillar-highlights[hidden] { display: none; }
.ig-pillar-tech { padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); }
.ig-pillar-tech-label { font-size: 0.625rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; margin-bottom: 0.5rem; }

/* ---------- Custom widget: Tech Stack Filter Grid ---------- */
.ig-tech-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem; margin-bottom: 3rem; }
.ig-tech-filter-btn {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
}
.ig-tech-filter-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.ig-tech-filter-btn .count { padding: 0.1rem 0.4rem; border-radius: 999px; font-size: 0.625rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: rgba(255,255,255,0.1); color: #22d3ee; }
.ig-tech-filter-btn.is-active {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #040711;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
  border-color: transparent;
}
.ig-tech-filter-btn.is-active .count { background: rgba(0,0,0,0.3); color: #fff; }

.ig-tech-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .ig-tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .ig-tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ig-tech-grid { grid-template-columns: repeat(4, 1fr); } }
.ig-tech-card { padding: 1.5rem; text-align: left; }
.ig-tech-card.is-hidden { display: none; }
.ig-tech-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.ig-tech-logo {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  padding: 0.6rem;
}
.ig-tech-logo img { width: 100%; height: 100%; object-fit: contain; }
.ig-tech-card h3 { color: #fff; font-size: 1.0625rem; font-weight: 700; margin: 0; }
.ig-tech-card p { color: #94a3b8; font-size: 0.75rem; margin: 0.25rem 0 0; line-height: 1.5; }

/* ---------- Custom widget: Icon Feature (vertical card or horizontal row) ---------- */
.ig-icon-feature { padding: 1.5rem; height: 100%; }
.ig-icon-feature-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ig-icon-feature.layout-vertical .ig-icon-feature-icon { margin-bottom: 1rem; }
.ig-icon-feature h3 { color: #fff; font-size: 1.0625rem; font-weight: 700; margin: 0 0 0.5rem; }
.ig-icon-feature p { color: #cbd5e1; font-size: 0.8125rem; line-height: 1.6; margin: 0; }
.ig-icon-feature.layout-horizontal { display: flex; align-items: flex-start; gap: 1rem; }
.ig-icon-feature.layout-badge { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; }
.ig-icon-feature.layout-badge .ig-icon-feature-icon { width: 2rem; height: 2rem; font-size: 1.1rem; margin: 0; }
.ig-icon-feature.layout-badge strong { display: block; color: #fff; font-size: 0.875rem; }
.ig-icon-feature.layout-badge p { color: #cbd5e1; font-size: 0.75rem; margin-top: 0.15rem; }

/* ---------- Generic section helpers ---------- */
.ig-section { padding: 6rem 0; position: relative; overflow: hidden; }
.ig-section.bordered-top { border-top: 1px solid rgba(255,255,255,0.1); }

/* Dark gradient scrim over a full-bleed section background image, applied via
   Elementor's Advanced > CSS Classes (no Pro "Background Overlay" control needed). */
.ig-hero-scrim { position: relative; overflow: hidden; }
.ig-hero-scrim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,7,17,0.8) 0%, rgba(4,7,17,0.4) 50%, rgba(4,7,17,0.9) 100%);
  pointer-events: none;
  z-index: 0;
}
.ig-hero-scrim > .elementor-container { position: relative; z-index: 1; }
