/* ═══════════════════════════════════════════════
   AXIS — Inner Pages Shared Stylesheet
   Used by all service + company pages
   ═══════════════════════════════════════════════ */

:root {
  --orange: #F7941D;
  --gold:   #FFB800;
  --dark:   #0A0F1E;
  --dark2:  #111827;
  --text:   #1A1A2E;
  --body:   #4B5563;
  --light:  #F8FAFC;
  --white:  #FFFFFF;
  --border: #E5E7EB;
  --grad:   linear-gradient(135deg, #F7941D 0%, #FFB800 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); overflow-x: hidden; line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.ip-wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.ip-sec  { padding: 96px 0; }
.ip-sec-sm { padding: 64px 0; }

/* Typography */
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; }
.ip-tag {
  display: inline-block;
  background: rgba(247,148,29,0.12);
  color: var(--orange);
  font-size: 0.74rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 16px; font-family: 'Outfit', sans-serif;
}
.ip-tag-w { background: rgba(255,255,255,0.15); color: #fff; }
.ip-h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 800; color: #FFFFFF; margin-bottom: 14px; }
.ip-h2 span { color: var(--orange); }
.ip-desc { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.72; }
.ip-center { text-align: center; margin-bottom: 52px; }
.ip-center .ip-desc { margin: 0 auto; }

/* ── Buttons ───────────────────────────────── */
.ip-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.3s ease;
  white-space: nowrap; text-decoration: none;
}
.ip-btn-p { background: var(--grad); color: #fff; box-shadow: 0 4px 20px rgba(247,148,29,0.38); }
.ip-btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(247,148,29,0.5); color: #fff; }
.ip-btn-ol { border: 2px solid var(--orange); color: var(--orange); background: transparent; }
.ip-btn-ol:hover { background: var(--orange); color: #fff; }
.ip-btn-w  { background: #fff; color: var(--orange); font-weight: 700; }
.ip-btn-w:hover { background: #FFF5E6; transform: translateY(-2px); }
.ip-btn-olw { border: 2px solid rgba(255,255,255,0.45); color: #fff; background: transparent; }
.ip-btn-olw:hover { background: rgba(255,255,255,0.12); }
.ip-btn-lg { padding: 16px 36px; font-size: 1.04rem; }
.ip-btn-full { width: 100%; justify-content: center; }

/* ── Forms ─────────────────────────────────── */
.ip-fg { display: flex; flex-direction: column; gap: 7px; }
.ip-fg label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.4px; color: #374151; }
.ip-fg input, .ip-fg select, .ip-fg textarea {
  padding: 12px 16px; border-radius: 9px;
  font-size: 0.92rem; font-family: 'Inter', sans-serif;
  outline: none; width: 100%; transition: border-color 0.25s, box-shadow 0.25s;
  background: #fff; border: 1.5px solid var(--border); color: var(--text);
}
.ip-fg input::placeholder, .ip-fg textarea::placeholder { color: #9CA3AF; }
.ip-fg input:focus, .ip-fg select:focus, .ip-fg textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,148,29,0.12);
}
.ip-fg textarea { resize: vertical; }
.ip-fg-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ip-fstack { display: flex; flex-direction: column; gap: 16px; }

/* ── Page Hero ─────────────────────────────── */
.ip-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
/* animated glow orbs inside hero */
.ip-hero::before {
  content: '';
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  right: -200px; top: -220px;
  background: radial-gradient(circle, rgba(247,148,29,0.18) 0%, transparent 65%);
  pointer-events: none;
  animation: ip-orb1 14s ease-in-out infinite;
}
.ip-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
@keyframes ip-orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-60px, 60px) scale(1.1); }
  70%     { transform: translate(30px,-40px) scale(0.92); }
}
/* second orb via wrapper span */
.ip-hero-orb2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  left: -100px; bottom: -150px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 65%);
  pointer-events: none;
  animation: ip-orb2 18s ease-in-out infinite;
  z-index: 1;
}
@keyframes ip-orb2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(80px,-60px); }
}
.ip-hero-inner { position: relative; z-index: 2; }
.ip-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.ip-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.ip-breadcrumb a:hover { color: var(--orange); }
.ip-breadcrumb svg { width: 14px; height: 14px; }
.ip-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900; color: #FFFFFF;
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 16px;
}
.ip-hero h1 span { color: var(--orange); }
.ip-hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  max-width: 600px; line-height: 1.72; margin-bottom: 32px;
}
.ip-hero-acts { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Two-column layouts ────────────────────── */
.ip-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ip-grid-2-rev { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ── Feature cards ─────────────────────────── */
.ip-feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ip-feat-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 34px 28px;
  transition: all 0.3s; cursor: default; position: relative; overflow: hidden;
}
.ip-feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: 0.3s;
}
.ip-feat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.3); border-color: rgba(247,148,29,0.28); }
.ip-feat-card:hover::after { transform: scaleX(1); }
.ip-feat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(247,148,29,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: 0.3s;
}
.ip-feat-card:hover .ip-feat-icon { background: var(--grad); }
.ip-feat-icon svg { width: 24px; height: 24px; color: var(--orange); transition: 0.3s; }
.ip-feat-card:hover .ip-feat-icon svg { color: #fff; }
.ip-feat-card h4 { font-family: 'Outfit', sans-serif; font-size: 1.08rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ip-feat-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.68; }

/* ── Checklist ─────────────────────────────── */
.ip-checklist { display: flex; flex-direction: column; gap: 14px; }
.ip-check { display: flex; align-items: flex-start; gap: 12px; }
.ip-check-ico {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(247,148,29,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.ip-check-ico svg { width: 12px; height: 12px; color: var(--orange); }
.ip-check p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.ip-check-w .ip-check-ico { background: rgba(255,255,255,0.15); }
.ip-check-w .ip-check-ico svg { color: #fff; }
.ip-check-w p { color: rgba(255,255,255,0.85); }

/* ── Visual box (dark) ─────────────────────── */
.ip-dark-box {
  background: linear-gradient(145deg, var(--dark) 0%, #1F2937 100%);
  border-radius: var(--radius-lg); padding: 52px 44px;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px; position: relative; overflow: hidden;
}
.ip-dark-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(247,148,29,0.16), transparent 60%);
}
.ip-dark-box lottie-player { width: 280px; height: 280px; position: relative; z-index: 1; }

/* ── Tech badges ───────────────────────────── */
.ip-tech-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.ip-tech-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.84rem; font-weight: 700; color: rgba(255,255,255,0.8);
  font-family: 'Outfit', sans-serif;
  transition: all 0.25s;
}
.ip-tech-badge:hover { border-color: var(--orange); color: var(--orange); background: rgba(247,148,29,0.06); }
.ip-tech-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ── Process steps ─────────────────────────── */
.ip-proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.ip-proc-grid::before {
  content: ''; position: absolute;
  top: 34px; left: 13%; width: 74%; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold)); opacity: 0.2;
}
.ip-proc-step { text-align: center; position: relative; z-index: 1; }
.ip-proc-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(247,148,29,0.12); border: 2px solid rgba(247,148,29,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--orange);
  transition: all 0.3s;
}
.ip-proc-step:hover .ip-proc-num { background: var(--grad); color: #fff; border-color: transparent; transform: scale(1.1); }
.ip-proc-step h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ip-proc-step p  { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── CTA band ──────────────────────────────── */
.ip-cta-band {
  background: var(--grad); padding: 80px 0;
  position: relative; overflow: hidden;
}
.ip-cta-band::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -250px; right: -100px; pointer-events: none;
}
.ip-cta-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: start; position: relative; z-index: 1;
}
.ip-cta-left h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,3vw,2.5rem); color:#fff; margin-bottom:14px; }
.ip-cta-left p  { font-size:1.05rem; color:rgba(255,255,255,0.88); line-height:1.7; margin-bottom:28px; }
.ip-cta-acts { display:flex; gap:12px; flex-wrap:wrap; }
.ip-cta-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.ip-cta-box h3 { font-family:'Outfit',sans-serif; font-size:1.25rem; font-weight:700; color:var(--text); margin-bottom:22px; }

/* ── Stats stripe ──────────────────────────── */
.ip-stats { background: var(--grad); padding: 36px 0; }
.ip-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.ip-snum { font-family:'Outfit',sans-serif; font-size:clamp(2rem,3vw,2.8rem); font-weight:900; color:#fff; line-height:1; }
.ip-slbl { font-size:0.84rem; color:rgba(255,255,255,0.88); font-weight:600; margin-top:5px; }

/* ── Hero 2-column split layout ─────────────── */
.ip-hero--split .ip-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── Ecosystem Hero Visual ───────────────────── */
.eco-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.eco-stage {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}

/* dashed orbit rings — centered with margin trick so rotation works */
.eco-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px dashed;
}
.eco-r1 {
  width: 170px; height: 170px;
  margin: -85px 0 0 -85px;
  border-color: rgba(247,148,29,0.28);
  animation: eco-spin 26s linear infinite;
}
.eco-r2 {
  width: 272px; height: 272px;
  margin: -136px 0 0 -136px;
  border-color: rgba(99,102,241,0.14);
  animation: eco-spin 18s linear infinite reverse;
}
@keyframes eco-spin { to { transform: rotate(360deg); } }

/* central hub */
.eco-hub {
  position: absolute;
  top: 50%; left: 50%;
  width: 88px; height: 88px;
  margin: -44px 0 0 -44px;
  background: linear-gradient(135deg, #F7941D 0%, #FFB800 100%);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  box-shadow: 0 0 48px rgba(247,148,29,0.5), 0 0 96px rgba(247,148,29,0.15);
  z-index: 5;
}
.eco-hub span {
  font-size: 0.62rem; font-weight: 900;
  color: #fff; letter-spacing: 2px;
  text-transform: uppercase;
}

/* pulse rings from hub */
.eco-pulse {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(247,148,29,0.5);
  pointer-events: none;
  animation: eco-pulsate 2.8s ease-out infinite;
  z-index: 4;
}
.eco-p2 { animation-delay: 1.4s; }
@keyframes eco-pulsate {
  0%   { width: 88px;  height: 88px;  margin: -44px  0 0 -44px;  opacity: 0.9; }
  100% { width: 190px; height: 190px; margin: -95px  0 0 -95px;  opacity: 0; }
}

/* service node pills */
.eco-node {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 7px 14px;
  display: flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  z-index: 6;
  animation: eco-float 3.5s ease-in-out infinite;
}
.eco-node svg { opacity: 0.75; flex-shrink: 0; }

/* 5 fixed node positions around the 300×300 stage */
.eco-n1 { top: 6px;   left: calc(50% - 46px); animation-delay: 0s;    }
.eco-n2 { top: 68px;  right: -18px;           animation-delay: 0.55s; }
.eco-n3 { bottom: 68px; right: -12px;         animation-delay: 1.1s;  }
.eco-n4 { bottom: 6px;  left: calc(50% - 50px); animation-delay: 1.65s; }
.eco-n5 { top: calc(50% - 16px); left: -22px;  animation-delay: 2.2s;  }
@keyframes eco-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-7px); }
}

/* connecting line hub → client */
.eco-conn {
  width: 2px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(247,148,29,0.6), rgba(247,148,29,0.08));
  position: relative;
}
.eco-cdot {
  position: absolute;
  width: 6px; height: 6px;
  background: #F7941D;
  border-radius: 50%;
  left: -2px;
  box-shadow: 0 0 6px rgba(247,148,29,0.9);
  animation: eco-dropd 2s ease-in-out infinite;
}
.cd1 { animation-delay: 0s; }
.cd2 { animation-delay: 0.65s; }
.cd3 { animation-delay: 1.3s; }
@keyframes eco-dropd {
  0%   { top: 0;   opacity: 1; }
  100% { top: 44px; opacity: 0; }
}

/* client IT partner card */
.eco-client {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247,148,29,0.3);
  border-radius: 14px;
  padding: 13px 18px;
  max-width: 290px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(247,148,29,0.08);
  animation: eco-float 4s ease-in-out infinite 0.5s;
}
.eco-c-ic {
  width: 40px; height: 40px;
  background: rgba(247,148,29,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #F7941D; flex-shrink: 0;
}
.eco-c-text strong {
  display: block;
  font-size: 0.86rem; font-weight: 700;
  color: #fff;
}
.eco-c-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}
.eco-c-badge {
  margin-left: auto;
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  font-size: 0.68rem; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(74,222,128,0.25);
  white-space: nowrap; flex-shrink: 0;
}

/* ── Responsive ────────────────────────────── */
@media(max-width:1024px){
  .ip-grid-2, .ip-grid-2-rev, .ip-cta-inner { grid-template-columns:1fr; gap:44px; }
  .ip-feat-grid { grid-template-columns:repeat(2,1fr); }
  .ip-proc-grid { grid-template-columns:repeat(2,1fr); }
  .ip-proc-grid::before { display:none; }
  .ip-stats-grid { grid-template-columns:repeat(2,1fr); }
  .ip-hero--split .ip-hero-inner { grid-template-columns:1fr; }
  .ip-hero-visual { display:none; }
}
@media(max-width:680px){
  .ip-feat-grid, .ip-fg-grid2 { grid-template-columns:1fr; }
  .ip-hero { padding:120px 0 64px; }
}
