/* ===========================
   NEXISO — Global Stylesheet v2
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --ink: #0d0d12;
  --ink2: #3d3d4e;
  --ink3: #8888a0;
  --surface: #f7f7f5;
  --card: #ffffff;
  --accent: #1a3c6e;
  --accent-light: #2352a0;
  --accent2: #0bba7e;
  --accent2-dark: #089960;
  --border: #e4e2da;
  --border-light: #efefeb;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --nav-h: 80px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Bricolage Grotesque', sans-serif
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

button {
  font-family: inherit
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: var(--nav-h);
  background: rgba(247, 247, 245, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(228, 226, 218, 0.7);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.06)
}

.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink)
}

.nav-logo span {
  color: var(--accent2)
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center
}

.nav-links>li>a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap
}

.nav-links>li>a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04)
}

.nav-links>li>a.active {
  color: var(--accent);
  background: rgba(26, 60, 110, 0.06)
}

/* DROPDOWN — JS controlled */
.has-dropdown {
  position: relative
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 264px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.22s var(--ease), transform 0.25s var(--ease);
  z-index: 300;
}

.dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1)
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink2);
  transition: background 0.15s, color 0.15s;
  line-height: 1.3
}

.dropdown a:hover {
  background: var(--surface);
  color: var(--accent)
}

.dropdown-arrow {
  display: inline-block;
  font-size: 10px;
  transition: transform 0.22s var(--ease);
  opacity: 0.5
}

.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg)
}

.nav-cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(26, 60, 110, 0.25);
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 60, 110, 0.3)
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent
}

.hamburger:hover {
  background: rgba(0, 0, 0, 0.05)
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
  display: block
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card);
  z-index: 190;
  padding: 24px 5vw 40px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
}

.mobile-menu.open {
  transform: translateX(0)
}

.mobile-menu a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  display: block;
  transition: color 0.2s, padding-left 0.2s
}

.mobile-menu a:hover {
  color: var(--accent);
  padding-left: 6px
}

.mobile-menu .m-sub {
  font-size: 15px;
  font-weight: 500;
  padding: 11px 0 11px 20px;
  border: none;
  color: var(--ink2);
  font-family: 'Inter', sans-serif
}

.mobile-menu .m-sub:hover {
  color: var(--accent)
}

/* SCROLL PROGRESS */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 2px;
  background: var(--accent2);
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none
}

/* UTILITIES */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent2);
  border-radius: 2px;
  flex-shrink: 0
}

section {
  padding: 100px 5vw
}

/* BUTTONS */
.btn-primary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(26, 60, 110, 0.2);
  white-space: nowrap;
  cursor: pointer;
  border: none
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 60, 110, 0.28)
}

.btn-primary:active {
  transform: translateY(0)
}

.btn-secondary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap
}

.btn-secondary:hover {
  border-color: var(--ink2);
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-2px)
}

.btn-outline-white {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px)
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease)
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease)
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease)
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease)
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1)
}

.d1 {
  transition-delay: 0.08s
}

.d2 {
  transition-delay: 0.16s
}

.d3 {
  transition-delay: 0.24s
}

.d4 {
  transition-delay: 0.32s
}

.d5 {
  transition-delay: 0.40s
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8)
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  animation: pulse 2.5s ease-in-out infinite;
  display: inline-block
}

/* PAGE HERO */
.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 80px) 5vw 72px;
  background: var(--accent);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(11, 186, 126, 0.2) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.55)
}

.page-hero .section-label::before {
  background: rgba(255, 255, 255, 0.3)
}

.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 20px
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 560px
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.25)
}

/* SERVICE CARDS */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.svc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  pointer-events: none
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
  border-color: rgba(26, 60, 110, 0.18)
}

.svc-card:hover::before {
  transform: translateX(120%)
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px
}

.svc-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  line-height: 1.3
}

.svc-card p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 18px
}

.svc-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent)
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px
}

.svc-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(26, 60, 110, 0.07);
  color: var(--accent)
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.25s var(--ease)
}

.svc-link:hover {
  gap: 12px
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  overflow: hidden
}

.stat-item {
  background: var(--card);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease)
}

.stat-item:hover::after {
  transform: scaleX(1)
}

.stat-item:hover {
  background: #fff
}

.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1
}

.stat-num span {
  color: var(--accent2)
}

.stat-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.5
}

/* PROCESS STEPS */
.process-list {
  display: flex;
  flex-direction: column
}

.process-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 36px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
  transition: padding-left 0.3s
}

.process-step:last-child {
  border: none
}

.process-step:hover {
  padding-left: 8px
}

.step-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -2px;
  line-height: 1;
  padding-top: 2px;
  transition: color 0.3s
}

.process-step:hover .step-number {
  color: rgba(26, 60, 110, 0.15)
}

.step-body h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px
}

.step-body p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75
}

/* DARK SECTION */
.dark-section {
  background: #09090f;
  color: #fff;
  padding: 100px 5vw;
  position: relative;
  overflow: hidden
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 90% 20%, rgba(11, 186, 126, 0.08) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 10% 90%, rgba(26, 60, 110, 0.15) 0%, transparent 60%);
  pointer-events: none
}

.dark-section .section-label {
  color: var(--accent2)
}

.dark-section h2 {
  color: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
  position: relative;
  z-index: 1
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease)
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(11, 186, 126, 0.2);
  transform: translateY(-4px)
}

.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block
}

.why-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7
}

/* CTA BANNER */
.cta-banner {
  background: var(--accent);
  padding: 88px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: spin-slow 40s linear infinite
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: 60px;
  top: 20px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(11, 186, 126, 0.12);
  border-radius: 50%;
  animation: spin-slow 25s linear infinite reverse
}

.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  max-width: 560px;
  position: relative;
  z-index: 1
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
  max-width: 500px;
  position: relative;
  z-index: 1
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

/* FOOTER */
footer {
  background: #08080f;
  color: #666680;
  padding: 72px 5vw 36px;
  border-top: 1px solid #14141e
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px
}

.footer-brand .logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  display: block
}

.footer-brand .logo span {
  color: var(--accent2)
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 280px
}

.footer-col h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  margin-bottom: 11px
}

.footer-col ul li a {
  font-size: 13px;
  color: #666680;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px
}

.footer-bottom {
  border-top: 1px solid #14141e;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom p {
  font-size: 12px
}

/* CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05)
}

.form-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.5px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: 7px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.09)
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6
}

.form-submit {
  width: 100%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26, 60, 110, 0.2)
}

.form-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 60, 110, 0.25)
}

.form-submit:active {
  transform: translateY(0)
}

.form-note {
  font-size: 12px;
  color: var(--ink3);
  text-align: center;
  margin-top: 12px
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px
}

.cd-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s
}

.contact-detail:hover .cd-icon {
  background: rgba(26, 60, 110, 0.06);
  border-color: rgba(26, 60, 110, 0.2)
}

/* INDUSTRY CARDS */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.ind-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  background: var(--card);
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: default
}

.ind-card:hover {
  border-color: var(--accent2);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07)
}

.ind-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s
}

.ind-card:hover .ind-icon {
  transform: scale(1.12) rotate(-3deg)
}

.ind-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.1px
}

.ind-card p {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px;
  line-height: 1.4
}

/* ABOUT */
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0
}

.team-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px
}

.team-role {
  font-size: 13px;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 12px
}

.team-bio {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.75
}

.value-card {
  border-left: 3px solid var(--accent2);
  padding: 4px 0 4px 24px;
  margin-bottom: 40px
}

.value-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px
}

.value-card p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75
}

/* INDUSTRIES PAGE */
.industry-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light)
}

.industry-detail:last-child {
  border: none
}

.industry-detail.reverse .detail-text {
  order: 2
}

.industry-detail.reverse .detail-visual {
  order: 1
}

.detail-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.detail-icon {
  font-size: 52px;
  margin-bottom: 8px;
  display: block
}

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

.service-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(26, 60, 110, 0.07);
  color: var(--accent)
}

/* FAQ */
.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--border-light)
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light)
}

.faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px
}

.faq-a {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75
}

/* SERVICE INNER PAGES */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 18px
}

.info-card h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink3);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px
}

.check-list {
  list-style: none
}

.check-list li {
  font-size: 14px;
  color: var(--ink2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5
}

.check-list li:last-child {
  border: none
}

.check-list li::before {
  content: '✓';
  color: var(--accent2);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px
}

.vendor-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--ink2);
  transition: border-color 0.2s, color 0.2s
}

.vendor-pill:hover {
  border-color: var(--accent2);
  color: var(--accent)
}

.iso-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px
}

.iso-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--card);
  transition: border-color 0.2s, transform 0.3s var(--ease)
}

.iso-card:hover {
  border-color: var(--accent2);
  transform: translateY(-3px)
}

.iso-badge {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: -0.3px
}

.iso-card p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.65
}

/* RESPONSIVE TABLET */
@media(max-width:1024px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr
  }

  .why-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-row {
    grid-template-columns: 1fr 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .ind-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .two-col {
    gap: 48px
  }

  .industry-detail {
    gap: 48px
  }
}

/* RESPONSIVE MOBILE */
@media(max-width:768px) {
  :root {
    --nav-h: 70px
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  section {
    padding: 72px 5vw
  }

  /* .page-hero {
    min-height: 50vh;
    padding: calc(var(--nav-h)+60px) 5vw 56px
  } */

  .page-hero h1 {
    letter-spacing: -1px
  }

  .page-hero p {
    font-size: 16px
  }

  .page-hero::after {
    display: none
  }

  .svc-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 60px 5vw
  }

  .cta-banner::before,
  .cta-banner::after {
    display: none
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .process-step:hover {
    padding-left: 0
  }

  .step-number {
    font-size: 36px
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .industry-detail,
  .industry-detail.reverse {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .industry-detail.reverse .detail-text {
    order: 1
  }

  .industry-detail.reverse .detail-visual {
    order: 2
  }

  .team-card {
    flex-direction: column;
    gap: 20px
  }

  .iso-cards {
    grid-template-columns: 1fr
  }

  .vendor-grid {
    grid-template-columns: 1fr 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .stats-row {
    grid-template-columns: 1fr 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }
}

/* RESPONSIVE SMALL */
@media(max-width:480px) {
  .ind-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-row {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .cta-actions {
    flex-direction: column;
    width: 100%
  }

  .cta-actions a {
    text-align: center;
    justify-content: center;
    width: 100%
  }

  .form-card {
    padding: 28px 20px
  }

  .contact-wrap {
    gap: 36px
  }
}