/* ============================================
   Plutonic Tech — Shared Stylesheet
   ============================================ */

:root {
  --blue: #1D88B6;
  --cyan: #00ADEB;
  --orange: #FFAA01;
  --red: #D2232A;
  --navy: #071A24;
  --surface: #0F2B3A;
  --surface-2: #133447;
  --bg-light: #F7FAFC;
  --white: #FFFFFF;
  --border: #D9E4EC;
  --border-dark: rgba(255, 255, 255, 0.08);
  --text-dark: #102A43;
  --text-muted: #627D98;
  --text-on-dark: rgba(255, 255, 255, 0.78);
  --text-on-dark-muted: rgba(255, 255, 255, 0.55);

  --gradient-tech: linear-gradient(135deg, #1D88B6 0%, #00ADEB 100%);
  --gradient-cta: linear-gradient(135deg, #FFAA01 0%, #D2232A 100%);
  --gradient-hero: linear-gradient(135deg, #071A24 0%, #0F2B3A 100%);

  --shadow-sm: 0 2px 8px rgba(7, 26, 36, 0.06);
  --shadow-md: 0 10px 30px rgba(7, 26, 36, 0.08);
  --shadow-lg: 0 20px 50px rgba(7, 26, 36, 0.12);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-cyan: 0 16px 40px rgba(0, 173, 235, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* On dark pages */
body.dark { background: var(--navy); color: var(--text-on-dark); }
body.dark h1, body.dark h2, body.dark h3, body.dark h4, body.dark h5 { color: var(--white); }

section { padding: 120px 0; position: relative; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 173, 235, 0.8);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.2s ease;
}
.cursor-ring.hover {
  width: 64px; height: 64px;
  background: rgba(0, 173, 235, 0.08);
  border-color: var(--cyan);
}
.cursor-ring.click {
  width: 30px; height: 30px;
  background: rgba(0, 173, 235, 0.4);
}
.cursor-ring.text {
  width: 6px; height: 32px;
  border-radius: 2px;
  background: var(--cyan);
  border: none;
}
.cursor-dot.hidden, .cursor-ring.hidden { opacity: 0; }

/* Hide cursor on touch devices */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  * { cursor: auto !important; }
}
html, body, a, button, [data-cursor] { cursor: none; }
@media (hover: hover) {
  html, body, a, button, input, textarea, select, [data-cursor] { cursor: none; }
}

/* ============================================
   REUSABLE COMPONENTS
   ============================================ */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.overline::before {
  content: "";
  width: 28px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.overline.cyan { color: var(--cyan); }
.overline.orange { color: var(--orange); }

.section-title {
  font-size: clamp(34px, 4vw, 52px);
  max-width: 760px;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 64px;
}
body.dark .section-sub { color: var(--text-on-dark-muted); }

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head-row .section-sub { margin-bottom: 0; }
.section-head-row .section-title { margin-bottom: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px; font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn-cta {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(210, 35, 42, 0.28);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(210, 35, 42, 0.38); }
.btn-primary {
  background: var(--gradient-tech);
  color: var(--white);
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0, 173, 235, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.6); }
.btn-outline {
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
body.dark .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}
body.dark .btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0, 173, 235, 0.06); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 26, 36, 0.78);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease;
}
.navbar.scrolled { background: rgba(7, 26, 36, 0.94); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gradient-tech);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: var(--shadow-cyan);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  bottom: -2px; right: -2px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid var(--navy);
}
.logo-text { display: inline-flex; align-items: baseline; gap: 3px; }
.logo-dot { color: var(--cyan); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px; font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--cyan); }

.nav-cta-wrap { display: flex; align-items: center; gap: 16px; }
.nav-burger { display: none; color: white; font-size: 26px; }

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  position: relative;
  padding: 180px 0 100px;
  background: var(--gradient-hero);
  color: var(--white);
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 173, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 173, 235, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 70%);
}
.page-header::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 173, 235, 0.18), transparent 60%);
  top: -300px; right: -200px;
  filter: blur(60px);
}
.page-header-inner { position: relative; z-index: 2; max-width: 760px; }
.page-header h1 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 20px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  max-width: 600px;
}
.crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.crumbs a { opacity: 0.7; transition: opacity 0.25s ease; }
.crumbs a:hover { opacity: 1; }
.crumbs i { font-size: 14px; opacity: 0.5; }

/* ============================================
   STAGGERED FADE-UP
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.25s; }
.fade-up.d3 { animation-delay: 0.4s; }
.fade-up.d4 { animation-delay: 0.55s; }
.fade-up.d5 { animation-delay: 0.7s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px; line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition: all 0.25s ease;
}
.footer-socials a:hover {
  background: var(--gradient-tech);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-col h5 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-family: 'Inter';
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
  font-size: 14px;
  transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
  background: linear-gradient(135deg, #00ADEB 0%, #6FD9FF 60%, #1D88B6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 140px 0 80px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .navbar .btn-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-header { padding: 120px 0 60px; }
}

/* ============================================
   HOME PAGE
   Moved from resources/views/pages/index.blade.php
   ============================================ */
/* ============================================
     SEAMLESS HOME — one continuous dark canvas
     ============================================ */
  body { background: var(--navy); color: var(--text-on-dark); }
  body { position: relative; }
  body::before {
    content: "";
    position: fixed; inset: 0;
    z-index: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 8%, rgba(0, 173, 235, 0.18), transparent 60%),
      radial-gradient(ellipse 70% 50% at 20% 30%, rgba(0, 173, 235, 0.10), transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 60%, rgba(255, 170, 1, 0.07), transparent 60%),
      radial-gradient(ellipse 70% 60% at 10% 85%, rgba(29, 136, 182, 0.14), transparent 60%),
      linear-gradient(180deg, #071A24 0%, #0A2230 50%, #071A24 100%);
    pointer-events: none;
  }
  body::after {
    content: "";
    position: fixed; inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(0, 173, 235, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 173, 235, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 6%, black 94%, transparent 100%);
  }
  main, .navbar, .footer { position: relative; z-index: 2; }

  /* All sections transparent — single flow */
  section { padding: 120px 0; background: transparent; }

  h1, h2, h3, h4, h5 { color: var(--white); }
  .section-sub { color: var(--text-on-dark-muted); }

  /* HERO */
  .hero {
    min-height: 100vh;
    position: relative;
    padding: 160px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-mesh {
    position: absolute; inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(0, 173, 235, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 173, 235, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: meshDrift 30s linear infinite;
    mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%);
  }
  @keyframes meshDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(60px, 60px); }
  }

  .hero-inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(0, 173, 235, 0.12);
    border: 1px solid rgba(0, 173, 235, 0.3);
    font-size: 13px; font-weight: 500;
    color: var(--cyan);
    margin-bottom: 28px;
  }
  .hero-pill .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }
  .hero h1 {
    font-size: clamp(48px, 6.5vw, 78px);
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.05;
  }
  .hero-sub {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    max-width: 560px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 72px;
    max-width: 600px;
  }
  .hero-stat .num {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
  }
  .hero-stat .num span { color: var(--cyan); }
  .hero-stat .lbl {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
  }

  .hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 480px;
    margin-left: auto;
  }
  .hero-orb {
    position: absolute; inset: 12% 12%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #00ADEB 0%, #1D88B6 40%, #071A24 90%);
    box-shadow:
      0 0 80px rgba(0, 173, 235, 0.5),
      inset -30px -50px 100px rgba(0, 0, 0, 0.6),
      inset 30px 30px 80px rgba(0, 173, 235, 0.3);
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  .hero-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(0, 173, 235, 0.3);
    animation: spin 40s linear infinite;
  }
  .hero-ring.r2 {
    inset: 8%;
    border-color: rgba(255, 170, 1, 0.18);
    animation-duration: 28s;
    animation-direction: reverse;
  }
  @keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
  }
  .hero-chip {
    position: absolute;
    background: rgba(15, 43, 58, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-dark);
    color: white;
    font-size: 13px;
    font-weight: 500;
  }
  .hero-chip i { color: var(--cyan); font-size: 18px; }
  .hero-chip.c1 { top: 8%; left: -10%; animation: float 5s ease-in-out infinite; }
  .hero-chip.c2 { top: 38%; right: -12%; animation: float 7s ease-in-out infinite 0.5s; }
  .hero-chip.c3 { bottom: 12%; left: 0%; animation: float 6s ease-in-out infinite 1s; }
  .hero-chip.c2 i { color: var(--orange); }
  .hero-chip.c3 i { color: #6FD9FF; }

  .scroll-indicator {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    color: var(--orange);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
    z-index: 3;
  }
  .scroll-indicator i { font-size: 22px; }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
  }

  /* DARK CARDS shared style */
  .card-dark {
    background: rgba(15, 43, 58, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow: var(--shadow-dark);
    transition: all 0.25s ease;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .service-card {
    position: relative;
    background: rgba(15, 43, 58, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.25s ease;
    overflow: hidden;
  }
  .service-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--cyan);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    background: rgba(15, 43, 58, 0.85);
    border-color: rgba(0, 173, 235, 0.3);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  }
  .service-card:hover::before { transform: scaleY(1); }
  .service-card:hover .service-icon {
    background: var(--gradient-tech);
    color: var(--white);
  }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(0, 173, 235, 0.12);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.25s ease;
  }
  .service-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
  }
  .service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
  }
  .service-card .arrow {
    position: absolute;
    top: 32px; right: 32px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: all 0.25s ease;
  }
  .service-card:hover .arrow {
    opacity: 1;
    transform: translate(0, 0);
    color: var(--cyan);
  }

  /* PROCESS */
  .stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
  }
  .stepper::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 7.14%; right: 7.14%;
    border-top: 2px dashed rgba(0, 173, 235, 0.35);
    z-index: 0;
  }
  .step {
    position: relative;
    z-index: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .step.in { opacity: 1; transform: translateY(0); }
  .step-circle {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--cyan);
    color: var(--white);
    display: grid; place-items: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 0 0 6px var(--navy), 0 8px 20px rgba(0, 173, 235, 0.18);
    transition: all 0.25s ease;
  }
  .step:hover .step-circle {
    background: var(--gradient-tech);
    border-color: transparent;
    transform: scale(1.08);
  }
  .step h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--white);
  }
  .step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
  }

  /* TOOLKIT - bento */
  .bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
  }
  .bento-card {
    background: rgba(15, 43, 58, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 173, 235, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }
  .bento-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 6px;
  }
  .bento-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 18px;
  }
  .bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
  }
  .bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s ease;
  }
  .bento-tag:hover {
    background: rgba(0, 173, 235, 0.15);
    border-color: rgba(0, 173, 235, 0.4);
    color: var(--cyan);
  }
  .bento-tag i { font-size: 14px; color: var(--cyan); }
  .bento-card.span2 { grid-column: span 2; }
  .bento-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--gradient-tech);
    display: grid; place-items: center;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 16px;
  }
  .bento-card.accent .bento-icon { background: var(--gradient-cta); }

  /* WHY US — also dark */
  .why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .why-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    background:
      radial-gradient(circle at 30% 20%, rgba(0, 173, 235, 0.18), transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 170, 1, 0.10), transparent 50%),
      rgba(15, 43, 58, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    padding: 32px;
  }
  .why-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(0, 173, 235, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 173, 235, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .why-card-stack {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
  .mini-card {
    background: rgba(15, 43, 58, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
  }
  .mini-card .mc-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(0, 173, 235, 0.15);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .mini-card .mc-icon.orange {
    background: rgba(255, 170, 1, 0.15);
    color: var(--orange);
  }
  .mini-card h4 { font-size: 15px; margin-bottom: 2px; color: var(--white); }
  .mini-card p { font-size: 12px; color: rgba(255, 255, 255, 0.55); margin: 0; }
  .mini-card.offset { margin-left: 40px; }
  .mini-card.offset2 { margin-left: 80px; }

  .why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }
  .why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .why-list .tick {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0, 173, 235, 0.15);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 18px;
  }
  .why-list h4 { font-size: 18px; margin-bottom: 4px; color: var(--white); }
  .why-list p { color: rgba(255, 255, 255, 0.6); font-size: 15px; margin: 0; }

  /* STATS - integrated into flow */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .stat {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 24px;
  }
  .stat:last-child { border-right: none; }
  .stat .num {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, #00ADEB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
  }
  .stat .lbl {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }

  /* TESTIMONIALS */
  .tt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .tt-card {
    background: rgba(15, 43, 58, 0.55);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .tt-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 173, 235, 0.25);
    background: rgba(15, 43, 58, 0.8);
  }
  .tt-quote-mark {
    font-size: 48px;
    line-height: 1;
    color: var(--cyan);
    font-family: 'Sora';
    margin-bottom: 8px;
  }
  .tt-card blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    flex: 1;
  }
  .tt-stars {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: 16px;
    letter-spacing: 2px;
  }
  .tt-person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .tt-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-tech);
    display: grid; place-items: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Sora';
  }
  .tt-person h5 { font-size: 14px; margin-bottom: 2px; font-family: 'Sora'; color: var(--white); }
  .tt-person p { font-size: 12px; color: rgba(255, 255, 255, 0.5); margin: 0; }

  /* CTA BAND */
  .cta-band {
    padding: 60px 0 120px;
  }
  .cta-band-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 43, 58, 0.85), rgba(7, 26, 36, 0.85));
    border: 1px solid rgba(0, 173, 235, 0.25);
    border-radius: 32px;
    padding: 72px 56px;
    overflow: hidden;
    text-align: center;
    color: var(--white);
    backdrop-filter: blur(12px);
  }
  .cta-band-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(0, 173, 235, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 173, 235, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  .cta-band-inner::after {
    content: "";
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 173, 235, 0.25), transparent 65%);
    top: -250px; right: -150px;
    filter: blur(60px);
  }
  .cta-band h2 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  .cta-band p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }
  .cta-ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { max-width: 360px; margin: 0 auto; }
    .services-grid, .tt-grid { grid-template-columns: repeat(2, 1fr); }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .why-inner { grid-template-columns: 1fr; gap: 48px; }
    .stepper {
      grid-template-columns: repeat(7, minmax(180px, 1fr));
      overflow-x: auto;
      padding-bottom: 16px;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 16px; }
    .stat { border-right: none; }
  }
  @media (max-width: 640px) {
    .hero { padding: 130px 0 60px; min-height: auto; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .services-grid, .tt-grid { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-card.span2 { grid-column: span 1; }
    .cta-band-inner { padding: 48px 28px; }
  }

/* ============================================
   ABOUT PAGE
   Moved from resources/views/pages/about.blade.php
   ============================================ */
body { background: var(--bg-light); }

  /* INTRO */
  .intro { background: var(--white); }
  .intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .intro h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 24px; }
  .intro p { font-size: 17px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.75; }
  .intro-visual {
    aspect-ratio: 4/5;
    border-radius: 24px;
    background:
      radial-gradient(circle at 30% 20%, rgba(0, 173, 235, 0.25), transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 170, 1, 0.18), transparent 50%),
      var(--gradient-hero);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    padding: 32px;
  }
  .intro-visual::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0, 173, 235, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 173, 235, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .iv-stack {
    position: relative; height: 100%;
    display: flex; flex-direction: column; gap: 16px;
    justify-content: center;
  }
  .iv-card {
    background: rgba(15, 43, 58, 0.92);
    color: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px; padding: 20px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }
  .iv-card .ic {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(0, 173, 235, 0.18);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .iv-card .ic.orange { background: rgba(255, 170, 1, 0.18); color: var(--orange); }
  .iv-card h4 { font-size: 16px; margin-bottom: 2px; color: white; font-family: 'Sora'; }
  .iv-card p { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin: 0; }
  .iv-card.offset { margin-left: 32px; }
  .iv-card.offset2 { margin-left: 64px; }

  /* VALUES */
  .values { background: var(--bg-light); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
  }
  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 173, 235, 0.3);
  }
  .value-num {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--cyan);
    margin-bottom: 16px;
    letter-spacing: 0.2em;
  }
  .value-card h3 { font-size: 22px; margin-bottom: 12px; }
  .value-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

  /* TIMELINE */
  .timeline-section { background: var(--white); }
  .timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 130px; top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan), rgba(0, 173, 235, 0.1));
    border-radius: 2px;
  }
  .tl-row {
    display: grid;
    grid-template-columns: 100px 80px 1fr;
    gap: 32px;
    margin-bottom: 56px;
    align-items: flex-start;
  }
  .tl-year {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
    padding-top: 4px;
  }
  .tl-dot {
    position: relative;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--cyan);
    margin: 8px auto 0;
    box-shadow: 0 0 0 6px var(--white), 0 0 0 7px rgba(0, 173, 235, 0.2);
  }
  .tl-content {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
  }
  .tl-content:hover {
    border-color: rgba(0, 173, 235, 0.3);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
  }
  .tl-content h3 { font-size: 19px; margin-bottom: 6px; }
  .tl-content p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

  /* TEAM */
  .team-section { background: var(--bg-light); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0, 173, 235, 0.3); }
  .team-photo {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #1D88B6 0%, #00ADEB 100%);
    position: relative;
    overflow: hidden;
    display: grid; place-items: center;
    color: white;
    font-family: 'Sora'; font-weight: 700; font-size: 48px;
  }
  .team-photo::after {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  .team-card:nth-child(2n) .team-photo { background: linear-gradient(135deg, #071A24 0%, #1D88B6 100%); }
  .team-card:nth-child(3n) .team-photo { background: linear-gradient(135deg, #FFAA01 0%, #D2232A 100%); }
  .team-card:nth-child(4n) .team-photo { background: linear-gradient(135deg, #00ADEB 0%, #071A24 100%); }
  .team-body { padding: 20px 22px; }
  .team-body h4 { font-size: 17px; margin-bottom: 2px; }
  .team-body p { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }
  .team-socials {
    display: flex; gap: 8px;
  }
  .team-socials a {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: var(--bg-light);
    display: grid; place-items: center;
    color: var(--text-muted); font-size: 14px;
    transition: all 0.25s ease;
  }
  .team-socials a:hover { background: var(--cyan); color: white; }

  /* CULTURE PILLARS */
  .culture-section { background: var(--navy); color: white; }
  .culture-section h2 { color: white; }
  .culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .culture-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px;
    display: flex; gap: 24px;
    transition: all 0.25s ease;
  }
  .culture-card:hover {
    background: var(--surface-2);
    border-color: rgba(0, 173, 235, 0.3);
    transform: translateY(-4px);
  }
  .culture-card .ic {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gradient-tech);
    display: grid; place-items: center;
    color: white; font-size: 28px;
  }
  .culture-card:nth-child(even) .ic { background: var(--gradient-cta); }
  .culture-card h3 { font-size: 22px; margin-bottom: 10px; color: white; }
  .culture-card p { color: rgba(255, 255, 255, 0.65); font-size: 15px; line-height: 1.65; }

  /* PRESS / LOGOS */
  .press-section { background: var(--white); }
  .press-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
  }
  .press-logo {
    aspect-ratio: 3/1;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: grid; place-items: center;
    color: var(--text-muted);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.02em;
    transition: all 0.25s ease;
  }
  .press-logo:hover { background: var(--white); border-color: var(--cyan); color: var(--cyan); transform: scale(1.04); }

  /* CTA */
  .cta { background: var(--bg-light); padding-top: 60px; padding-bottom: 120px; }
  .cta-inner {
    background: var(--gradient-hero);
    color: white;
    border-radius: 32px;
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-inner::before {
    content: "";
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 173, 235, 0.25), transparent 65%);
    top: -250px; right: -150px;
    filter: blur(60px);
  }
  .cta-inner h2 { color: white; font-size: clamp(28px, 3vw, 42px); margin-bottom: 16px; position: relative; z-index: 1; }
  .cta-inner p { color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; font-size: 17px; position: relative; z-index: 1; }
  .cta-inner .btns { display: flex; gap: 14px; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }

  @media (max-width: 1024px) {
    .intro-inner { grid-template-columns: 1fr; gap: 48px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .culture-grid { grid-template-columns: 1fr; }
    .press-grid { grid-template-columns: repeat(3, 1fr); }
    .timeline::before { left: 14px; }
    .tl-row { grid-template-columns: 40px 1fr; gap: 16px; }
    .tl-year { grid-column: 1 / span 2; padding-top: 0; margin-bottom: 8px; font-size: 18px; }
    .tl-dot { width: 18px; height: 18px; margin: 4px 0 0; }
  }
  @media (max-width: 640px) {
    .values-grid, .team-grid { grid-template-columns: 1fr; }
    .press-grid { grid-template-columns: repeat(2, 1fr); }
    .culture-card { flex-direction: column; padding: 28px; }
    .cta-inner { padding: 48px 28px; }
  }

/* ============================================
   SERVICES PAGE
   Moved from resources/views/pages/services.blade.php
   ============================================ */
body { background: var(--white); }

  /* SERVICE INDEX (jump bar) */
  .svc-jump {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: sticky; top: 71px; z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(247, 250, 252, 0.92);
  }
  .svc-jump-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .svc-jump a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 13px; font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    transition: all 0.25s ease;
  }
  .svc-jump a:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-1px); }
  .svc-jump a.active { background: var(--gradient-tech); color: white; border-color: transparent; }
  .svc-jump a i { font-size: 15px; }

  /* SERVICE DETAIL — alternating layout */
  .svc-detail {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .svc-detail:nth-child(even) { background: var(--bg-light); }
  .svc-detail:nth-child(odd) { background: var(--white); }
  .svc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .svc-detail:nth-child(even) .svc-inner { direction: rtl; }
  .svc-detail:nth-child(even) .svc-text,
  .svc-detail:nth-child(even) .svc-illus { direction: ltr; }

  .svc-text {
    max-width: 540px;
  }
  .svc-icon-big {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--gradient-tech);
    color: white;
    display: grid; place-items: center;
    font-size: 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-cyan);
  }
  .svc-detail:nth-child(3n) .svc-icon-big { background: var(--gradient-cta); box-shadow: 0 16px 40px rgba(210, 35, 42, 0.22); }
  .svc-text h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 16px; }
  .svc-text > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
  }
  .svc-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-bottom: 32px;
  }
  .svc-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
  }
  .svc-features i {
    color: var(--cyan); font-size: 18px; flex-shrink: 0;
    margin-top: 2px;
  }
  .svc-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 32px;
  }
  .svc-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 173, 235, 0.08);
    border: 1px solid rgba(0, 173, 235, 0.2);
    border-radius: 8px;
    font-size: 12px; font-weight: 500;
    color: var(--blue);
  }
  .svc-tag i { font-size: 14px; }
  .svc-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  /* SERVICE ILLUSTRATION (right-side panel) */
  .svc-illus {
    aspect-ratio: 1/1;
    border-radius: 24px;
    background:
      radial-gradient(circle at 30% 20%, rgba(0, 173, 235, 0.2), transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 170, 1, 0.12), transparent 50%),
      var(--gradient-hero);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    padding: 40px;
    box-shadow: var(--shadow-md);
  }
  .svc-illus::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0, 173, 235, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 173, 235, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .illus-stack {
    position: relative; height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; gap: 14px;
  }
  .illus-card {
    background: rgba(15, 43, 58, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 18px;
    color: white;
    display: flex; align-items: center; gap: 12px;
    font-size: 13px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }
  .illus-card .il-ic {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(0, 173, 235, 0.18);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .illus-card .il-ic.orange { background: rgba(255, 170, 1, 0.18); color: var(--orange); }
  .illus-card h5 { font-size: 13px; margin-bottom: 1px; font-family: 'Sora'; color: white; }
  .illus-card p { font-size: 11px; color: rgba(255, 255, 255, 0.55); margin: 0; }
  .illus-card.offset { margin-left: 32px; }
  .illus-card.offset2 { margin-left: 64px; }
  .illus-tag-row {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 4px;
  }
  .illus-mini-tag {
    padding: 4px 10px;
    background: rgba(0, 173, 235, 0.15);
    border: 1px solid rgba(0, 173, 235, 0.3);
    border-radius: 6px;
    font-size: 10px; color: var(--cyan);
    font-weight: 500;
  }

  /* PROCESS RECAP */
  .process-recap {
    background: var(--navy);
    color: white;
    padding: 120px 0;
  }
  .process-recap h2 { color: white; }
  .recap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .recap-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s ease;
  }
  .recap-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 173, 235, 0.3);
    background: var(--surface-2);
  }
  .recap-num {
    font-family: 'Sora'; font-weight: 700;
    font-size: 14px;
    color: var(--cyan);
    margin-bottom: 12px;
    letter-spacing: 0.2em;
  }
  .recap-card h4 { font-size: 18px; margin-bottom: 8px; color: white; }
  .recap-card p { color: rgba(255, 255, 255, 0.6); font-size: 13px; line-height: 1.55; }

  /* DELIVERABLES STRIP */
  .deliverables {
    background: var(--bg-light);
    padding: 120px 0;
  }
  .deliv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .deliv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.25s ease;
  }
  .deliv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 173, 235, 0.3);
  }
  .deliv-card .di {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0, 173, 235, 0.1);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .deliv-card h4 { font-size: 18px; margin-bottom: 10px; }
  .deliv-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
  .deliv-card ul {
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
  }
  .deliv-card ul li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-dark);
  }
  .deliv-card ul li i { color: var(--cyan); font-size: 16px; }

  /* CTA */
  .svc-cta {
    background: var(--white);
    padding: 60px 0 120px;
  }
  .svc-cta-inner {
    background: var(--gradient-hero);
    color: white;
    border-radius: 32px;
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .svc-cta-inner::before {
    content: "";
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 173, 235, 0.25), transparent 65%);
    top: -250px; left: -150px;
    filter: blur(60px);
  }
  .svc-cta-inner h2 { color: white; font-size: clamp(28px, 3vw, 42px); margin-bottom: 16px; position: relative; z-index: 1; }
  .svc-cta-inner p { color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; font-size: 17px; position: relative; z-index: 1; }
  .svc-cta-inner .btns { display: flex; gap: 14px; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }

  @media (max-width: 1024px) {
    .svc-inner { grid-template-columns: 1fr; gap: 48px; }
    .svc-detail:nth-child(even) .svc-inner { direction: ltr; }
    .recap-grid { grid-template-columns: repeat(2, 1fr); }
    .deliv-grid { grid-template-columns: 1fr; }
    .svc-jump { top: 70px; }
  }
  @media (max-width: 640px) {
    .svc-features { grid-template-columns: 1fr; }
    .recap-grid { grid-template-columns: 1fr; }
    .svc-cta-inner { padding: 48px 28px; }
  }

/* ============================================
   RESOURCES PAGE
   Moved from resources/views/pages/resources.blade.php
   ============================================ */
body { background: var(--white); }

  /* SEARCH + FILTERS */
  .filters {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }
  .filters-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .search-box {
    flex: 1;
    min-width: 280px;
    position: relative;
  }
  .search-box i {
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 20px;
  }
  .search-box input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.25s ease;
    color: var(--text-dark);
  }
  .search-box input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 173, 235, 0.15);
  }
  .filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .filter-pill {
    padding: 10px 16px;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 13px; font-weight: 500;
    color: var(--text-dark);
    transition: all 0.25s ease;
  }
  .filter-pill:hover { border-color: var(--cyan); color: var(--cyan); }
  .filter-pill.active {
    background: var(--gradient-tech);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-cyan);
  }

  /* FEATURED RESOURCE */
  .featured { background: var(--white); padding: 100px 0 60px; }
  .featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    cursor: pointer;
  }
  .featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 173, 235, 0.3);
  }
  .featured-thumb {
    background: var(--gradient-hero);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    display: grid; place-items: center;
    color: white;
  }
  .featured-thumb::after {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0, 173, 235, 0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 173, 235, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  .ft-glyph {
    width: 120px; height: 120px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    display: grid; place-items: center;
    color: white; font-size: 60px;
    position: relative; z-index: 2;
  }
  .featured-body {
    padding: 48px;
    display: flex; flex-direction: column;
    justify-content: center;
  }
  .featured-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 170, 1, 0.12);
    color: var(--orange);
    border: 1px solid rgba(255, 170, 1, 0.3);
    border-radius: 100px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: 20px;
    width: fit-content;
  }
  .featured-body h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .featured-body p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.65;
  }
  .featured-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .featured-meta-item { display: flex; align-items: center; gap: 6px; }
  .featured-meta-item i { color: var(--cyan); font-size: 16px; }

  /* ARTICLES GRID */
  .articles { background: var(--white); padding: 60px 0 100px; }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    cursor: pointer;
    display: flex; flex-direction: column;
  }
  .article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 173, 235, 0.3);
  }
  .article-thumb {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    display: grid; place-items: center;
  }
  .article-thumb::after {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
  }
  .article-glyph {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    display: grid; place-items: center;
    color: white; font-size: 36px;
    position: relative; z-index: 2;
  }
  .article-thumb.t1 { background: linear-gradient(135deg, #071A24, #1D88B6); }
  .article-thumb.t2 { background: linear-gradient(135deg, #1D88B6, #00ADEB); }
  .article-thumb.t3 { background: linear-gradient(135deg, #FFAA01, #D2232A); }
  .article-thumb.t4 { background: linear-gradient(135deg, #0F2B3A, #00ADEB); }
  .article-thumb.t5 { background: linear-gradient(135deg, #071A24, #FFAA01); }
  .article-thumb.t6 { background: linear-gradient(135deg, #00ADEB, #071A24); }

  .article-tag {
    position: absolute;
    top: 16px; left: 16px; z-index: 3;
    padding: 5px 11px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
  }
  .article-body {
    padding: 24px;
    flex: 1;
    display: flex; flex-direction: column;
  }
  .article-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .article-card h3 {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .article-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
  }
  .article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .author {
    display: flex; align-items: center; gap: 10px;
  }
  .author-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--gradient-tech);
    display: grid; place-items: center;
    color: white; font-weight: 600; font-size: 12px;
    font-family: 'Sora';
  }
  .author-name { font-size: 12px; color: var(--text-dark); font-weight: 500; }
  .read-arrow {
    color: var(--cyan);
    transition: transform 0.25s ease;
  }
  .article-card:hover .read-arrow { transform: translateX(4px); }

  /* CASE STUDIES STRIP */
  .cases {
    background: var(--navy);
    color: white;
    padding: 120px 0;
  }
  .cases h2 { color: white; }
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .case-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.25s ease;
    cursor: pointer;
  }
  .case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 173, 235, 0.3);
    background: var(--surface-2);
  }
  .case-brand {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: var(--cyan);
    margin-bottom: 16px;
  }
  .case-card h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .case-card > p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .case-metric .v {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
  }
  .case-metric .v.cyan { color: var(--cyan); }
  .case-metric .v.orange { color: var(--orange); }
  .case-metric .l {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* NEWSLETTER */
  .newsletter {
    background: var(--bg-light);
    padding: 100px 0;
  }
  .newsletter-inner {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    box-shadow: var(--shadow-sm);
  }
  .newsletter h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 14px; }
  .newsletter > p { color: var(--text-muted); font-size: 16px; line-height: 1.65; }
  .newsletter-form {
    display: flex;
    gap: 10px;
  }
  .newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.25s ease;
  }
  .newsletter-form input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 173, 235, 0.15);
  }
  .newsletter-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
  }
  .newsletter-stat {
    display: flex; align-items: center; gap: 10px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .newsletter-stat i { color: var(--cyan); font-size: 18px; }

  /* TOPICS */
  .topics {
    background: var(--white);
    padding: 100px 0;
  }
  .topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .topic-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s ease;
    cursor: pointer;
  }
  .topic-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    border-color: rgba(0, 173, 235, 0.3);
    box-shadow: var(--shadow-md);
  }
  .topic-card .ti {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(0, 173, 235, 0.1);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
  }
  .topic-card h4 { font-size: 17px; margin-bottom: 6px; }
  .topic-card p { color: var(--text-muted); font-size: 13px; }
  .topic-count {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
    display: inline-flex; align-items: center; gap: 4px;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .featured-card { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: 1fr; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px; }
    .topics-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .articles-grid, .topics-grid { grid-template-columns: 1fr; }
    .featured-body { padding: 32px; }
    .newsletter-inner { padding: 32px; }
    .newsletter-form { flex-direction: column; }
    .case-metrics { grid-template-columns: 1fr; gap: 12px; }
    .case-card { padding: 28px; }
  }

/* ============================================
   CONTACT PAGE
   Moved from resources/views/pages/contact.blade.php
   ============================================ */
body { background: var(--white); }

  /* CONTACT MAIN */
  .contact-main { background: var(--white); padding: 100px 0; }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: flex-start;
  }
  .contact-info h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 16px;
  }
  .contact-info > p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  /* Channel cards */
  .channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
  }
  .channel {
    display: flex;
    gap: 16px;
    background: var(--bg-light);
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
    align-items: flex-start;
  }
  .channel:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 173, 235, 0.3);
    background: var(--white);
  }
  .ch-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0, 173, 235, 0.1);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 24px;
  }
  .ch-icon.orange { background: rgba(255, 170, 1, 0.15); color: var(--orange); }
  .channel h4 { font-size: 15px; margin-bottom: 4px; }
  .channel .ch-value {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-family: 'Sora';
    font-weight: 600;
  }
  .channel p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
  }

  /* Office hours card */
  .hours-card {
    background: var(--navy);
    color: white;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
  }
  .hours-card::after {
    content: "";
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 173, 235, 0.18), transparent 60%);
    top: -150px; right: -100px;
    filter: blur(30px);
    pointer-events: none;
  }
  .hours-card h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 17px;
    display: flex; align-items: center; gap: 10px;
    position: relative; z-index: 1;
  }
  .hours-card h4 i { color: var(--cyan); font-size: 22px; }
  .hours-card .live {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    color: var(--cyan);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative; z-index: 1;
  }
  .hours-card .live .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }
  .hours-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
    position: relative; z-index: 1;
  }
  .hours-list li {
    display: flex; justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
  .hours-list .day { color: white; font-weight: 500; }
  .hours-list .closed { color: rgba(255, 255, 255, 0.4); }

  /* CONTACT FORM */
  .contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
  }
  .form-step-tracker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
  }
  .form-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.25s ease;
  }
  .form-step.active { color: var(--text-dark); }
  .form-step.done { color: var(--cyan); }
  .form-step .num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    display: grid; place-items: center;
    font-weight: 700; font-size: 12px;
    transition: all 0.25s ease;
    font-family: 'Sora';
  }
  .form-step.active .num {
    background: var(--gradient-tech);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-cyan);
  }
  .form-step.done .num {
    background: var(--cyan);
    color: white;
    border-color: transparent;
  }
  .form-step-divider {
    flex: 1; height: 1.5px;
    background: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .form-step-divider::after {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--cyan);
    transition: width 0.4s ease;
  }
  .form-step-divider.done::after { width: 100%; }

  /* Form panels */
  .form-panel {
    display: none;
    animation: slideIn 0.3s ease;
  }
  .form-panel.active { display: block; }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(8px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-field.full { grid-column: span 2; }
  .form-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
  }
  .form-field label .req { color: var(--red); }
  .form-field input,
  .form-field textarea,
  .form-field select {
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.25s ease;
    width: 100%;
  }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 173, 235, 0.15);
  }
  .form-field textarea {
    min-height: 130px;
    resize: vertical;
    font-family: inherit;
  }

  /* SVG OPTIONS — service / budget pickers */
  .opt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .opt-card {
    position: relative;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .opt-card:hover { border-color: rgba(0, 173, 235, 0.4); background: var(--bg-light); }
  .opt-card.selected {
    border-color: var(--cyan);
    background: rgba(0, 173, 235, 0.06);
    box-shadow: 0 0 0 3px rgba(0, 173, 235, 0.12);
  }
  .opt-card.selected::before {
    content: "\eb78"; /* ti-check */
    font-family: 'tabler-icons';
    position: absolute; top: 12px; right: 12px;
    width: 22px; height: 22px;
    background: var(--cyan);
    color: white;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 14px;
  }
  .opt-card .o-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(0, 173, 235, 0.1);
    color: var(--cyan);
    display: grid; place-items: center;
    font-size: 20px;
    margin-bottom: 4px;
  }
  .opt-card.selected .o-icon { background: var(--gradient-tech); color: white; }
  .opt-card h5 { font-size: 14px; margin-bottom: 2px; font-family: 'Sora'; color: var(--text-dark); }
  .opt-card p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.4; }

  .opt-grid.budgets {
    grid-template-columns: repeat(4, 1fr);
  }
  .opt-card.budget {
    padding: 16px 14px;
    align-items: center;
    text-align: center;
  }
  .opt-card.budget h5 { font-size: 16px; }

  /* Form check */
  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .form-check input { width: 16px; height: 16px; accent-color: var(--cyan); margin-top: 2px; flex-shrink: 0; }
  .form-check a { color: var(--cyan); }

  /* Step actions */
  .step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 12px;
  }
  .btn-back {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
  }
  .btn-back:hover { color: var(--text-dark); border-color: var(--text-dark); }

  /* Success state */
  .form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
  }
  .form-success.active { display: block; animation: slideIn 0.4s ease; }
  .form-success .success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--gradient-tech);
    color: white;
    display: grid; place-items: center;
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-cyan);
  }
  .form-success h3 { font-size: 24px; margin-bottom: 12px; }
  .form-success p { color: var(--text-muted); font-size: 15px; max-width: 380px; margin: 0 auto; line-height: 1.6; }
  .form-success .what-next {
    margin-top: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;
    border: 1px solid var(--border);
  }
  .form-success .what-next h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-dark);
  }
  .form-success .what-next ul {
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
  }
  .form-success .what-next li {
    display: flex; gap: 10px;
    font-size: 13px; color: var(--text-muted);
  }
  .form-success .what-next li i { color: var(--cyan); font-size: 16px; }

  /* OFFICES */
  .offices-section { background: var(--bg-light); }
  .offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .office-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.25s ease;
  }
  .office-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 173, 235, 0.3);
  }
  .office-map {
    aspect-ratio: 16/9;
    background:
      radial-gradient(circle at 30% 50%, rgba(0, 173, 235, 0.3), transparent 50%),
      radial-gradient(circle at 70% 60%, rgba(255, 170, 1, 0.18), transparent 50%),
      var(--gradient-hero);
    position: relative;
    overflow: hidden;
  }
  .office-map::after {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0, 173, 235, 0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 173, 235, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  .pin {
    position: absolute;
    width: 32px; height: 32px;
    border-radius: 50% 50% 50% 0;
    background: var(--orange);
    transform: translate(-50%, -100%) rotate(-45deg);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    display: grid; place-items: center;
  }
  .pin::after {
    content: ""; width: 10px; height: 10px;
    border-radius: 50%;
    background: white;
    transform: rotate(45deg);
  }
  .pin-pulse {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    transform: translate(-50%, -50%);
    animation: pinPulse 2.4s ease infinite;
    opacity: 0;
  }
  @keyframes pinPulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.4); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.6); }
  }
  .office-body { padding: 28px; }
  .office-flag {
    font-size: 11px;
    color: var(--cyan);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .office-card h3 { font-size: 22px; margin-bottom: 12px; }
  .office-card address {
    font-style: normal;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .office-meta {
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
  }
  .office-meta-row {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-muted);
  }
  .office-meta-row i { color: var(--cyan); font-size: 16px; }

  /* FAQ */
  .faq-section { background: var(--white); }
  .faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
  }
  .faq-list { display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
  }
  .faq-item.open {
    border-color: rgba(0, 173, 235, 0.3);
    box-shadow: var(--shadow-sm);
  }
  .faq-q {
    width: 100%;
    padding: 22px 26px;
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    color: var(--text-dark);
    transition: color 0.25s ease;
  }
  .faq-q:hover { color: var(--cyan); }
  .faq-q i {
    color: var(--cyan);
    font-size: 22px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 16px;
  }
  .faq-item.open .faq-q i { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 26px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 400px; padding: 0 26px 24px; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .offices-grid { grid-template-columns: 1fr; }
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .opt-grid { grid-template-columns: repeat(2, 1fr); }
    .opt-grid.budgets { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .form-field.full { grid-column: span 1; }
    .contact-form-card { padding: 32px 24px; }
    .opt-grid, .opt-grid.budgets { grid-template-columns: 1fr; }
    .form-step span { display: none; }
    .step-actions { flex-direction: column-reverse; }
    .step-actions .btn { width: 100%; }
  }
