@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #0d0710;
  --bg-soft: #150a12;
  --surface: #1c0f18;
  --surface-2: #241426;
  --border: rgba(255, 2.section-tag::before55, 255, 0.08);
  --indigo: #e6007a;
  --indigo-dark: #7a0038;
  --cyan: #ff4fa3;
  --violet: #c2185b;
  --gradient: linear-gradient(135deg, var(--indigo), var(--cyan));
  --gradient-2: linear-gradient(135deg, var(--violet), var(--indigo));
  --white: #ffffff;
  --text: #e7eaf3;
  --text-muted: #8a93ac;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a:hover {
  color: white;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; }

img { max-width: 100%; }

/* ===== SHARED UTILITIES ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 0.6rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  /* max-width: 620px; */
  line-height: 1.75;
}

.section-desc.mx-auto { margin-left: auto; margin-right: auto; }

.section-dark   { background-color: rgba(21, 10, 18, 0.72); position: relative; overflow: hidden; }
.section-darker { background-color: rgba(10, 5, 9, 0.85);  position: relative; overflow: hidden; }
.section-light  { background-color: rgba(13, 7, 16, 0.60); position: relative; overflow: hidden; }

/* lift content above rings & aurora */
.section-dark   > .container,
.section-darker > .container,
.section-light  > .container { position: relative; z-index: 1; }

/* ===== SECTION RINGS ===== */
.section-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ---- rings ---- */
.sr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}

/* variant a — rings cluster top-right / bottom-left */
.section-rings--a .sr-ring-1 {
  width: 520px; height: 520px;
  top: -180px; right: -160px;
  background: linear-gradient(#0000,#0000) padding-box,
              linear-gradient(135deg, rgba(230,0,122,0.35), rgba(194,24,91,0.08)) border-box;
  animation: ringSpinCW 22s linear infinite;
}
.section-rings--a .sr-ring-2 {
  width: 320px; height: 320px;
  bottom: -100px; left: -80px;
  background: linear-gradient(#0000,#0000) padding-box,
              linear-gradient(225deg, rgba(255,79,163,0.3), rgba(122,0,56,0.06)) border-box;
  animation: ringSpinCCW 18s linear infinite;
}
.section-rings--a .sr-ring-3 {
  width: 160px; height: 160px;
  top: 50%; left: 8%;
  transform: translateY(-50%);
  background: linear-gradient(#0000,#0000) padding-box,
              linear-gradient(90deg, rgba(230,0,122,0.22), transparent) border-box;
  animation: ringPulse 6s ease-in-out infinite, ringSpinCW 30s linear infinite;
}

/* variant b — rings cluster top-left / bottom-right */
.section-rings--b .sr-ring-1 {
  width: 480px; height: 480px;
  top: -150px; left: -140px;
  background: linear-gradient(#0000,#0000) padding-box,
              linear-gradient(45deg, rgba(230,0,122,0.32), rgba(194,24,91,0.06)) border-box;
  animation: ringSpinCCW 25s linear infinite;
}
.section-rings--b .sr-ring-2 {
  width: 280px; height: 280px;
  bottom: -80px; right: -60px;
  background: linear-gradient(#0000,#0000) padding-box,
              linear-gradient(315deg, rgba(255,79,163,0.28), rgba(122,0,56,0.05)) border-box;
  animation: ringSpinCW 20s linear infinite;
}
.section-rings--b .sr-ring-3 {
  width: 140px; height: 140px;
  top: 40%; right: 10%;
  background: linear-gradient(#0000,#0000) padding-box,
              linear-gradient(270deg, rgba(230,0,122,0.2), transparent) border-box;
  animation: ringPulse 5s ease-in-out infinite 1s, ringSpinCCW 28s linear infinite;
}

@keyframes ringSpinCW  { to { transform: rotate(360deg); } }
@keyframes ringSpinCCW { to { transform: rotate(-360deg); } }
@keyframes ringPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.12); }
}
/* variant b ring-3 offset */
.section-rings--b .sr-ring-3 { transform-origin: center center; }

/* ---- floating dots ---- */
.sr-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  filter: blur(1px);
  opacity: 0.55;
}
.sr-dot-1 {
  width: 6px; height: 6px;
  top: 18%; left: 15%;
  animation: dotDrift 8s ease-in-out infinite;
}
.sr-dot-2 {
  width: 4px; height: 4px;
  top: 65%; right: 20%;
  animation: dotDrift 11s ease-in-out infinite 2s;
}
.sr-dot-3 {
  width: 5px; height: 5px;
  bottom: 22%; left: 48%;
  animation: dotDrift 9s ease-in-out infinite 4s;
}
@keyframes dotDrift {
  0%,100% { transform: translate(0, 0);       opacity: 0.55; }
  33%      { transform: translate(14px,-20px); opacity: 0.9;  }
  66%      { transform: translate(-10px,12px); opacity: 0.4;  }
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-primary-glow {
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
  padding: 0.8rem 2rem;
}

.btn-primary-glow:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.45);
}

.btn-outline-glow {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  padding: 0.8rem 2rem;
}

.btn-outline-glow:hover {
  color: var(--bg);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-bottom { transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== BACKGROUND ORBS ===== */
.orb-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.orb-indigo { background: var(--indigo); }
.orb-cyan { background: var(--cyan); }
.orb-violet { background: var(--violet); }

/* animated orbs in hero */
.hero-banner .orb:nth-child(1) { animation: orbFloat1 10s ease-in-out infinite; }
.hero-banner .orb:nth-child(2) { animation: orbFloat2 13s ease-in-out infinite; }
.hero-banner .orb:nth-child(3) { animation: orbFloat3  8s ease-in-out infinite; }

@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-25px,20px) scale(0.94); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-50px,30px) scale(1.1); }
  70%      { transform: translate(30px,-40px) scale(0.92); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,35px) scale(1.06); }
}

/* ===== NAVBAR ===== */
#mainNav {
  background: transparent;
  padding: 1rem 0;
  transition: var(--transition);
}

#mainNav.scrolled {
  border-bottom: 1px solid var(--border);
  background: rgba(8, 11, 20, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}

.brand-mark img { height: 55px; width: 55px; }

.navbar-dark .navbar-toggler {
  background: var(--gradient);
  border: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 2rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: var(--gradient);
}

/* ===== PAGE HERO (for sub-pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
}

.page-hero-content { position: relative; z-index: 2; }

/* ===== HERO VISUAL (photo panel) ===== */
.hero-visual {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(230, 0, 122, 0.25);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 7, 16, 0.55) 100%);
  pointer-events: none;
}

/* ===== HOME HERO ===== */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 60px;
}


.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  max-width: 820px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(231, 234, 243, 0.82);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 640px;
}

.hero-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 640px;
}

.hero-actions .btn { font-size: 0.92rem; }

/* ===== CARDS ===== */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: var(--shadow);
}

.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.glass-card h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== WHY CHOOSE LIST ===== */
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  height: 100%;
}

.why-item .why-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h5 {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 2px;
}

/* ===== INDUSTRY BADGES ===== */
.industry-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.industry-chip:hover {
  border-color: rgba(168, 85, 247, 0.45);
  transform: translateY(-4px);
}

.industry-chip .chip-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.industry-chip span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 4rem 3rem;
  background: var(--gradient-2);
  text-align: center;
}

.cta-band h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

.cta-band .btn {
  background: #fff;
  color: var(--indigo-dark);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.85rem 2.25rem;
  transition: var(--transition);
}

.cta-band .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT PAGE ===== */
.value-card, .approach-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
}

.mv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.15;
  filter: blur(10px);
}

.mv-card h3 {
  font-family: 'Sora', sans-serif;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.approach-track {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  counter-reset: step;
}

.approach-step {
  flex: 1 1 220px;
  position: relative;
}

.approach-step .step-num {
  counter-increment: step;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
  display: block;
}

.approach-step h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.approach-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== SERVICES PAGE ===== */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: var(--shadow);
}

.service-card .service-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 1px;
}

.service-card h4 {
  font-family: 'Sora', sans-serif;
  color: var(--white);
  font-weight: 700;
  margin: 0.5rem 0 0.6rem;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-cat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.portfolio-cat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 163, 0.4);
}

.portfolio-cat .cat-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.portfolio-cat .cat-body { padding: 2rem; }

.portfolio-cat ul {
  list-style: none;
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.portfolio-cat ul li {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-cat ul li i { color: var(--cyan); font-size: 0.8rem; }

.framework-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
}

.framework-step .icon-tile { margin: 0 auto 1.1rem; }

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 20px;
}

.tech-chip i { color: var(--violet); }

/* ===== SECURITY HIGHLIGHT (services page) ===== */
.security-highlight {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.security-highlight img {
  width: 40%;
  height: 56vh;
  object-fit: cover;
  flex-shrink: 0;
}

.security-highlight .sh-body { padding: 1rem 2rem 1rem 0; }

@media (max-width: 767px) {
  .security-highlight { flex-direction: column; }
  .security-highlight img { width: 100%; height: 200px; }
  .security-highlight .sh-body { padding: 0 1.75rem 1.75rem; }
}

/* ===== CONTACT PAGE ===== */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.sv-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.sv-input {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--surface-2);
  color: var(--white);
}

.sv-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.sv-input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
  background: var(--surface-2);
  color: var(--white);
}

select.sv-input option { background: var(--surface-2); color: var(--white); }

.form-success { text-align: center; padding: 2rem; }

.form-success i {
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 1rem;
}

.form-success h4 { color: var(--white); }
.form-success p { color: var(--text-muted); }

#contactSuccess button {
  background: none !important;
  border: none;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  margin: 15px auto 0;
  cursor: pointer;
}

.contact-info { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-info-item .icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 0;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-info-item h5 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin: 0; }
.contact-info-item p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: #08040a;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.site-footer .brand-mark img {
  height: 70px;
  width: 70px;
}

.footer-about {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 1rem 0 1.25rem;
  max-width: 320px;
}

.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cyan);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-left: 0 !important;
  gap: 9px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--cyan); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.footer-contact-item i { color: var(--cyan); margin-top: 3px; }

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.footer-bottom div a {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 1.5rem;
  transition: var(--transition);
}

.footer-bottom div a:hover { color: var(--cyan); }

/* ===== INDUSTRIES ACCORDION ===== */
.industries-lead-title {
  font-family: 'Sora', sans-serif;
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.industry-accordion .accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.industry-accordion .accordion-header button.accordion-button {
  background: transparent;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: none;
  padding: 1.1rem 1.4rem;
}

.industry-accordion .accordion-button:not(.collapsed) {
  background: var(--surface-2);
  color: var(--white);
  box-shadow: none;
}

.industry-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.industry-accordion .accordion-button::after {
  filter: invert(1) brightness(2);
}

.industry-accordion-icon {
  color: var(--cyan);
  margin-right: 0.75rem;
  width: 1.1rem;
  text-align: center;
}

.industry-accordion .accordion-body {
  background: var(--bg);
  padding: 1.4rem 1.4rem 1.6rem;
}

.industry-accordion .accordion-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.solutions-label {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.industries-why {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
}

.industries-why h3 {
  font-family: 'Sora', sans-serif;
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.industries-why p {
  color: var(--text-muted);
}

.capability-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem 1.5rem;
}

.capability-checklist li {
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.capability-checklist li i {
  color: var(--cyan);
}

.industries-tagline {
  font-family: 'Sora', sans-serif;
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ===== LOADER ===== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0509;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.site-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader-ring {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  position: absolute;
  width: 56px;
  height: 56px;
  object-fit: contain;
  z-index: 1;
  animation: loader-pulse 1.6s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

.loader-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: loader-spin 1.1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-ring div:nth-child(1) { animation-delay: -0.3s; border-top-color: var(--indigo); }
.loader-ring div:nth-child(2) { animation-delay: -0.2s; border-top-color: var(--cyan); }
.loader-ring div:nth-child(3) { animation-delay: -0.1s; border-top-color: var(--violet); }
.loader-ring div:nth-child(4) { animation-delay: 0s;    border-top-color: var(--indigo); }

@keyframes loader-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== ANIMATED STATS ===== */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,0,122,0.06) 0%, transparent 50%, rgba(194,24,91,0.06) 100%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 767px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ICON TILE FLOAT ===== */
.icon-tile {
  animation: iconFloat 3.5s ease-in-out infinite;
}

.glass-card:nth-child(2) .icon-tile { animation-delay: 0.4s; }
.glass-card:nth-child(3) .icon-tile { animation-delay: 0.8s; }
.glass-card:nth-child(4) .icon-tile { animation-delay: 1.2s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 15px rgba(230,0,122,0.3); }
  50%       { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(230,0,122,0.5); }
}

/* ===== GLASS CARD SHIMMER + GLOW ===== */
.glass-card {
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 45%;
  height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(230,0,122,0.45);
  box-shadow: 0 0 0 1px rgba(230,0,122,0.2), 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(230,0,122,0.12);
  transform: translateY(-8px);
}

.glass-card:hover::after { left: 130%; }

/* ===== WHY ITEM GLOW ===== */
.why-item {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.why-item:hover {
  border-color: rgba(230,0,122,0.4);
  box-shadow: 0 0 24px rgba(230,0,122,0.1), inset 0 0 24px rgba(230,0,122,0.04);
  transform: translateY(-4px);
}

.why-item:hover .why-icon {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 20px rgba(230,0,122,0.5);
  transform: rotate(10deg) scale(1.1);
}

.why-item .why-icon {
  transition: all 0.3s ease;
}

/* ===== SERVICE CARD SHIMMER ===== */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -60%; left: -80%;
  width: 45%; height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(230,0,122,0.4);
  box-shadow: 0 0 0 1px rgba(230,0,122,0.15), 0 24px 64px rgba(0,0,0,0.5);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { left: 130%; }

.service-card:hover .service-num {
  text-shadow: 0 0 18px rgba(255,79,163,0.7);
  letter-spacing: 2px;
}

.service-num { transition: all 0.3s ease; }

/* ===== SERVICE TAGS POP ===== */
.service-tags span {
  transition: all 0.2s ease;
}
.service-tags span:hover {
  border-color: rgba(230,0,122,0.5);
  color: var(--cyan);
  background: rgba(230,0,122,0.08);
  transform: translateY(-2px);
}

/* ===== MV CARD ANIMATED BORDER ===== */
.mv-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.mv-card:hover {
  border-color: rgba(230,0,122,0.5);
  box-shadow: 0 0 0 1px rgba(230,0,122,0.2), 0 24px 64px rgba(0,0,0,0.45), 0 0 50px rgba(230,0,122,0.1);
  transform: translateY(-6px);
}

.mv-card:hover .icon-tile {
  animation: none;
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 0 28px rgba(230,0,122,0.6);
}

/* ===== APPROACH TRACK CONNECTOR ===== */
.approach-track {
  position: relative;
}

.approach-track::before {
  content: '';
  position: absolute;
  top: 2.8rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan), var(--violet));
  background-size: 200% 100%;
  animation: gradientSlide 3s linear infinite;
  z-index: 0;
  opacity: 0.4;
  border-radius: 2px;
}

@keyframes gradientSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.approach-step {
  position: relative;
  z-index: 1;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.approach-step:hover {
  border-color: rgba(230,0,122,0.45);
  box-shadow: 0 0 30px rgba(230,0,122,0.12);
  transform: translateY(-6px);
}

.approach-step:hover .step-num {
  text-shadow: 0 0 20px rgba(230,0,122,0.6);
  letter-spacing: 1px;
}

.step-num { transition: all 0.3s ease; }

/* ===== PORTFOLIO CAT IMAGE ZOOM ===== */
.portfolio-cat {
  position: relative;
  overflow: hidden;
}

.portfolio-cat .cat-photo {
  transition: transform 0.5s ease;
}

.portfolio-cat:hover .cat-photo {
  transform: scale(1.07);
}

.portfolio-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(230,0,122,0) 40%, rgba(230,0,122,0.18) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.portfolio-cat:hover::after { opacity: 1; }

.portfolio-cat:hover {
  border-color: rgba(230,0,122,0.5);
  box-shadow: 0 0 40px rgba(230,0,122,0.15);
}

.portfolio-cat ul li i {
  transition: transform 0.3s ease;
}

.portfolio-cat:hover ul li i {
  transform: scale(1.3);
  color: var(--indigo);
}

/* ===== FRAMEWORK STEP ===== */
.framework-step {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.framework-step:hover {
  border-color: rgba(230,0,122,0.45);
  box-shadow: 0 0 30px rgba(230,0,122,0.12);
  transform: translateY(-6px);
}

.framework-step:hover .icon-tile {
  animation: none;
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 0 24px rgba(230,0,122,0.55);
}

/* ===== TECH CHIPS WAVE ===== */
.tech-chip {
  transition: all 0.3s ease;
  cursor: default;
}

.tech-chip:hover {
  border-color: rgba(230,0,122,0.5);
  background: rgba(230,0,122,0.08);
  color: #fff;
  box-shadow: 0 0 20px rgba(230,0,122,0.2);
  transform: translateY(-3px);
}

.tech-chip:hover i { color: var(--cyan); }

/* ===== TECH CHIPS STAGGER ENTRY ===== */
.tech-chip:nth-child(1) { animation: chipBounce 0.5s 0.1s both; }
.tech-chip:nth-child(2) { animation: chipBounce 0.5s 0.2s both; }
.tech-chip:nth-child(3) { animation: chipBounce 0.5s 0.3s both; }
.tech-chip:nth-child(4) { animation: chipBounce 0.5s 0.4s both; }
.tech-chip:nth-child(5) { animation: chipBounce 0.5s 0.5s both; }
.tech-chip:nth-child(6) { animation: chipBounce 0.5s 0.6s both; }

@keyframes chipBounce {
  0%   { opacity: 0; transform: translateY(20px) scale(0.85); }
  70%  { transform: translateY(-4px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== CTA BAND ANIMATED ===== */
.cta-band {
  background-size: 200% 200%;
  animation: ctaShift 6s ease infinite;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 60%; height: 200%;
  background: rgba(255,255,255,0.06);
  transform: skewX(-15deg);
  animation: ctaSweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

@keyframes ctaSweep {
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* ===== SECURITY HIGHLIGHT GLOW ===== */
.security-highlight {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.security-highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(230,0,122,0.05), transparent);
  pointer-events: none;
}

.security-highlight:hover {
  border-color: rgba(230,0,122,0.35);
  box-shadow: 0 0 50px rgba(230,0,122,0.1);
}

.security-highlight img {
  transition: transform 0.5s ease;
}

.security-highlight:hover img { transform: scale(1.03); }

/* ===== FORM CARD GLOW ===== */
.form-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.form-card:focus-within {
  border-color: rgba(230,0,122,0.4);
  box-shadow: 0 0 0 1px rgba(230,0,122,0.15), 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(230,0,122,0.08);
}

/* ===== CONTACT INFO ITEM HOVER ===== */
.contact-info-item {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-info-item:hover {
  border-color: rgba(230,0,122,0.25);
  background: rgba(230,0,122,0.04);
}

/* ===== ACCORDION OPEN GLOW ===== */
.industry-accordion .accordion-button:not(.collapsed) {
  background: rgba(230,0,122,0.08);
  border-left: 3px solid var(--indigo);
}

.industry-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(230,0,122,0.35);
  box-shadow: 0 0 24px rgba(230,0,122,0.08);
}

/* ===== SOCIAL LINKS ===== */
.social-links a:hover {
  transform: rotate(10deg) scale(1.12);
}

/* ===== INDUSTRIES WHY HOVER ===== */
.industries-why {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.industries-why:hover {
  border-color: rgba(230,0,122,0.3);
  box-shadow: 0 0 30px rgba(230,0,122,0.08);
}

/* ===== FOOTER LINK UNDERLINE ===== */
.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.footer-links a:hover::after { width: 100%; }

/* ===== GRID STAGGER DELAYS ===== */
.row .col-md-6:nth-child(2) .reveal,
.row .col-lg-3:nth-child(2) .reveal { transition-delay: 0.1s; }
.row .col-md-6:nth-child(3) .reveal,
.row .col-lg-3:nth-child(3) .reveal { transition-delay: 0.2s; }
.row .col-md-6:nth-child(4) .reveal,
.row .col-lg-3:nth-child(4) .reveal { transition-delay: 0.3s; }
.row .col-lg-6:nth-child(2) .reveal  { transition-delay: 0.1s; }
.row .col-lg-4:nth-child(2) .reveal  { transition-delay: 0.1s; }
.row .col-lg-4:nth-child(3) .reveal  { transition-delay: 0.2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
    border: 1px solid var(--border);
  }
  .cta-band { padding: 3rem 1.75rem; }
}
