:root {
  --bg-start: #171f26;
  --bg-end: #171f26;
  --stripe: rgba(0, 0, 0, 0.04);
  --text: #e6f5ee;
  --muted: #b7d5c8;
  --primary: #34d399;
  --primary-700: #12b981;
  --surface: rgba(16, 30, 26, 0.6);
  --outline: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, var(--bg-end) 0%, var(--bg-start) 60%), linear-gradient(135deg, var(--bg-start), var(--bg-end));
  position: relative;
}

body::before { content: none; }
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 500px at 12% 20%, rgba(18,185,129,0.10) 0%, rgba(18,185,129,0.04) 40%, transparent 70%),
    radial-gradient(700px 420px at 88% 85%, rgba(18,185,129,0.08) 0%, rgba(18,185,129,0.03) 40%, transparent 70%),
    radial-gradient(600px 360px at 50% 60%, rgba(18,185,129,0.06) 0%, transparent 65%);
  pointer-events: none;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.scrolled {
  background: rgba(10, 18, 16, 0.7);
  backdrop-filter: saturate(150%) blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 18px 24px; max-width: 1200px; margin: 0 auto; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: radial-gradient(100% 100% at 50% 0%, var(--primary) 0%, var(--primary-700) 60%);
  color: #072b1f;
  font-weight: 800;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.brand-accent {
  color: var(--muted);
  margin-left: 2px;
}

.nav-right {
  display: contents;
}

.nav-links { list-style: none; display: flex; align-items: center; justify-content: flex-end; gap: 32px; margin: 0; padding: 0; }
.nav-links li { position: relative; padding: 0 6px; }
.nav-links li + li::before { content: ''; position: absolute; left: -2px; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: rgba(255,255,255,0.12); }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 0;
}

.nav-links a.active { color: var(--primary); }

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.btn-cta {
  background: var(--primary);
  color: #062a1f;
  box-shadow: 0 20px 40px rgba(52, 211, 153, 0.25);
}


.btn-cta.active, .drawer-cta.active {
  background: linear-gradient(90deg, #12b981, #34d399);
  color: #062a1f;
  box-shadow: 0 28px 48px rgba(18,185,129,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn-cta:hover { filter: brightness(1.05); }

.scroll-up {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #062a1f;
  box-shadow: 0 20px 40px rgba(52, 211, 153, 0.25);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}
.scroll-up.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-up:hover { filter: brightness(1.05); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(52,211,153,0.35);
  background: radial-gradient(120% 120% at 0% 0%, rgba(52,211,153,0.22) 0%, rgba(18,185,129,0.18) 50%, rgba(13,38,30,0.6) 100%);
  box-shadow: 0 16px 34px rgba(52,211,153,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 22px; height: 22px; color: #083426; }
.nav-toggle:hover { filter: brightness(1.05); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 400;
}

.mobile-drawer.open { opacity: 1; pointer-events: auto; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,18,16,0.88);
  backdrop-filter: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 410;
}
.mobile-drawer.open .drawer-overlay { opacity: 1; }

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: min(86vw, 340px);
  background: rgba(16, 30, 26, 0.98);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255,255,255,0.08);
  transform: translateY(0) scaleY(1);
  transform-origin: top right;
  transition: transform 0.18s ease, right 0.18s ease;
  box-shadow: 0 16px 34px rgba(0,0,0,0.35);
  z-index: 420;
}
.mobile-drawer.open .drawer-panel { transform: translateY(0) scaleY(1); }

.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--outline); }
.drawer-brand { display: flex; align-items: center; gap: 10px; }
.drawer-title { font-weight: 800; }
.drawer-close { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--outline); background: rgba(255,255,255,0.06); color: var(--text); display: grid; place-items: center; }
.drawer-close:hover { filter: brightness(1.05); }

.drawer-body { padding: 10px 12px 18px; }
.drawer-list { list-style: none; margin: 0; padding: 8px 6px; display: grid; gap: 4px; }
.drawer-item a { display: flex; align-items: center; gap: 12px; padding: 12px 12px; border-radius: 12px; color: var(--text); text-decoration: none; font-weight: 700; }
.drawer-item a:hover { background: rgba(255,255,255,0.06); }
.drawer-item a.active { background: rgba(255,255,255,0.08); color: var(--text); }
.drawer-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(18,185,129,0.08); color: var(--primary); display: grid; place-items: center; border: 1px solid rgba(18,185,129,0.2); }
.drawer-icon svg { width: 18px; height: 18px; }

.mobile-drawer .drawer-cta { display: block; margin: 12px; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 60px;
  position: relative;
}

.hero-inner { max-width: 1100px; text-align: center; }
.hero-slide .hero-inner { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }

.hero-track { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform: translateX(0) scale(0.98); filter: blur(2px); transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease; display: grid; place-items: center; }
.hero-slide.is-active { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); pointer-events: auto; }
.hero-slide.from-right { transform: translateX(60px) scale(0.98); }
.hero-slide.from-left { transform: translateX(-60px) scale(0.98); }

.hero-slide .hero-inner { transition: transform 0.6s ease; }
.hero-slide.is-active .hero-inner { transform: translateY(0) scale(1); }
.hero-slide:not(.is-active) .hero-inner { transform: translateY(10px) scale(0.99); }

.hero-nav { position: absolute; left: 0; right: 0; bottom: 56px; display: flex; justify-content: center; align-items: center; gap: 16px; pointer-events: none; }
.hero-arrow { pointer-events: auto; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--outline); background: rgba(255,255,255,0.06); color: var(--text); display: grid; place-items: center; backdrop-filter: blur(6px); transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.hero-arrow:hover { transform: scale(1.05); border-color: rgba(18,185,129,0.5); background: rgba(18,185,129,0.08); }
.hero-arrow.prev { margin-left: 0; }
.hero-arrow.next { margin-right: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--outline);
  color: var(--muted);
  font-weight: 700;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

.hero-title {
  margin: 20px 0 10px;
  font-weight: 800;
  line-height: 1.08;
  font-size: clamp(2.4rem, 5.2vw, 6rem);
}

.hero-title .accent { color: var(--primary); }
.accent { color: var(--primary); }

.hero-sub {
  color: var(--muted);
  max-width: 900px;
  margin: 20px auto 24px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

@media (min-width: 1600px) {
  .hero { min-height: 82vh; padding: 90px 24px 30px; }
  .hero-inner { max-width: 1200px; }
  .hero-slide .hero-inner { min-height: 60vh; }
  .hero-title { margin: 12px 0 8px; }
  .hero-sub { margin: 16px auto 18px; }
  .hero-stats { margin-top: 26px; }
}

.accent-soft { color: var(--primary); }

.hero-actions { display: flex; gap: 14px; justify-content: center; }

.btn-primary { background: var(--primary); color: #062a1f; box-shadow: 0 20px 40px rgba(52, 211, 153, 0.25); }

.btn-secondary { border: 1px solid var(--outline); color: var(--text); background: rgba(255,255,255,0.02); }

.hero-stats { display: flex; gap: 36px; justify-content: center; margin-top: 36px; }

.stat { display: grid; gap: 4px; text-align: center; }

.stat .num { font-weight: 800; color: var(--text); font-size: clamp(1.4rem, 3vw, 2rem); }

.stat .label { color: var(--muted); font-weight: 600; }



@media (max-width: 1024px) {
  .nav { grid-template-columns: auto auto auto; }
}

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-toggle { position: fixed; top: 12px; right: 16px; z-index: 120; }
  /* Hide header CTA on small screens; show only when mobile menu is open */
  .nav-right .btn-cta { display: none; }
  body.menu-open .nav-right .btn-cta { display: inline-flex; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .scroll-up { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

.no-scroll { overflow: hidden; }

/* About */
.container { max-width: 1200px; margin: 0 auto; }

.about { padding: 72px 24px 80px; position: relative; z-index: 1; isolation: isolate; background: transparent; border-top: 1px solid var(--outline); }

.about::before { content: none; }

.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }

.section-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--outline); color: var(--muted); font-weight: 700; }

.about-title { margin: 18px auto 10px; font-weight: 800; line-height: 1.15; font-size: clamp(1.8rem, 3.8vw, 3rem); text-align: left; }

.about-copy { color: var(--muted); max-width: 760px; line-height: 1.6; margin: 0 auto; text-align: left; }

.about-left { text-align: left; }
.about-left .section-badge { margin: 0 auto; }

.about-meta { margin-top: 22px; }
.about-cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 16px; background: radial-gradient(120% 120% at 0% 0%, rgba(52,211,153,0.22) 0%, rgba(18,185,129,0.18) 50%, rgba(13,38,30,0.6) 100%); border: 1px solid rgba(52,211,153,0.35); color: var(--text); font-weight: 800; text-decoration: none; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 20px 40px rgba(8,17,14,0.5); }

.meta-badge { display: inline-flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: 16px; background: radial-gradient(120% 120% at 0% 0%, rgba(52,211,153,0.22) 0%, rgba(18,185,129,0.18) 50%, rgba(13,38,30,0.6) 100%); border: 1px solid rgba(52,211,153,0.35); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 20px 40px rgba(8,17,14,0.5); }

.meta-num { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--primary); color: #062a1f; font-weight: 800; }

.meta-copy { display: grid; line-height: 1.2; }
.meta-copy strong { color: var(--text); }
.meta-copy span { color: var(--muted); font-weight: 600; font-size: 0.9rem; }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }

.feature-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 18px 24px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid var(--outline); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }

.icon-pill { width: 44px; height: 44px; border-radius: 12px; background: radial-gradient(100% 100% at 50% 0%, var(--primary) 0%, var(--primary-700) 60%); position: relative; display: grid; place-items: center; }
.icon-pill svg { width: 22px; height: 22px; stroke: #083426; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; fill: none; }

.feature-title { color: var(--text); font-weight: 700; }
.feature-desc { color: var(--muted); font-size: 0.95rem; }

.feature-body { display: grid; gap: 4px; }

.feat-ordinal { font-weight: 800; color: rgba(255,255,255,0.12); font-size: 2rem; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Services */
.services { padding: 90px 24px; position: relative; background: transparent; isolation: isolate; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 30px; }
.services-title { margin: 15px 0 0; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; }
.services-desc { color: var(--muted); max-width: 400px; text-align: right; margin: 0; line-height: 1.5; font-size: 1.1rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--outline);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover, .service-card.active {
  border-color: rgba(18, 185, 129, 0.5);
  background: radial-gradient(800px at 100% 0%, rgba(18, 185, 129, 0.08) 0%, transparent 100%), rgba(255,255,255,0.06);
}

.services::before { content: none; }

.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }

.service-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: grid; place-items: center;
  color: var(--primary);
}
.service-icon svg { width: 24px; height: 24px; }

.service-link { color: var(--muted); opacity: 0.5; transition: 0.3s; }
.service-card:hover .service-link { color: var(--primary); opacity: 1; transform: translate(2px, -2px); }
.service-link svg { width: 20px; height: 20px; }

.service-name { font-size: 1.5rem; font-weight: 700; margin: 0 0 15px; color: var(--text); }
.service-card.active .service-name { color: var(--primary); }

.service-text { color: var(--muted); margin: 0 0 30px; line-height: 1.6; flex-grow: 1; font-size: 0.95rem; }

.service-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.service-tags span {
  font-size: 0.8rem; font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  background: transparent;
  transition: 0.3s;
}

.service-card.active .service-tags span,
.service-card:hover .service-tags span {
  border-color: rgba(18, 185, 129, 0.3);
  color: var(--text);
  background: rgba(18, 185, 129, 0.05);
}

@media (max-width: 900px) {
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-desc { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 30px; }
}

.tech { padding: 72px 24px 80px; position: relative; isolation: isolate; background: transparent; }
.tech::before { content: none; }

.tech-head { text-align: center; max-width: 800px; margin: 0 auto 28px; }
.tech-title { margin: 18px 0 8px; font-weight: 800; line-height: 1.15; font-size: clamp(1.8rem, 3.6vw, 3rem); }
.tech-sub { color: var(--muted); }

.partner-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.partner-card { position: relative; padding: 24px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid var(--outline); box-shadow: 0 20px 40px rgba(0,0,0,0.25); display: grid; gap: 10px; }
.partner-card::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 6px; border-top-left-radius: 16px; border-top-right-radius: 16px; }
.partner-card h3 { margin: 0; font-weight: 800; }
.partner-card .sub { color: var(--muted); font-weight: 700; }
.partner-card p { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 8px 12px; border-radius: 999px; border: 1px solid var(--outline); color: #062a1f; background: var(--primary); font-weight: 700; font-size: 0.9rem; }

.accent-azure::before { background: linear-gradient(90deg, #1f7dee, #34d399); }
.accent-sap::before { background: linear-gradient(90deg, #00b3b3, #1f7dee); }
.accent-qlik::before { background: linear-gradient(90deg, #34d399, #b1f3d6); }

@media (max-width: 980px) { .partner-cards { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .partner-cards { grid-template-columns: 1fr; } }

/* Industries */
.industries { padding: 90px 24px; position: relative; background: transparent; isolation: isolate; }
.industry-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1200px; margin: 0 auto 40px; }

.industry-card {
  position: relative;
  background: linear-gradient(90deg, rgba(18,185,129,0.08) 0%, rgba(18,185,129,0.03) 40%, rgba(255,255,255,0) 100%);
  border: none;
  border-radius: 16px;
  padding: 28px 28px 28px 36px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: linear-gradient(90deg, rgba(18,185,129,0.12) 0%, rgba(18,185,129,0.06) 40%, rgba(255,255,255,0) 100%);
}

.ind-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 20px; }

.ind-title-group { display: flex; align-items: center; gap: 16px; }
.ind-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(18, 185, 129, 0.1);
  color: var(--primary);
  display: grid; place-items: center;
  border: 1px solid rgba(18, 185, 129, 0.2);
}
.ind-icon svg { width: 24px; height: 24px; }

.ind-title-group h3 { font-size: 1.4rem; font-weight: 800; margin: 0; }

.ind-stat { text-align: right; }
.stat-val { display: block; color: var(--primary); font-size: 1.8rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

.ind-desc { color: var(--muted); line-height: 1.6; margin-bottom: 30px; font-size: 1rem; }

.ind-highlight {
  background: rgba(18, 185, 129, 0.05);
  border: 1px solid rgba(18, 185, 129, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hl-icon { color: var(--primary); min-width: 20px; margin-top: 2px; }
.hl-icon svg { width: 20px; height: 20px; }

.ind-highlight p { margin: 0; font-size: 0.95rem; color: #a0aec0; line-height: 1.5; }

.industry-footer { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.ind-footer-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.ind-footer-item svg { width: 18px; height: 18px; color: var(--primary); }

@media (max-width: 900px) {
  .industry-grid { grid-template-columns: 1fr; }
  .ind-header { flex-direction: column; }
  .ind-stat { text-align: left; }
}

.industries::before { content: none; }


/* Contact */
.contact { padding: 90px 24px; position: relative; background: transparent; isolation: isolate; }
.contact-hero { text-align: center; max-width: 900px; margin: 0 auto 40px; }
.contact-title { margin: 14px 0 6px; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; }
.contact-sub { color: var(--muted); }

.contact-shell { position: relative; border: 1px solid var(--outline); border-radius: 24px; background: rgba(255,255,255,0.04); box-shadow: 0 24px 48px rgba(0,0,0,0.35); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; overflow: hidden; }
.contact-shell::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: linear-gradient(90deg, #1f7dee, #34d399); opacity: 0.8; }

.contact-left { padding: 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.contact-brand { margin: 0 0 6px; font-size: 1.4rem; font-weight: 800; }
.contact-tag { margin: 0 16px 22px 0; color: var(--muted); max-width: 520px; }
.contact-items { display: grid; gap: 16px; }
.contact-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 12px 0; }
.ci-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(18,185,129,0.1); color: var(--primary); display: grid; place-items: center; border: 1px solid rgba(18,185,129,0.2); }
.ci-icon svg { width: 22px; height: 22px; }
.ci-body strong { display: block; font-weight: 800; }
.ci-body span { display: block; color: var(--muted); }

.contact-form { padding: 32px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 12px; }
.field label { font-weight: 700; color: var(--muted); font-size: 0.9rem; }
.field input, .field textarea { background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 18px; color: var(--text); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field textarea:focus { border-color: rgba(18,185,129,0.5); box-shadow: 0 0 0 3px rgba(18,185,129,0.15); }
.field input:invalid:not(:placeholder-shown), .field textarea:invalid:not(:placeholder-shown) { border-color: rgba(62, 238, 156, 0.5); box-shadow: 0 0 0 3px rgba(48, 230, 139, 0.15); }
.field-error { color: #ef4444; font-size: 0.8rem; display: none; font-weight: 600; }
.field-error:not(:empty) { display: block; }

.form-status { display: none; padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-weight: 600; }
.form-status.success { display: block; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #86efac; }
.form-status.error { display: block; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }

.btn-send { width: 100%; margin-top: 12px; padding: 14px 18px; border-radius: 999px; border: none; background: var(--primary); color: #062a1f; font-weight: 800; box-shadow: 0 20px 40px rgba(52,211,153,0.25); cursor: pointer; transition: filter 0.2s ease, box-shadow 0.2s ease; }
.btn-send:hover { filter: brightness(1.05); }
.btn-send:focus { outline: 2px solid rgba(52,211,153,0.6); outline-offset: 2px; }
.btn-send:active { filter: brightness(0.95); }

@media (max-width: 900px) {
  .contact-shell { grid-template-columns: 1fr; }
  .contact-left { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cf-row { grid-template-columns: 1fr; }
}
/* Footer */
.footer { padding: 72px 24px; position: relative; background: #121a21; isolation: isolate; border-top: 1px solid var(--outline); }
.footer::before { content: none; }

.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 40px; align-items: start; max-width: 1200px; margin: 0 auto 18px; }
.footer-brand { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.brand-pill { width: 42px; height: 42px; border-radius: 12px; background: radial-gradient(100% 100% at 50% 0%, var(--primary) 0%, var(--primary-700) 60%); color: #062a1f; font-weight: 800; display: grid; place-items: center; border: 1px solid rgba(52,211,153,0.35); box-shadow: 0 8px 18px rgba(18,185,129,0.28); }
.footer-name { font-weight: 800; }
.footer-tag { color: var(--muted); margin: 6px 0 0; max-width: 420px; }

.footer-title { font-weight: 800; margin-bottom: 12px; }
.footer-links ul, .footer-contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--text); }
.footer-contact li { color: var(--muted); font-weight: 600; }

.footer-meta { display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); font-weight: 600; font-size: 0.9rem; max-width: 1200px; margin: 18px auto 0; }
.footer-meta a { color: var(--muted); text-decoration: none; font-weight: 700; }
.footer-meta a:hover { color: var(--text); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
}
.site-slogan { max-width: 1200px; margin: 0 auto; padding: 6px 24px 12px; color: var(--muted); font-weight: 700; letter-spacing: 0.2px; }
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; width: 8px; height: 8px; border-radius: 999px; background: var(--primary); box-shadow: 0 0 0 4px rgba(52,211,153,0.18), 0 0 14px rgba(52,211,153,0.6); opacity: 0.9; transform: translate3d(var(--x), var(--y), 0); animation: pulse 3.8s ease-in-out infinite, var(--path) var(--dur) ease-in-out infinite alternate; }
.orb.s1 { --x: 14vw; --y: 22vh; --path: path-a; --dur: 10s; }
.orb.s2 { --x: 26vw; --y: 30vh; --path: path-b; --dur: 12s; }
.orb.s3 { --x: 40vw; --y: 18vh; --path: path-c; --dur: 11s; }
.orb.s4 { --x: 58vw; --y: 26vh; --path: path-a; --dur: 9s; }
.orb.s5 { --x: 72vw; --y: 20vh; --path: path-b; --dur: 13s; }
.orb.s6 { --x: 20vw; --y: 58vh; --path: path-c; --dur: 12s; }
.orb.s7 { --x: 38vw; --y: 64vh; --path: path-a; --dur: 10s; }
.orb.s8 { --x: 60vw; --y: 62vh; --path: path-b; --dur: 11s; }
.orb.s9 { --x: 78vw; --y: 56vh; --path: path-c; --dur: 12s; }

@keyframes pulse { 0%,100% { opacity: 0.9; box-shadow: 0 0 0 4px rgba(52,211,153,0.18), 0 0 14px rgba(52,211,153,0.6); } 50% { opacity: 1; box-shadow: 0 0 0 6px rgba(52,211,153,0.22), 0 0 18px rgba(52,211,153,0.7); } }
@keyframes path-a { to { transform: translate3d(calc(var(--x) + 4vw), calc(var(--y) - 3vh), 0); } }
@keyframes path-b { to { transform: translate3d(calc(var(--x) - 3vw), calc(var(--y) + 4vh), 0); } }
@keyframes path-c { to { transform: translate3d(calc(var(--x) + 2vw), calc(var(--y) + 2vh), 0); } }
@media (max-width: 640px) {
  /* Global spacing */
  .hero { min-height: 88vh; padding: 80px 16px 24px; }
  .hero-inner { max-width: 95vw; }
  .hero-slide .hero-inner { min-height: 60vh; }
.hero-title { margin: 8px 0 6px; line-height: 1.1; }
.hero-sub { max-width: 95vw; margin: 12px auto 16px; }
  .hero-nav { bottom: 24px; gap: 10px; }
  .hero-arrow { width: 36px; height: 36px; }
  .hero-orbs .orb { width: 6px; height: 6px; box-shadow: 0 0 0 3px rgba(52,211,153,0.16), 0 0 10px rgba(52,211,153,0.5); }

  .about { padding: 64px 16px 72px; }
  .about-title { margin: 12px 0 8px; }
  .feature-card { padding: 16px; }

  .tech { padding: 56px 16px 56px; }
  .partner-card { padding: 18px; }
  .chips { gap: 8px; }

  .services { padding: 56px 16px; }
  .service-card { padding: 24px; }

  .industries { padding: 80px 16px; }
  .industry-card { padding: 24px; }

  .contact { padding: 80px 16px; }
  .contact-left, .contact-form { padding: 20px; }
  .cf-row { gap: 14px; }

  .footer { padding: 60px 16px; }
}
.industry-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  background: linear-gradient(180deg, var(--primary), rgba(18,185,129,0.35));
}
