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

:root {
  --bg: #0b0f1a;
  --bg-card: rgba(15,20,35,0.6);
  --fg: #e2e8f0;
  --fg-muted: #64748b;
  --primary: #00f5ff;
  --primary-dim: rgba(0,245,255,0.15);
  --primary-glow: rgba(0,245,255,0.3);
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; opacity: 0; transition: opacity .3s ease; }
body.page-loaded { opacity: 1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s;
  padding: 0 2rem;
}
.navbar.scrolled {
  background: rgba(11,15,26,0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
}
.nav-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--primary); letter-spacing: -0.5px; display: flex; align-items: center; gap: 6px; }
.nav-logo-text { color: var(--primary); }
.nav-logo-text span { color: var(--fg); }
.nav-logo-img { height: 56px; width: auto; display: block; object-fit: contain; filter: drop-shadow(0 0 6px rgba(0,245,255,0.2)); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: .875rem; color: var(--fg-muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown > a::after { content: '▾'; font-size: .6rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px;
  background: rgba(15,20,35,0.9); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 12px; padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: all .2s;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: .5rem 1rem; border-radius: 8px; font-size: .85rem; }
.dropdown-menu a:hover { background: var(--primary-dim); color: var(--primary); }
.badge-soon {
  display: inline-block; font-size: .6rem; padding: 2px 8px; border-radius: 99px;
  background: var(--primary-dim); color: var(--primary); border: 1px solid rgba(0,245,255,0.2);
  margin-left: 6px; vertical-align: middle;
}
.hamburger { display: none; background: none; border: none; color: var(--fg); font-size: 1.5rem; cursor: pointer; }

/* Mobile */
@media (max-width: 900px) {
  .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,15,26,0.97); backdrop-filter: blur(24px);
    padding: 0 2rem; gap: 0; border-top: 1px solid transparent;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    pointer-events: none; max-height: 0; overflow: hidden;
    transition: opacity .28s ease, transform .28s ease, visibility .28s,
                max-height .35s ease, padding .28s, gap .28s, border-color .28s;
  }
  .nav-links.open {
    opacity: 1; visibility: visible; transform: translateY(0);
    pointer-events: all; padding: 1.25rem 2rem 1.75rem; gap: .9rem;
    border-color: var(--border); max-height: 600px;
  }
  .hamburger { display: block; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding-left: 1rem; }
}

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#tsparticles { position: absolute; inset: 0; z-index: 0; }
#hero-3d { position: absolute; top: 0; right: 0; width: 50%; height: 100%; z-index: 1; pointer-events: none; }
@media (max-width: 768px) { #hero-3d { display: none; } }
.hero-content {
  position: relative; z-index: 10; max-width: 720px; text-align: center; padding: 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 99px;
  border: 1px solid rgba(0,245,255,0.2); background: var(--primary-dim);
  font-size: .75rem; color: var(--primary); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; margin-bottom: .75rem; line-height: 1.1;
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #67e8f9, var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .tagline { font-family: var(--font-display); font-size: 1.25rem; color: rgba(0,245,255,0.8); margin-bottom: 1rem; }
.hero .subtitle { font-size: 1.1rem; color: var(--fg-muted); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .3s; border: none; font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0dd);
  color: var(--bg); box-shadow: 0 0 30px rgba(0,245,255,0.25);
}
.btn-primary:hover { box-shadow: 0 0 50px rgba(0,245,255,0.4); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--fg);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ---- SECTIONS ---- */
.section { padding: 6rem 2rem; max-width: 1280px; margin: 0 auto; }
.section-alt { background: rgba(255,255,255,0.02); }
.section-label { font-size: .8rem; color: var(--primary); text-transform: uppercase; letter-spacing: 3px; font-weight: 600; margin-bottom: .75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.section-subtitle { color: var(--fg-muted); font-size: 1.1rem; max-width: 640px; margin-bottom: 3rem; line-height: 1.7; }

/* ---- CARDS GRID ---- */
.cards-grid { display: grid; gap: 1.25rem; }
.cards-grid-2 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.glass-card {
  background: var(--bg-card); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; transition: all .4s;
}
.glass-card:hover { border-color: var(--primary-glow); box-shadow: 0 0 30px rgba(0,245,255,0.08); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--primary); font-size: 1.25rem;
}
.glass-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: .75rem; }
.glass-card p { color: var(--fg-muted); font-size: .9rem; line-height: 1.6; }

/* ---- LIST CARD (Expertise) ---- */
.list-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  border-radius: 12px; border: 1px solid transparent; transition: all .3s;
}
.list-card:hover { background: var(--bg-card); border-color: rgba(0,245,255,0.15); }
.list-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--primary-dim);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary);
}
.list-card h3 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; margin-bottom: .25rem; }
.list-card p { color: var(--fg-muted); font-size: .85rem; line-height: 1.5; }

/* ---- COMING SOON ---- */
.coming-soon-banner {
  text-align: center; padding: 5rem 2rem;
}
.coming-soon-banner h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.coming-soon-banner .pill {
  display: inline-block; padding: 10px 28px; border-radius: 99px;
  border: 1px solid rgba(0,245,255,0.3); background: var(--primary-dim);
  color: var(--primary); font-family: var(--font-display); font-size: .9rem; font-weight: 600;
}

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--fg); font-family: var(--font-body); font-size: .9rem;
  transition: border .3s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: rgba(0,245,255,0.4); }
.form-group textarea { resize: none; min-height: 140px; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; padding-left: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ci-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-dim); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-item h3 { font-family: var(--font-display); font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.contact-item p { color: var(--fg-muted); font-size: .85rem; }

/* ---- FOOTER ---- */
.footer { border-top: 1px solid var(--border); background: rgba(11,15,26,0.9); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem;
  padding: 3.5rem 2rem 2.5rem;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer-tagline { color: var(--fg-muted); font-size: .85rem; line-height: 1.6; margin-top: .75rem; }
.footer-heading { font-family: var(--font-display); font-size: .72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { color: var(--fg-muted); font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; color: var(--fg-muted); font-size: .82rem; line-height: 1.5; }
.footer-contact li svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 2rem; text-align: center; color: var(--fg-muted); font-size: .78rem; }
.footer-credit { font-size: .68rem; opacity: .45; margin-top: .3rem; }
.footer-credit a { color: var(--fg-muted); text-decoration: none; transition: color .2s, opacity .2s; }
.footer-credit a:hover { color: var(--primary); opacity: 1; }

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  padding: 8rem 2rem 4rem; text-align: center;
  background: linear-gradient(180deg, rgba(0,245,255,0.03) 0%, transparent 100%);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p { color: var(--fg-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ---- BOTTOM FADE ---- */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--bg), transparent); z-index: 5;
}

/* ---- FORM ROW ---- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---- ABOUT PAGE ---- */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }

.about-text .section-title { margin-bottom: 1.5rem; }
.about-body { color: var(--fg-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }

.about-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.about-img {
  width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 16/10;
  border: 1px solid var(--border); transition: transform .4s;
}
.about-img:hover { transform: scale(1.03); }
.about-img-large { grid-column: span 2; aspect-ratio: 16/9; }

/* ---- MISSION / VISION ---- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .mv-grid { grid-template-columns: 1fr; } }

.mv-card {
  background: var(--bg-card); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem;
  transition: all .4s;
}
.mv-card:hover { border-color: var(--primary-glow); box-shadow: 0 0 30px rgba(0,245,255,0.08); }
.mv-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--primary-dim); display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 1.5rem;
}
.mv-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--primary); }
.mv-card p { color: var(--fg-muted); font-size: .9rem; line-height: 1.8; }

/* ---- TEAM GRID ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }

.team-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--bg-card); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem;
  transition: all .4s;
}
.team-card:hover { border-color: var(--primary-glow); box-shadow: 0 0 30px rgba(0,245,255,0.08); transform: translateY(-3px); }

.team-avatar {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #0dd);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: var(--bg);
  letter-spacing: 1px;
}
.team-info h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.team-role { color: var(--primary); font-size: .8rem; font-weight: 600; margin-bottom: .2rem; }
.team-exp { color: var(--fg-muted); font-size: .75rem; font-weight: 500; margin-bottom: .75rem; letter-spacing: .5px; }
.team-bio { color: var(--fg-muted); font-size: .82rem; line-height: 1.65; }

/* ---- TEAM PAGE (full profile cards) ---- */
.team-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(480px, 1fr)); gap: 2rem; }
@media (max-width: 600px) { .team-page-grid { grid-template-columns: 1fr; } }

.team-profile-card {
  display: flex; gap: 1.75rem; align-items: flex-start;
  background: var(--bg-card); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
  transition: all .4s;
}
.team-profile-card:hover { border-color: var(--primary-glow); box-shadow: 0 0 40px rgba(0,245,255,0.08); transform: translateY(-3px); }

.team-photo-wrap { flex-shrink: 0; }
.team-photo-placeholder {
  width: 88px; height: 88px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #0dd);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--bg);
  letter-spacing: 2px;
}
.team-photo-wrap img {
  width: 88px; height: 88px; border-radius: 16px; object-fit: cover;
  border: 2px solid var(--primary-glow);
}
.team-profile-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.team-profile-body .team-role { color: var(--primary); font-size: .8rem; font-weight: 600; margin-bottom: .2rem; }
.team-profile-body .team-exp { color: var(--fg-muted); font-size: .75rem; margin-bottom: .75rem; letter-spacing: .5px; }
.team-profile-body .team-bio { color: var(--fg-muted); font-size: .85rem; line-height: 1.7; }

/* ---- IMAGE CARDS (industries / expertise / solutions) ---- */
.img-card {
  background: var(--bg-card); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all .4s;
}
.img-card:hover { border-color: var(--primary-glow); box-shadow: 0 0 30px rgba(0,245,255,0.1); transform: translateY(-4px); }
.img-card-photo { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.img-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.img-card:hover .img-card-photo img { transform: scale(1.05); }
.img-card-body { padding: 1.5rem; }
.img-card-body .card-icon { margin-bottom: 1rem; }
.img-card-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: .6rem; }
.img-card-body p { color: var(--fg-muted); font-size: .88rem; line-height: 1.65; }

/* ---- INDUSTRY DETAIL PAGE ---- */
.industry-hero-img {
  width: 100%; max-height: 480px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
  display: block; margin-bottom: 3rem;
}
.industry-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem;
}
@media (max-width: 768px) { .industry-split { grid-template-columns: 1fr; } }
.industry-split img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); object-fit: cover; }
.industry-split-text h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; }
.industry-split-text p { color: var(--fg-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }

.capabilities-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-top: 1.25rem; }
.capabilities-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  color: var(--fg-muted); font-size: .9rem; line-height: 1.5;
}
.capabilities-list li::before {
  content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: .45rem;
}

.industry-cta {
  background: linear-gradient(135deg, rgba(0,245,255,0.06), rgba(0,245,255,0.02));
  border: 1px solid rgba(0,245,255,0.15); border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center; margin-top: 2rem;
}
.industry-cta h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: .75rem; }
.industry-cta p { color: var(--fg-muted); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.industry-cta .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.related-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 99px; font-size: .78rem; font-weight: 600;
  background: var(--primary-dim); border: 1px solid rgba(0,245,255,0.2); color: var(--primary);
  transition: all .2s; text-decoration: none;
}
.related-tag:hover { background: rgba(0,245,255,0.2); }
.related-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }

/* ---- SCROLL PROGRESS BAR ---- */
#scroll-progress { position: fixed; top: 0; left: 0; height: 2px; z-index: 999; background: linear-gradient(90deg, var(--primary), #0dd); width: 0%; pointer-events: none; transition: width .1s linear; }

/* ---- BACK TO TOP ---- */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; width: 44px; height: 44px; border-radius: 50%; background: var(--primary-dim); border: 1px solid rgba(0,245,255,0.3); color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: rgba(0,245,255,0.25); box-shadow: 0 0 20px rgba(0,245,255,0.35); }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; align-items: center; gap: .4rem; padding: 5.5rem 2rem .75rem; max-width: 1280px; margin: 0 auto; font-size: .78rem; color: var(--fg-muted); }
.breadcrumb + .page-hero { padding-top: 1.25rem; }
.breadcrumb a { color: var(--fg-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .bc-sep { opacity: .35; }
.breadcrumb .bc-current { color: var(--fg); }

/* ---- HOW WE WORK ---- */
.how-we-work-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 3rem; background: var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 900px) { .how-we-work-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .how-we-work-steps { grid-template-columns: 1fr; } }
.step-item { background: var(--bg-card); padding: 2.5rem 1.75rem; text-align: center; transition: background .3s, transform .3s; }
.step-item:hover { background: rgba(0,245,255,0.04); transform: translateY(-2px); }
.step-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--primary); opacity: .18; line-height: 1; margin-bottom: .4rem; }
.step-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-dim); display: flex; align-items: center; justify-content: center; color: var(--primary); margin: 0 auto .9rem; }
.step-item h3 { font-family: var(--font-display); font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.step-item p { color: var(--fg-muted); font-size: .85rem; line-height: 1.6; }

/* ---- PARALLAX WRAP ---- */
.parallax-wrap { overflow: hidden; border-radius: var(--radius); margin-bottom: 3rem; border: 1px solid var(--border); }
.parallax-wrap .industry-hero-img { margin-bottom: 0; border-radius: 0; border: none; max-height: 560px; width: 100%; }

/* ---- SITE-WIDE CTA SECTION ---- */
.section-cta { background: linear-gradient(135deg, rgba(0,245,255,0.05) 0%, rgba(0,245,255,0.01) 100%); border-top: 1px solid var(--border); }
.cta-inner { max-width: 1280px; margin: 0 auto; padding: 5.5rem 2rem; text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.cta-inner > p { color: var(--fg-muted); font-size: 1rem; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER SOCIAL ---- */
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--fg-muted); transition: all .2s;
}
.footer-social-link:hover { background: var(--primary-dim); border-color: rgba(0,245,255,0.35); color: var(--primary); transform: translateY(-2px); }

/* ---- EXPERTISE PAGE ---- */
.stat-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(0,245,255,0.02); }
.stat-strip-inner { max-width: 1280px; margin: 0 auto; padding: 2rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: .5rem 3rem; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: .72rem; color: var(--fg-muted); margin-top: .35rem; text-transform: uppercase; letter-spacing: 1.5px; }
@media (max-width: 600px) { .stat-item { border-right: none; padding: .5rem 1.5rem; } }

.expertise-intro { max-width: 1280px; margin: 0 auto; padding: 3.5rem 2rem 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.expertise-intro-text h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: .6rem; }
.expertise-intro-text p { color: var(--fg-muted); font-size: .95rem; line-height: 1.7; max-width: 560px; }

.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-tab { padding: .45rem 1.1rem; border-radius: 99px; font-size: .8rem; font-weight: 600; border: 1px solid var(--border); color: var(--fg-muted); background: transparent; cursor: pointer; transition: all .2s; font-family: var(--font-body); }
.filter-tab:hover { border-color: rgba(0,245,255,0.4); color: var(--primary); }
.filter-tab.active { background: var(--primary-dim); border-color: rgba(0,245,255,0.5); color: var(--primary); box-shadow: 0 0 12px rgba(0,245,255,0.12); }
.filter-count { font-size: .72rem; color: var(--fg-muted); margin-top: .5rem; }
.exp-card.hidden { display: none; }

.card-industries { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; padding-top: .85rem; border-top: 1px solid var(--border); }
.ind-tag { font-size: .68rem; padding: 3px 10px; border-radius: 99px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--fg-muted); transition: all .2s; white-space: nowrap; }
.ind-tag:hover { background: var(--primary-dim); border-color: rgba(0,245,255,0.35); color: var(--primary); }

.expand-btn { display: flex; align-items: center; gap: .4rem; margin-top: .85rem; padding: 0; background: none; border: none; color: var(--primary); font-size: .8rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: opacity .2s; }
.expand-btn:hover { opacity: .75; }
.expand-btn .arrow { display: inline-block; transition: transform .25s; font-size: .65rem; }
.expand-btn.open .arrow { transform: rotate(180deg); }
.expand-body { max-height: 0; overflow: hidden; transition: max-height .35s ease, opacity .25s ease; opacity: 0; }
.expand-body.open { max-height: 400px; opacity: 1; }
.expand-body ul { list-style: none; margin-top: .85rem; display: flex; flex-direction: column; gap: .45rem; }
.expand-body ul li { font-size: .82rem; color: var(--fg-muted); line-height: 1.5; display: flex; gap: .5rem; align-items: flex-start; }
.expand-body ul li::before { content: '▸'; color: var(--primary); flex-shrink: 0; margin-top: 2px; font-size: .65rem; }

/* Custom cursor (desktop only) */
body.cursor-active { cursor: none; }
body.cursor-active a, body.cursor-active button, body.cursor-active [role="button"],
body.cursor-active .filter-tab, body.cursor-active .expand-btn, body.cursor-active label { cursor: none; }
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 7px; height: 7px;
  background: var(--primary); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--primary), 0 0 20px rgba(0,245,255,0.4);
  transition: transform .1s, opacity .2s, width .2s, height .2s;
  will-change: left, top;
}
.cursor-dot.clicking { transform: translate(-50%,-50%) scale(0.6); }
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px;
  border: 1.5px solid rgba(0,245,255,0.45); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, border-color .25s, background .25s, opacity .3s;
  will-change: left, top;
}
.cursor-ring.hovering {
  width: 52px; height: 52px;
  border-color: rgba(0,245,255,0.85);
  background: rgba(0,245,255,0.06);
  box-shadow: 0 0 16px rgba(0,245,255,0.15);
}
.cursor-ring.clicking { width: 28px; height: 28px; border-color: var(--primary); }
.cursor-dot.hidden, .cursor-ring.hidden { opacity: 0; }
