/* ========================================
   STARFLOCKZ — Light Premium Theme
   ======================================== */

/* ---- DESIGN TOKENS ---- */
:root {
  --ink: #0d1117;
  --ink-2: #1e2631;
  --ink-3: #374151;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --border: #e5e7eb;
  --border-2: #d1d5db;
  --surface: #ffffff;
  --surface-2: #f9fafb;
  --surface-3: #f3f4f6;

  --brand: #1d4ed8;
  --brand-dark: #1e40af;
  --brand-light: #eff6ff;
  --brand-mid: #3b82f6;
  --accent: #0ea5e9;
  --success: #10b981;
  --amber: #f59e0b;
  --purple: #8b5cf6;
  --red: #ef4444;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.10), 0 8px 16px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.14), 0 12px 32px rgba(0, 0, 0, 0.07);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---- UTILITY ---- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.text-brand {
  color: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.hidden {
  display: none !important;
}

/* ---- SECTION PILLS ---- */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #bfdbfe;
  text-transform: uppercase;
}

.section-pill.light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .section-pill {
  margin-bottom: 20px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- PAGE TEMPLATE ---- */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--brand-light) 0%, #fff 100%);
}

.content-section {
  padding: 80px 0;
}

/* ================================
   TOP BAR
================================= */
.top-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13.5px;
  position: relative;
  z-index: 200;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.top-bar-link {
  color: var(--brand-mid);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.top-bar-link:hover {
  color: #fff;
}

/* ================================
   NAVBAR
================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-mark.small {
  width: 30px;
  height: 30px;
  font-size: 11px;
  border-radius: 7px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-img.small {
  height: 40px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li {
  position: relative;
}

.nav-btn,
.nav-link-plain {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-btn:hover,
.nav-link-plain:hover {
  color: var(--brand);
  background: var(--brand-light);
}

.nav-arrow {
  font-size: 10px;
  margin-top: 1px;
  transition: transform 0.25s;
}

.has-mega:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 359px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform: translateX(-50%) translateY(8px);
}

.mega-menu.mega-menu-sm {
  min-width: 380px;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: flex;
  gap: 24px;
}

.mega-col {
  flex: 1;
  min-width: 0;
}

.mega-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  margin-bottom: 4px;
}

.mega-item:hover {
  background: var(--surface-3);
}

.mega-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mega-item span strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 2px;
}

.mega-item span small {
  font-size: 11.5px;
  color: var(--muted);
}

.mega-item-sm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--ink-3);
  transition: background 0.2s, color 0.2s;
}

.mega-item-sm:hover {
  background: var(--brand-light);
  color: var(--brand);
}

.mega-item-sm i {
  width: 16px;
  color: var(--brand);
}

/* Nav Right */
.nav-phone {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--brand);
}

.btn-demo {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-demo:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.btn-trial {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 10px rgba(29, 78, 216, 0.25);
  transition: box-shadow 0.2s, transform 0.2s;
}

.btn-trial:hover {
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.35);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
   MOBILE NAV
================================= */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 900;
}

.mobile-overlay.show {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--surface);
  z-index: 1000;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-nav.open {
  right: 0;
}

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mob-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--surface-3);
  transition: background 0.2s;
}

.mob-close:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.mob-links {
  flex: 1;
  padding: 16px 16px;
}

.mob-link-wrap {
  margin-bottom: 4px;
}

.mob-link-toggle,
.mob-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  transition: background 0.2s, color 0.2s;
}

.mob-link-toggle:hover,
.mob-link:hover {
  background: var(--brand-light);
  color: var(--brand);
}

.mob-arr {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted-2);
  transition: transform 0.25s;
}

.mob-link-toggle.open .mob-arr {
  transform: rotate(180deg);
}

.mob-submenu {
  display: none;
  padding-left: 20px;
}

.mob-submenu.open {
  display: block;
}

.mob-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s;
}

.mob-submenu a:hover {
  color: var(--brand);
}

.mob-ctas {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.mob-btn-outline {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-2);
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.mob-btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.mob-btn-primary {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.mob-footer {
  padding: 16px 24px;
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--border);
}

.mob-footer a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface-3);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.mob-footer a:hover {
  background: var(--brand-light);
  color: var(--brand);
}

/* ================================
   HERO
================================= */
.hero {
  position: relative;
  background: #f0f4ff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.12);
  top: -150px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.08);
  bottom: -80px;
  left: 10%;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.07);
  top: 30%;
  left: -80px;
}

/* Slider Container */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 32px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Animations for slide content */
.hero-slide .hero-eyebrow,
.hero-slide .hero-h1,
.hero-slide .hero-p,
.hero-slide .hero-actions,
.hero-slide .hero-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-slide.active .hero-h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.hero-slide.active .hero-p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.hero-slide.active .hero-right {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Specific Visual Elements */

/* AI Orb */
.ai-orb-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.ai-orb-core {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--brand-mid), var(--brand-dark));
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.6);
  animation: pulseCore 3s ease-in-out infinite;
}

.ai-orb-ring {
  position: absolute;
  border: 1.5px solid rgba(29, 78, 216, 0.15);
  border-radius: 50%;
}

.ring-1 {
  width: 220px;
  height: 220px;
  border-style: dashed;
  animation: rotate 20s linear infinite;
}

.ring-2 {
  width: 300px;
  height: 300px;
  animation: rotate 30s linear reverse infinite;
}

.ring-3 {
  width: 380px;
  height: 380px;
  border-style: dotted;
  animation: rotate 45s linear infinite;
}

.ai-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}

.ab1 {
  top: 20%;
  right: -20px;
}

.ab2 {
  bottom: 20%;
  left: -20px;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseCore {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Cloud Hub Redesign Visual */
.cloud-hub-visual {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hub-core {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--brand);
  box-shadow: 0 0 40px rgba(29, 78, 216, 0.1), inset 0 0 15px rgba(29, 78, 216, 0.05);
  border: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.hub-scanning {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--brand);
  border-radius: 30px;
  opacity: 0.1;
  animation: hubScan 4s linear infinite;
}

@keyframes hubScan {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.hub-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(29, 78, 216, 0.1);
  border-radius: 50%;
  animation: rotateHub 40s linear infinite;
}

@keyframes rotateHub {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.orbit-provider {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  animation: counterRotateHub 40s linear infinite;
}

@keyframes counterRotateHub {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
  }
}

.op-aws {
  top: -30px;
  left: 50%;
  margin-left: -30px;
  color: #ff9900;
}

.op-gcp {
  bottom: 20px;
  left: 0;
  color: #4285F4;
}

.op-azure {
  bottom: 20px;
  right: 0;
  color: #0078D4;
}

.hub-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 15;
}

.hb-uptime {
  top: 40px;
  right: -20px;
  animation: floatY 4s ease-in-out infinite;
}

.hb-security {
  bottom: 60px;
  left: -40px;
  animation: floatY 5s ease-in-out infinite reverse;
}

.hub-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  animation: pulse 2s infinite;
}

.cloud-security-badge {
  display: none;
}

/* Nav Controls */
.slider-nav {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 50;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}

.slider-arrow:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 40px;
  height: 4px;
  background: var(--border-2);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s;
}

.dot.active {
  background: var(--brand);
  width: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}

.eyebrow-dot.amber {
  background: var(--amber);
}

.eyebrow-dot.purple {
  background: var(--purple);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-italic {
  font-style: italic;
  color: var(--brand);
}

.hero-p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.3);
  transition: box-shadow 0.25s, transform 0.2s;
  text-decoration: none;
}

.btn-primary-lg:hover {
  box-shadow: 0 8px 32px rgba(29, 78, 216, 0.38);
  transform: translateY(-2px);
}

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-3);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-2);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-ghost-lg:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.hero-mockup {
  position: relative;
}

.mockup-browser {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border);
  overflow: hidden;
}

.browser-bar {
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.browser-dots span:nth-child(1) {
  background: #fc625d;
}

.browser-dots span:nth-child(2) {
  background: #fdbc40;
}

.browser-dots span:nth-child(3) {
  background: #35cd4b;
}

.browser-url {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
}

.browser-content {
  padding: 20px;
}

.mock-header-strip {
  height: 10px;
  background: linear-gradient(90deg, var(--brand-light), #dbeafe);
  border-radius: 4px;
  margin-bottom: 16px;
}

.mock-headline-block {
  flex: 1;
}

.mock-h1 {
  height: 14px;
  background: var(--ink);
  border-radius: 4px;
  width: 80%;
  margin-bottom: 8px;
}

.mock-h2 {
  height: 10px;
  background: var(--border-2);
  border-radius: 4px;
  width: 65%;
  margin-bottom: 16px;
}

.mock-cta {
  height: 30px;
  width: 120px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  border-radius: var(--radius-sm);
}

.mock-visual-block {
  width: 80px;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
}

.mock-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--brand-mid), var(--brand-light));
}

.mock-cards-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.mock-card {
  flex: 1;
  padding: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-card-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.mock-card-icon.blue {
  background: #dbeafe;
}

.mock-card-icon.green {
  background: #d1fae5;
}

.mock-card-lines div {
  height: 5px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 3px;
}

.mock-card-lines div:first-child {
  width: 40px;
}

.mock-card-lines div:last-child {
  width: 25px;
}

.float-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
}

.fb-icon {
  width: 30px;
  height: 30px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb1 {
  top: -20px;
  right: -20px;
  animation: floatY 4s ease-in-out infinite;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted-2);
  font-size: 12px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ================================
   MARQUEE
================================= */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  padding: 24px 0;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.marquee-track-wrap {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.marquee-item i {
  color: var(--brand);
}

/* ================================
   STATS
================================= */
.stats-section {
  padding: 60px 0;
  background: #f0f7ff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 13px;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ================================
   SERVICES — CAPABILITY WALL
================================= */
.services {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--brand);
  transition: height 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-mid);
  box-shadow: var(--shadow-xl);
  background: #fff;
}

.svc-card:hover::before {
  height: 100%;
}

.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.svc-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-2);
  opacity: 0.5;
}

.svc-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.svc-card:hover .svc-icon-wrap {
  transform: rotateY(180deg);
  background: var(--brand);
  color: #fff;
}

.svc-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}

.svc-mini-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  font-style: italic;
  margin-bottom: 16px;
}

.svc-content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.svc-features {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3);
  transition: transform 0.2s ease;
}

.svc-card:hover .svc-features li {
  transform: translateX(4px);
}

.svc-features li i {
  font-size: 10px;
  color: var(--brand-mid);
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    padding: 30px;
  }
}

/* ================================
   WHY STARFLOCKZ — TECHNICAL PERSPECTIVE
================================= */
.why-sd-excellence {
  padding: 60px 0;
  background: #f8fafc;
  background-image:
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.05) 0px, transparent 50%);
  position: relative;
  overflow: hidden;
  perspective: 2000px;
}

.why-sd-head {
  max-width: 800px;
  margin-bottom: 100px;
}

.why-sd-head h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin: 24px 0;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.why-sd-head h2 .text-brand {
  display: block;
  font-style: italic;
  font-family: var(--font-display);
}

.why-sd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 20px;
  transform: rotateX(10deg) rotateY(-5deg) rotateZ(2deg);
  /* The "Technical Perspective" skew */
  transform-style: preserve-3d;
}

.why-sd-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 50px 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow:
    -10px 10px 40px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.02);
  transform: translateZ(0);
}

.why-sd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-sd-card:hover {
  transform: translateZ(50px) rotateX(0) rotateY(0) rotateZ(0);
  /* Straightens and pops out */
  border-color: var(--brand);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.03);
  z-index: 10;
}

.why-sd-card:hover::before {
  transform: scaleX(1);
}

/* Moving Lightbar Scan Effect */
.why-sd-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 45%,
      rgba(59, 130, 246, 0.03) 48%,
      rgba(59, 130, 246, 0.08) 50%,
      rgba(59, 130, 246, 0.03) 52%,
      transparent 55%);
  transform: rotate(-45deg);
  pointer-events: none;
  transition: all 0.6s ease;
  opacity: 0;
}

.why-sd-card:hover::after {
  animation: wsdScan 1.5s infinite;
  opacity: 1;
}

@keyframes wsdScan {
  0% {
    transform: translate(-30%, -30%) rotate(-45deg);
  }

  100% {
    transform: translate(30%, 30%) rotate(-45deg);
  }
}

.wsd-icon {
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 40px;
  transition: all 0.4s ease;
}

.why-sd-card:hover .wsd-icon {
  background: var(--brand);
  transform: scale(1.1) rotate(10deg);
}

.wsd-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.wsd-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.wsd-footer {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.wsd-tag {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 5px 12px;
  border-radius: 4px;
}

/* Premium Perspective CTA */
.why-sd-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 40px 60px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 5;
}

.cta-mini-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}

.btn-strategic {
  padding: 18px 40px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-strategic:hover {
  background: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

@media (max-width: 1200px) {
  .why-sd-grid {
    grid-template-columns: repeat(2, 1fr);
    transform: none;
  }
}

@media (max-width: 768px) {
  .why-sd-excellence {
    padding: 40px 0;
  }

  .why-sd-head {
    text-align: center;
    margin: 0 auto 50px;
  }

  .btn-strategic {

    font-size: 12px !important;

  }

  .btn-trial {
    font-size: 10.5px !important;
  }

  .why-sd-grid {
    grid-template-columns: 1fr;
  }

  .why-sd-card {
    padding: 40px;
  }

  .why-sd-cta {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px;
  }
}

@media (max-width: 1200px) {
  .why-sd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .why-sd-excellence {
    padding: 40px 0;
  }

  .why-sd-head {
    text-align: center;
    margin: 0 auto 40px;
  }

  .why-sd-grid {
    grid-template-columns: 1fr;
  }

  .why-sd-card {
    padding: 40px 30px;
  }

  .why-sd-cta {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 30px;
  }
}

@media (max-width: 1200px) {
  .why-sd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-sd-head {
    text-align: center;
    margin: 0 auto 40px;
  }

  .why-sd-grid {
    grid-template-columns: 1fr;
  }

  .why-sd-card {
    padding: 30px;
  }

  .why-sd-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ================================
   CREATIVE ABOUT — BENTO GRID
================================= */
.creative-about {
  padding: 60px 0;
  background: #fdfaff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}

.bento-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-mid);
  box-shadow: var(--shadow-lg);
}

/* Main Highlight Card */
.bento-main {
  grid-column: span 4;
  grid-row: span 1;
  background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
  justify-content: center;
}

.bento-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.bento-main h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 20px 0;
  font-weight: 600;
}

.bento-main p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  font-size: 1.05rem;
  color: var(--ink-3);
  margin-bottom: 30px;
}

.bento-stat-row {
  display: flex;
  gap: 40px;
}

.bento-stat {
  display: flex;
  flex-direction: column;
}

.bento-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand);
}

.bento-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Standard Bento Tiles */
.bento-ico {
  width: 50px;
  height: 50px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.bento-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.bento-vision {
  grid-column: span 2;
}

.bento-elite {
  grid-column: span 2;
}

/* Visual Card with Animation */
.bento-visual {
  grid-column: span 2;
  background: var(--ink);
  color: #fff;
  border-color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flock-animation {
  position: relative;
  width: 150px;
  height: 150px;
}

.flock-star {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--brand-mid);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  top: var(--t);
  left: var(--l);
  animation: float-star 4s infinite ease-in-out;
  animation-delay: var(--d);
  opacity: 0.6;
}

@keyframes float-star {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(10px, -15px) scale(1.2);
    opacity: 1;
  }
}

.v-label {
  position: absolute;
  bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.bento-ai {
  grid-column: span 2;
}

.ai-strip {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
}

.ai-strip span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: var(--surface-3);
  border-radius: 100px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .about-bento {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento-main {
    grid-column: span 4;
  }

  .bento-vision,
  .bento-elite,
  .bento-visual,
  .bento-ai {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .about-bento {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }

  .bento-main,
  .bento-vision,
  .bento-elite,
  .bento-visual,
  .bento-ai {
    grid-column: span 1;
  }

  .bento-card {
    padding: 30px;
  }

  .bento-stat-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* ================================
   PORTFOLIO
================================= */
.portfolio {
  padding: 60px 0;
  background: #f1f5f9;
}

.port-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.pf-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  background: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pf-btn:hover {
  color: var(--brand);
  border-color: var(--brand-mid);
  box-shadow: var(--shadow-sm);
}

.pf-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.port-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.port-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-mid);
}

.port-card.large {
  grid-column: span 2;
}

.pc-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.port-card.large .pc-img {
  height: 340px;
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.port-card:hover .pc-img img {
  transform: scale(1.08);
}

.pc-overlay-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.pc-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-tag {
  display: inline-block;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pc-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.pc-body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pc-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pc-tech span {
  background: var(--brand-light);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.pc-metrics {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.pc-metrics div {
  display: flex;
  flex-direction: column;
}

.pc-metrics strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brand);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.pc-metrics small {
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 600;
  text-transform: uppercase;
}

.pc-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  transition: gap 0.3s ease;
}

.pc-link:hover {
  gap: 12px;
}

@media (max-width: 1024px) {
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .portfolio {
    padding: 60px 0;
  }

  .port-grid {
    grid-template-columns: 1fr;
  }

  .port-card.large {
    grid-column: span 1;
  }

  .pc-img {
    height: 200px;
  }

  .port-card.large .pc-img {
    height: 240px;
  }

  .pc-body {
    padding: 24px;
  }

  .pc-metrics {
    gap: 20px;
  }
}

/* ================================
   OUR PROCESS — EXECUTION ENGINE
================================= */
.process {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.process-flow-wrap {
  position: relative;
  margin-top: 80px;
}

.process-main-line {
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 10px, transparent 10px, transparent 20px);
  z-index: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Staggered Card Alignment */
.process-step:nth-child(even) {
  flex-direction: column-reverse;
  margin-top: -160px;
}

.process-step:nth-child(even) .ps-card {
  margin-top: 0;
  margin-bottom: 50px;
}

.ps-marker {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.ps-num {
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.1);
  z-index: 2;
}

.ps-dot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--brand-light);
  animation: psPulse 2s infinite;
  z-index: 1;
}

@keyframes psPulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.ps-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  width: 90%;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.ps-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-mid);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.ps-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 20px;
}

.ps-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.ps-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ps-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f1f5f9;
  color: var(--muted-2);
  padding: 4px 10px;
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .process-main-line {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: row;
    text-align: left;
    margin-top: 0;
    align-items: flex-start;
    gap: 30px;
  }

  .ps-marker {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .ps-card {
    width: 100%;
    margin: 0 !important;
  }

  .ps-icon {
    margin-left: 0;
  }
}

/* ================================
   COMPARISON TABLE
================================= */
.comparison-section {
  padding: 60px 0;
  background: #f0fdfa;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.compare-table thead th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-3);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table th.col-us {
  background: var(--brand-light);
  color: var(--brand);
  position: relative;
}

.recommended-badge {
  display: inline-block;
  margin-left: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background: var(--surface-2);
}

.compare-table .col-us {
  background: #f0f6ff;
}

.check {
  color: var(--success);
  font-size: 18px;
}

.cross {
  color: #fca5a5;
  font-size: 18px;
}

.maybe {
  color: var(--amber);
  font-size: 18px;
}

/* ================================
   TESTIMONIALS SLIDER
================================= */
.testimonials {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.testi-slider-viewport {
  position: relative;
  width: 100%;
}

.testi-grid {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.testi-card {
  flex: 0 0 calc(33.333% - 21.33px);
  /* Exactly 3 cards with 32px gaps */
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.4s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  border-color: var(--brand-mid);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tc-quote-mark {
  font-family: serif;
  font-size: 100px;
  line-height: 1;
  color: var(--brand-light);
  position: absolute;
  top: 20px;
  left: 30px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.tc-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testi-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.tc-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.tc-author strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}

.tc-author small {
  font-size: 12px;
  color: var(--muted-2);
}

/* Slider Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.testi-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-nav:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.testi-pagination {
  display: flex;
  gap: 10px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dot.active {
  background: var(--brand);
  width: 24px;
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .testi-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  .testi-card {
    flex: 0 0 100%;
  }

  .testi-controls {
    gap: 20px;
    margin-top: 40px;
  }
}

.tc-author small {
  font-size: 12px;
  color: var(--muted);
}

/* ================================
   PRICING
================================= */
.pricing-section {
  padding: 60px 0;
  background: #e0f2fe;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--brand);
  background: linear-gradient(160deg, #f0f6ff 0%, #fff 100%);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.06), var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.price-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.currency {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 10px;
  font-family: var(--font-body);
}

.price-label {
  font-size: 12px;
  color: var(--muted-2);
  margin-bottom: 28px;
}

.price-features {
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--success);
  font-size: 12px;
}

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid var(--brand);
  color: var(--brand);
  transition: all 0.2s;
}

.price-card.featured .price-btn {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.25);
}

.price-btn:hover {
  background: var(--brand);
  color: #fff;
}

.price-card.featured .price-btn:hover {
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
  transform: translateY(-1px);
}

/* ================================
   TEAM SECTION — ELITE SQUAD
================================= */
.team-section {
  padding: 60px 0;
  background: linear-gradient(165deg, #f8faff 0%, #ffffff 40%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.team-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.team-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
}

.tg-1 {
  top: -100px;
  left: -100px;
  background: var(--brand);
}

.tg-2 {
  bottom: -100px;
  right: -100px;
  background: var(--brand-mid);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-mid);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.team-avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
}

.team-av-inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-blueprint {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 110px;
  height: 110px;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
  background-size: 15px 15px;
  border: 1px dashed rgba(37, 99, 235, 0.2);
  border-radius: 28px;
  z-index: 1;
}

.team-av-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--brand);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  z-index: 3;
}

.team-meta h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 20px 0;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.sk-pill {
  padding: 6px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  transition: all 0.3s ease;
}

.team-card:hover .sk-pill {
  border-color: var(--brand-light);
  background: #f0f7ff;
  color: var(--brand);
}

.team-social-mini {
  display: flex;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.team-social-mini a {
  color: var(--muted-2);
  font-size: 18px;
  transition: color 0.3s ease;
}

.team-social-mini a:hover {
  color: var(--brand);
}

/* ================================
   FAQ SECTION — INTELLIGENCE HUB
================================= */
.faq-section {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sticky-head {
  position: sticky;
  top: 120px;
}

.faq-sticky-head h2 {
  font-size: 42px;
  margin: 20px 0;
}

.faq-support-box {
  margin-top: 48px;
  padding: 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.support-label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 700;
  font-size: 16px;
}

.support-btn:hover {
  text-decoration: underline;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-premium {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-premium:hover {
  border-color: var(--brand-light);
  background: #fcfdfe;
}

.faq-item-premium.open {
  border-color: var(--brand-mid);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05);
}

.faq-toggle {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-idx {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--brand);
  opacity: 0.6;
  font-weight: 600;
}

.faq-title {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.faq-arr {
  color: var(--muted-2);
  transition: transform 0.4s ease;
}

.faq-item-premium.open .faq-arr {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-premium.open .faq-panel {
  max-height: 300px;
}

.faq-panel p {
  padding: 0 32px 32px 70px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

@media (max-width: 1100px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-sticky-head {
    position: static;
  }
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .faq-sticky-head h2 {
    font-size: 32px;
  }

  .faq-toggle {
    padding: 20px;
    gap: 16px;
  }

  .faq-panel p {
    padding: 0 20px 20px 50px;
  }
}

.faq-left p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
  gap: 16px;
}

.faq-q:hover {
  color: var(--brand);
}

.faq-icon {
  font-size: 12px;
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 18px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ================================
   CTA / CONTACT
================================= */
.cta-section {
  padding: 60px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-left .section-pill {
  margin-bottom: 20px;
}

.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-left h2 em {
  font-style: italic;
  color: var(--brand-mid);
}

.cta-left>p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}

.cta-perks {
  margin-bottom: 32px;
}

.cta-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.cta-perks li i {
  color: var(--success);
}

.cta-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-contact-details a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.cta-contact-details a:hover {
  color: var(--brand-mid);
}

.cta-contact-details i {
  color: var(--brand-mid);
}

/* Form Card */
.cta-form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.cta-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.f-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.f-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.f-select {
  appearance: none;
  cursor: pointer;
}

.f-area {
  resize: none;
  font-family: var(--font-body);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 14px;
}

.btn-submit:hover {
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.4);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note i {
  color: var(--success);
}

/* ================================
   FOOTER
================================= */
.footer {
  background: var(--ink-2);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ft-logo-row .logo-text {
  color: #fff;
}

.ft-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.ft-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.ft-social {
  display: flex;
  gap: 10px;
}

.ft-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.ft-social a:hover {
  background: var(--brand);
  color: #fff;
}

.ft-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.ft-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: #fff;
}

.ft-col a i {
  width: 16px;
  color: var(--brand-mid);
  font-size: 12px;
}

.ft-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ft-certs span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ft-certs span i {
  color: var(--brand-mid);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.fb-links {
  display: flex;
  gap: 20px;
}

.fb-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.fb-links a:hover {
  color: #fff;
}

/* ================================
   BACK TO TOP
================================= */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.back-top.show {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

/* ================================
   FLOATING COMMUNICATION HUB
================================= */
.comm-float-container {
  position: fixed;
  bottom: 80px;
  right: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comm-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.comm-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 4px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  position: relative;
}

/* Call Specific */
.call-btn {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.3);
}

/* WA Specific */
.wa-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.comm-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.comm-tooltip {
  position: absolute;
  right: 75px;
  background: #fff;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.comm-item:hover .comm-tooltip {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

/* WA Radar Pulse */
.wa-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.5);
  border-radius: 18px;
  transform: translate(-50%, -50%) scale(1);
  animation: wa-pulse 3s infinite ease-out;
  z-index: -1;
}

.wa-radar.delay {
  animation-delay: 1.5s;
}

@keyframes wa-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .comm-float-container {
    bottom: 24px;
    right: 20px;
    gap: 10px;
  }

  .comm-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .comm-tooltip {
    display: none;
  }
}

/* ================================
   RESPONSIVE
================================= */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-card.tc-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .fb1,
  .fb2,
  .fb3 {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 140px 24px 60px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    min-width: 0;
  }

  .hero-right {
    order: -1;
  }

  .why-grid,
  .faq-grid,
  .cta-box {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .port-grid {
    grid-template-columns: 1fr 1fr;
  }

  .port-card.large {
    grid-column: span 2;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: calc(50% - 16px);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu,
  .nav-phone,
  .btn-demo {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero Adjustments for Tablet */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 24px 60px;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .ai-orb-wrap,
  .cloud-visual,
  .hero-mockup {
    transform: scale(0.8);
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section-container {
    padding: 0 20px;
  }

  .services-grid,
  .team-grid,
  .testi-grid,
  .port-grid {
    grid-template-columns: 1fr;
  }

  .port-card.large {
    grid-column: span 1;
  }

  .testi-card.tc-large {
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .hero-h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: 1.1;
  }

  .hero-p {
    font-size: 1rem;
    padding: 0;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 120px 16px 40px;
    width: 100%;
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 30px;
    gap: 12px;
  }

  .btn-primary-lg,
  .btn-ghost-lg {
    justify-content: center;
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }

  .hero-scroll-hint,
  .fb1,
  .ab1,
  .ab2,
  .team-blueprint {
    display: none !important;
  }

  .ai-orb-wrap,
  .cloud-visual,
  .hero-mockup {
    transform: scale(0.65);
    margin: 0 auto;
    opacity: 1;
    max-width: 100%;
    height: auto;
  }

  /* Specific height for fixed-height visuals on mobile to prevent layout shift */
  .ai-orb-wrap {
    height: 280px;
    width: 300px;
  }

  .cloud-visual {
    height: 240px;
    width: 300px;
  }

  .hero-mockup {
    width: 100%;
    height: auto;
  }

  .cta-form-card {
    padding: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .compare-table {
    font-size: 12px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 12px 10px;
  }
}

/* ========================================
   SERVICE PAGES � PREMIUM COMPONENTS
   ======================================== */

.service-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--brand);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: 10%;
  left: -100px;
}

.service-hero .hero-content {
  max-width: 680px;
  position: relative;
  z-index: 10;
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 600;
  margin: 24px 0;
  color: var(--ink);
}

.service-hero p {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 55%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
}

/* Abstract Web Visual */
.abstract-web-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.web-browser-mock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  z-index: 10;
}

.mock-hdr {
  height: 12px;
  background: var(--surface-3);
  display: flex;
  gap: 4px;
  padding: 4px 10px;
}

.mock-hdr span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-2);
}

.mock-body {
  padding: 20px;
}

.m-line {
  height: 8px;
  background: var(--surface-3);
  border-radius: 4px;
  margin-bottom: 8px;
}

.lw-80 {
  width: 80%;
}

.lw-60 {
  width: 60%;
}

.m-cards {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.m-cards div {
  flex: 1;
  height: 60px;
  background: var(--brand-light);
  border-radius: 6px;
}

.web-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--brand);
}

.n1 {
  top: 20%;
  left: 10%;
  animation: floatY 4s infinite;
}

.n2 {
  top: 80%;
  right: 15%;
  animation: floatY 5s infinite 1s;
}

.n3 {
  top: 30%;
  right: 5%;
  animation: floatY 3s infinite 0.5s;
}

.web-line {
  position: absolute;
  background: var(--border);
  height: 1px;
  opacity: 0.5;
  transform-origin: left center;
}

.l1 {
  width: 200px;
  top: 30%;
  left: 15%;
  transform: rotate(-20deg);
}

.l2 {
  width: 180px;
  bottom: 30%;
  right: 20%;
  transform: rotate(15deg);
}

/* CAPABILITIES */
.service-capabilities {
  padding: 60px 0;
  background: var(--surface-2);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cap-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.cap-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.cap-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.cap-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}

.cap-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* TECH STACK */
.tech-stack-section {
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.tech-labels {
  text-align: center;
  margin-bottom: 40px;
}

.tech-labels span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.tech-marquee {
  width: 100%;
}

.tech-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.tech-track span {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.tech-track span:hover {
  opacity: 1;
}

.tech-track span i {
  color: var(--brand-mid);
}

/* PROCESS */
.service-process {
  padding: 80px 0;
  background: #fff;
}

.process-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.process-info h2 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  margin: 20px 0;
}

.process-list {
  margin-top: 50px;
  list-style: none;
}

.process-list li {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.p-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(29, 78, 216, 0.1);
}

.process-list li h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.process-list li p {
  color: var(--muted);
  font-size: 1rem;
}

.process-visual {
  position: relative;
}

.process-orb-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-orb {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--brand), var(--brand-dark));
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(29, 78, 216, 0.3);
  z-index: 2;
}

.p-orbit-1,
.p-orbit-2 {
  position: absolute;
  border: 1px dashed var(--border);
  border-radius: 50%;
}

.p-orbit-1 {
  width: 280px;
  height: 280px;
  animation: rotate 20s linear infinite;
}

.p-orbit-2 {
  width: 380px;
  height: 380px;
  animation: rotate 30s linear reverse infinite;
}

.p-logo {
  position: absolute;
  width: 60px;
  z-index: 5;
  filter: brightness(0) invert(1);
}

/* CTA BANNER */
.page-cta {
  padding: 0 0 100px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-xl);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.text-italic {
  font-style: italic;
  font-weight: 400;
}

.cta-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .service-hero {
    padding: 120px 0 60px;
    text-align: center;
  }

  .service-hero .hero-content {
    margin: 0 auto;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 60px auto 0;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .process-info {
    text-align: center;
  }

  .process-list li {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .process-orb-wrap {
    width: 300px;
    height: 300px;
  }

  .p-orbit-1 {
    width: 220px;
    height: 220px;
  }

  .p-orbit-2 {
    width: 300px;
    height: 300px;
  }

  .p-orb {
    width: 140px;
    height: 140px;
  }
}

/* ========================================
   ENHANCED SERVICE PAGE SECTIONS
   ======================================== */

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--surface-2);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-list a {
  color: var(--muted);
  transition: color 0.2s;
}

.breadcrumb-list a:hover {
  color: var(--brand);
}

.breadcrumb-list li.active {
  color: var(--ink);
  font-weight: 600;
}

/* What We Do */
.what-we-do {
  padding: 60px 0;
  background: #fff;
}

.wwd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wwd-info h2 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  margin: 20px 0;
}

.wwd-points {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wwd-point {
  display: flex;
  gap: 16px;
}

.wwd-point i {
  font-size: 20px;
  color: var(--success);
  margin-top: 4px;
}

.wwd-point h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.wwd-point p {
  color: var(--muted);
  font-size: 0.95rem;
}

.wwd-image .img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}

/* Why Choose Us Service */
.why-choose-service {
  padding: 60px 0;
  background: var(--surface-2);
}

.why-grid-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card-service {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.why-card-service:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}

.wcs-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Parallax Interactive Block */
.interactive-parallax {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: -100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.parallax-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.4));
  display: flex;
  align-items: center;
  color: #fff;
}

.parallax-content h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.parallax-content p {
  font-size: 1.2rem;
  max-width: 600px;
  opacity: 0.8;
}

/* Mid Form Section */
.mid-form-section {
  padding: 80px 0;
  background: var(--brand-light);
}

.mid-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(29, 78, 216, 0.1);
}

.form-side-info {
  background: var(--ink);
  padding: 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-side-info h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.form-stats {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}

.fs-item {
  display: flex;
  flex-direction: column;
}

.fs-item strong {
  font-size: 1.8rem;
  color: var(--brand-mid);
}

.fs-item span {
  font-size: 12px;
  opacity: 0.6;
  text-transform: uppercase;
}

.actual-form {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.actual-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.actual-form input,
.actual-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  font-family: inherit;
  transition: all 0.3s;
}

.actual-form input:focus,
.actual-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}

.full-width {
  width: 100%;
}

/* Comparison Table */
.service-comparison {
  padding: 60px 0;
  background: #fff;
}

.compare-table-wrap {
  margin-top: 60px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.compare-table th,
.compare-table td {
  padding: 24px 32px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: var(--surface-2);
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.col-highlight {
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 700;
}

/* Interactive Image Block */
.interactive-image-block {
  padding: 60px 0;
  background: var(--surface-2);
}

.img-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.img-block-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* FAQs */
.service-faq {
  padding: 80px 0;
  background: #fff;
}

/* Responsive Overrides */
@media (max-width: 1024px) {

  .wwd-grid,
  .img-block-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .wwd-points {
    text-align: left;
    max-width: 600px;
    margin: 40px auto 0;
  }

  .img-block-visual {
    order: 2;
  }

  .mid-form-card {
    grid-template-columns: 1fr;
  }

  .form-side-info {
    text-align: center;
    padding: 40px;
  }

  .form-stats {
    justify-content: center;
  }

  .parallax-content h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .why-grid-service {
    grid-template-columns: 1fr;
  }

  .actual-form .form-row {
    grid-template-columns: 1fr;
  }

  .compare-table th,
  .compare-table td {
    padding: 16px 20px;
  }
}

/* ========================================
   V3 - PREMIUM SERVICE PAGE UPGRADE
   ======================================== */

/* Premium Breadcrumb (Matches Image Request) */
.premium-breadcrumb {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-bread-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-bread-content {
  text-align: center;
}

.p-bread-title-pill {
  display: inline-block;
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(24px);
  padding: 18px 48px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.p-bread-title-pill h1 {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.p-bread-nav {
  display: flex;
  justify-content: center;
}

.p-bread-list {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.p-bread-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.p-bread-list a:hover {
  color: #fff;
}

.p-bread-list .sep {
  opacity: 0.6;
}

/* Section Gradient Shades */
.gradient-shade-1 {
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
}

.gradient-shade-2 {
  background: linear-gradient(180deg, #f3f4f6 0%, #fff 100%);
}

.layout-gradient {
  background: radial-gradient(circle at top right, #fbfcfe 0%, #fff 100%);
}

.layout-gradient-reverse {
  background: radial-gradient(circle at bottom left, #fbfcfe 0%, #fff 100%);
}

.blue-tint-gradient {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Service Intro Web Grid */
.service-hero-intro {
  padding: 80px 0;
}

.hero-grid-web {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-stats-row {
  display: flex;
  gap: 48px;
  margin: 32px 0 40px;
}

.hs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand);
}

.hs-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-visual-web {
  position: relative;
}

.inter-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.hero-img-3d {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  animation: floatY 6s ease-in-out infinite;
}

.floating-label {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.fb-1 {
  top: -20px;
  right: -20px;
  color: var(--success);
}

.fb-2 {
  bottom: 40px;
  left: -40px;
  color: var(--brand);
}

/* Premium Cards */
.wwd-interactive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.wwd-card-premium {
  background: #fff;
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.wwd-card-premium:hover {
  transform: translateY(-12px);
  border-color: var(--brand-mid);
  box-shadow: var(--shadow-xl);
}

.wc-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.wc-feat {
  margin-top: 24px;
  list-style: none;
  font-size: 14px;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc-feat i {
  color: var(--success);
  margin-right: 8px;
}

/* Why Choose Content Oriented */
.why-flex-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.img-content-overlay {
  position: absolute;
  bottom: 0;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(13, 17, 23, 0.9));
  padding: 40px;
  color: #fff;
}

.img-content-overlay strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.why-point-box {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wp-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.wp-card:hover {
  border-color: var(--brand);
}

.wp-idx {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-mid);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
}

/* Process V3 Orbitals */
.p-visual-container {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.p-orb-main {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 80px rgba(29, 78, 216, 0.4);
}

.p-ring {
  position: absolute;
  border: 1px dashed rgba(29, 78, 216, 0.2);
  border-radius: 50%;
}

.p-ring-1 {
  width: 240px;
  height: 240px;
  animation: rotate 20s linear infinite;
}

.p-ring-2 {
  width: 340px;
  height: 340px;
  animation: rotate 30s linear reverse infinite;
}

.p-ring-3 {
  width: 440px;
  height: 440px;
  animation: rotate 45s linear infinite;
}

.floating-tech {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  font-size: 20px;
  color: var(--brand);
  z-index: 10;
}

.ft-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: floatY 4s infinite;
}

.ft-2 {
  bottom: 60px;
  left: 20px;
  animation: floatY 5s infinite 1s;
}

.ft-3 {
  bottom: 60px;
  right: 20px;
  animation: floatY 3s infinite 0.5s;
}

/* Final Upgrade Form */
.inter-form-section {
  padding: 60px 0;
}

.btn-submit-full {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.3);
  transition: transform 0.3s;
}

.btn-submit-full:hover {
  transform: translateY(-2px);
}

/* Responsive Overrides */
@media (max-width: 1024px) {

  .hero-grid-web,
  .why-flex-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats-row,
  .hero-actions {
    justify-content: center;
  }

  .hero-visual-web {
    order: -1;
    max-width: 500px;
    margin: 0 auto 60px;
  }

  .why-visual {
    order: 2;
    margin-top: 60px;
  }

  .wwd-interactive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-bread-title-pill h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .wwd-interactive-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 24px;
  }

  .p-bread-title-pill {
    padding: 14px 32px;
  }

  .p-bread-title-pill h1 {
    font-size: 1.8rem;
  }
}

/* ========================================
   COMPACT PREMIUM BREADCRUMB
   ======================================== */

.premium-breadcrumb {
  height: 220px !important;
  /* Significantly reduced height */
}

.p-bread-title-pill {
  padding: 12px 32px !important;
  /* Compact padding */
  margin-bottom: 16px !important;
}

.p-bread-title-pill h1 {
  font-size: 2rem !important;
  /* Scaled down typography */
}

.p-bread-list {
  font-size: 13px !important;
  gap: 6px !important;
}

/* Optional: Slimming down other sections for overall compactness */
.service-hero-intro,
.what-we-do,
.why-choose-service,
.service-process,
.inter-form-section,
.service-comparison,
.service-faq {
  padding: 80px 0 !important;
  /* Reduced from 100-120px to 80px */
}

.bottom-cta {
  padding: 60px 0 !important;
}


/* ========================================
   PAGE HERO BANNER (BREACRUMB LIKE IMAGE)
   ======================================== */

.page-hero-banner {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 17, 23, 0.7), rgba(13, 17, 23, 0.9));
}

.banner-content {
  position: relative;
  z-index: 5;
}

.banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.breadcrumb-pill {
  display: inline-block;
  background: rgba(13, 17, 23, 0.65);
  backdrop-filter: blur(12px);
  padding: 8px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.banner-breadcrumb li {
  color: rgba(255, 255, 255, 0.6);
}

.banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.2s;
}

.banner-breadcrumb a:hover {
  color: #fff;
}

.banner-breadcrumb li.active {
  color: #fff;
  font-weight: 600;
}

.banner-breadcrumb i {
  font-size: 10px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .page-hero-banner {
    height: 300px;
  }
}

/* Mobile Refinements for Breadcrumb Hero */
@media (max-width: 768px) {
  .page-hero-banner {
    height: 220px;
    /* Much smaller height for mobile */
  }

  .banner-content h1 {
    font-size: 1.8rem;
    /* Scaled down title */
    margin-bottom: 12px;
  }

  .breadcrumb-pill {
    padding: 6px 20px;
    /* Compact padding */
  }

  .banner-breadcrumb {
    gap: 8px;
    /* Tighter gap */
    font-size: 11px;
    /* Smaller font */
  }

  .banner-breadcrumb i {
    font-size: 8px;
    /* Smaller arrows */
  }
}

@media (max-width: 480px) {
  .page-hero-banner {
    height: 180px;
    /* Even smaller for tiny screens */
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .breadcrumb-pill {
    padding: 5px 16px;
  }
}

/* ========================================
   PREMIUM EXECUTION METHODOLOGY
   ======================================== */

.methodology-section {
  padding: 80px 0;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.method-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mc-glass-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.02) 0%, rgba(29, 78, 216, 0) 100%);
  z-index: 1;
}

.method-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(13, 17, 23, 0.1);
  border-color: var(--brand);
}

.mc-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  transition: all 0.5s;
}

.method-card:hover .mc-icon-wrap {
  background: var(--brand);
  color: #fff;
  transform: rotateY(360deg);
}

.mc-content {
  position: relative;
  z-index: 2;
}

.mc-step {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-mid);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.mc-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}

.mc-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.mc-footer {
  margin-top: auto;
}

.mc-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted-2);
  background: var(--surface-2);
  padding: 6px 12px;
  border-radius: 4px;
}

@media (max-width: 1200px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .method-grid {
    grid-template-columns: 1fr;
  }

  .methodology-section {
    padding: 80px 0;
  }

  .method-card {
    padding: 30px;
  }
}

/* ========================================
   STRATEGIC NEED SECTION
   ======================================== */

.strategic-need {
  padding: 80px 0;
  background: #fff;
}

.sn-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sn-visual {
  position: relative;
}

.sn-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.sn-stat-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(13, 17, 23, 0.15);
  border: 1px solid var(--border);
  z-index: 5;
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sn-stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--ink);
}

.sn-stat-card span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
}

.sn-grid {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sn-item {
  display: flex;
  gap: 20px;
}

.sni-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sn-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.sn-item p {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .sn-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .sn-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .sn-item {
    text-align: left;
  }
}

/* ========================================
   ULTRA-CREATIVE TIMELINE METHODOLOGY
   ======================================== */

.method-timeline {
  margin-top: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mt-item {
  display: flex;
  align-items: center;
  gap: 80px;
}

.mt-item.mt-reverse {
  flex-direction: row-reverse;
}

.mt-visual {
  flex: 1;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-num {
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 800;
  color: var(--brand-light);
  opacity: 0.5;
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: all 0.5s;
  user-select: none;
}

.mt-item:hover .mt-num {
  color: var(--brand);
  opacity: 0.2;
  transform: scale(1.1);
}

.mt-blueprint-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(29, 78, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(29, 78, 216, 0.1);
}

.mt-orb {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--brand);
  filter: blur(50px);
  opacity: 0.1;
  transition: all 0.5s;
}

.mt-item:hover .mt-orb {
  opacity: 0.3;
  width: 150px;
  height: 150px;
}

.mt-content {
  flex: 1;
}

.mt-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  background: var(--brand-light);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 20px;
}

.mt-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
}

.mt-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.mt-details {
  display: flex;
  gap: 30px;
}

.mt-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mt-details i {
  color: var(--brand);
}

@media (max-width: 1024px) {

  .mt-item,
  .mt-item.mt-reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .mt-visual {
    width: 100%;
    height: 200px;
  }

  .mt-num {
    font-size: 7rem;
  }

  .mt-details {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ========================================
   REIMAGINED: WHY CHOOSE US (PRISM UI)
   ======================================== */

.why-choose-premium {
  padding: 40px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.prism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.prism-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2px;
  /* For the gradient border effect */
  background: transparent;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.pc-inner {
  background: #fff;
  border-radius: calc(var(--radius-xl) - 2px);
  padding: 6px 17px;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.pc-border-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--border) 0%, transparent 100%);
  z-index: 1;
  transition: all 0.5s;
}

.prism-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 40px 80px rgba(29, 78, 216, 0.15);
}

.prism-card:hover .pc-border-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  opacity: 1;
}

.prism-card:hover .pc-inner {
  background: linear-gradient(180deg, #fff 0%, var(--brand-light) 300%);
}

.pc-icon {
  width: 70px;
  height: 70px;
  background: var(--surface-2);
  color: var(--brand);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 30px;
  transition: all 0.5s;
  box-shadow: inset 0 0 0 1px var(--border);
}

.prism-card:hover .pc-icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 30px rgba(29, 78, 216, 0.3);
}

.pc-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
  transition: all 0.3s;
}

.prism-card:hover .pc-content h3 {
  color: var(--brand);
}

.pc-content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .prism-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Refined Timeline Numbers (Match Image Default State) */
.mt-num {
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 800;
  color: var(--brand);
  opacity: 0.12;
  /* Very subtle default state as per image */
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: all 0.5s;
  user-select: none;
}

.mt-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--brand);
  filter: blur(80px);
  /* Larger blur for soft glow */
  opacity: 0.08;
  /* Visible glow by default */
  transition: all 0.5s;
  z-index: 1;
}

/* Maintain subtle interaction */
.mt-item:hover .mt-num {
  opacity: 0.25;
  transform: scale(1.05);
}

.mt-item:hover .mt-orb {
  opacity: 0.15;
  transform: scale(1.2);
}

/* ========================================
   DEEP-CONTENT: ENGINEERING CORE
   ======================================== */

.engineering-core {
  padding: 40px 0;
  background: var(--surface-2);
}

.ec-layout {
  display: flex;
  gap: 80px;
  position: relative;
}

.ec-sidebar {
  flex: 0 0 350px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.ec-sidebar h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 24px;
}

.ec-sidebar p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.ec-content-feed {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.ec-block {
  display: flex;
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.ec-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ec-icon {
  width: 50px;
  height: 50px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  margin-top: 5px;
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
}

.ec-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}

.ec-text p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .ec-layout {
    flex-direction: column;
    gap: 60px;
  }

  .ec-sidebar {
    position: relative;
    top: 0;
    flex: none;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .ec-sidebar h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .ec-block {
    flex-direction: column;
    gap: 20px;
  }

  .ec-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ========================================
   CREATIVE PROCESS: LIFECYCLE PREMIUM
   ======================================== */

.lifecycle-premium {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.lifecycle-layout {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.lifecycle-info {
  flex: 1.2;
}

.stepper-wrap {
  margin-top: 50px;
  position: relative;
  padding-left: 60px;
}

.stepper-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand), var(--brand-light), transparent);
}

.step-card {
  position: relative;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: all 0.4s;
}

.step-indicator {
  position: absolute;
  left: -70px;
  top: 30px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 5;
  box-shadow: 0 0 15px rgba(29, 78, 216, 0.2);
  transition: all 0.4s;
}

.step-card.active .step-indicator,
.step-card:hover .step-indicator {
  background: var(--brand);
  color: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(29, 78, 216, 0.4);
}

.step-card:hover {
  transform: translateX(10px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(13, 17, 23, 0.08);
  border-color: var(--brand-mid);
}

.step-body h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.step-tags {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.step-tags span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(29, 78, 216, 0.05);
  color: var(--brand);
  padding: 4px 10px;
  border-radius: 4px;
}

/* PULSE ENGINE VISUAL */
.lifecycle-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 150px;
}

.pulse-engine {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-core {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(29, 78, 216, 0.2);
}

.p-core img {
  width: 60px;
}

.p-ring {
  position: absolute;
  border: 1px solid var(--brand-light);
  border-radius: 50%;
  animation: pulseRotate 10s linear infinite;
}

.p1 {
  width: 150px;
  height: 150px;
  animation-duration: 15s;
}

.p2 {
  width: 220px;
  height: 220px;
  animation-duration: 25s;
  border-style: dashed;
}

.p3 {
  width: 300px;
  height: 300px;
  animation-duration: 35s;
  opacity: 0.3;
}

.p-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--brand);
}

.d1 {
  top: 10%;
  left: 50%;
  animation: orbit1 10s linear infinite;
}

.d2 {
  bottom: 20%;
  right: 10%;
  animation: orbit1 15s linear reverse infinite;
}

@keyframes pulseRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit1 {
  from {
    transform: rotate(0deg) translateX(110px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(110px) rotate(-360deg);
  }
}

@media (max-width: 1024px) {
  .lifecycle-layout {
    flex-direction: column;
    gap: 60px;
  }

  .lifecycle-visual {
    position: relative;
    top: 0;
    order: -1;
  }
}

@media (max-width: 640px) {
  .stepper-wrap {
    padding-left: 40px;
  }

  .step-indicator {
    left: -50px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .stepper-line {
    left: 15px;
  }
}

/* ========================================
   COMPACT ANIMATED LIFECYCLE (HORIZONTAL)
   ======================================== */

.lifecycle-compact {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.compact-flow {
  margin-top: 80px;
  position: relative;
}

.flow-line {
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.flow-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--brand);
  box-shadow: 0 0 15px var(--brand);
  animation: flowFill 4s ease-in-out infinite;
}

@keyframes flowFill {
  0% {
    width: 0;
    left: 0;
  }

  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fn-dot {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
  transition: all 0.4s;
}

.flow-node:hover .fn-dot {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 20px rgba(29, 78, 216, 0.4);
  transform: scale(1.1);
}

.fn-card {
  padding: 30px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s;
  width: 100%;
}

.fn-card i {
  font-size: 24px;
  color: var(--brand);
  margin-bottom: 20px;
  transition: all 0.4s;
}

.fn-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.fn-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.flow-node:hover .fn-card {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-light);
}

.flow-node:hover .fn-card i {
  transform: scale(1.2) rotate(5deg);
}

@media (max-width: 1024px) {
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .flow-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .flow-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   MOBILE TYPOGRAPHY REFINEMENTS (NEATNESS)
   ======================================== */

@media (max-width: 768px) {

  /* Global Headings */
  h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  h3 {
    font-size: 1.4rem !important;
  }

  h4 {
    font-size: 1.1rem !important;
  }

  p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  .section-pill {
    font-size: 10px !important;
    padding: 4px 12px !important;
  }

  /* Specific Section Overrides for Compactness */
  .wwd-info h2 {
    margin-bottom: 20px;
  }

  .mt-content h3 {
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
  }

  .mt-tag {
    font-size: 9px !important;
    padding: 4px 8px !important;
  }

  .fn-card h4 {
    font-size: 1.1rem !important;
  }

  .compact-flow {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.6rem !important;
  }

  .section-container {
    padding: 0 20px !important;
  }
}

/* ========================================
   MOBILE CENTER ALIGNMENT (NEATNESS)
   ======================================== */

@media (max-width: 768px) {

  /* Engineering Core Section */
  .ec-sidebar {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ec-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .ec-icon {
    margin: 0 auto;
  }

  /* What We Do Section */
  .wwd-info {
    text-align: center;
  }

  .wwd-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wwd-point i {
    margin-bottom: 10px;
  }

  /* Section Headers Global */
  .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========================================
   REIMAGINED: PREMIUM FAQs
   ======================================== */

.service-faq {
  padding: 80px 0;
  background: var(--surface);
}

.faq-premium-list {
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item-premium {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item-premium:hover {
  border-color: var(--brand-light);
  box-shadow: 0 20px 40px rgba(29, 78, 216, 0.05);
  transform: translateY(-2px);
}

.faq-toggle {
  width: 100%;
  padding: 30px 40px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.3s;
}

.faq-item-premium.active .faq-title {
  color: var(--brand);
}

.faq-arr {
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item-premium.active .faq-arr {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.5s;
  padding: 0 40px;
}

.faq-item-premium.active .faq-panel {
  max-height: 500px;
  padding: 0 40px 40px;
}

.faq-panel p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ========================================
   REIMAGINED: CREATIVE CTA
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, #1e3a8a 100%);
  border-radius: 40px;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-banner h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}

.btn-premium-cta {
  background: #fff;
  color: var(--brand);
  padding: 22px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  position: relative;
  z-index: 2;
}

.btn-premium-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  color: #1e3a8a;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 40px;
    border-radius: 20px;
  }

  .cta-banner h2 {
    font-size: 2.2rem;
  }

  .cta-banner p {
    font-size: 1.1rem;
  }

  .faq-toggle {
    padding: 24px 20px;
  }

  .faq-title {
    font-size: 1.1rem;
  }
}

/* ========================================
   NEAT & COMPACT FINISH: FAQs & CTA
   ======================================== */

.service-faq {
  padding: 60px 0 !important;
  /* Reduced section padding */
}

.faq-premium-list {
  max-width: 750px;
  /* Tighter width for neatness */
  gap: 12px;
  /* Closer spacing */
}

.faq-toggle {
  padding: 18px 30px !important;
  /* Compact toggle area */
}

.faq-title {
  font-size: 1.15rem !important;
  /* Neater title size */
}

.faq-panel {
  padding: 0 30px;
}

.faq-item-premium.active .faq-panel {
  padding: 0 30px 25px;
  /* Tighter answer padding */
}

.faq-panel p {
  font-size: 0.95rem !important;
  line-height: 1.6;
}

/* Compact CTA Banner */
.page-cta {
  padding: 40px 0 80px !important;
}

.cta-banner {
  padding: 60px 40px !important;
  /* Significantly reduced padding */
  border-radius: 30px !important;
}

.cta-banner h2 {
  font-size: 2.2rem !important;
  /* More concise heading scale */
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem !important;
  /* Compact description */
  margin-bottom: 30px;
  max-width: 500px;
}

.btn-premium-cta {
  padding: 16px 36px !important;
  /* Neater button size */
  font-size: 1rem !important;
}

@media (max-width: 768px) {
  .cta-banner h2 {
    font-size: 1.8rem !important;
  }
}

/* ========================================
   COMBINED CTA & FAQ HUB (SPLIT UI)
   ======================================== */

.cta-faq-hub {
  padding: 80px 0;
  background: var(--surface-2);
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.cf-cta h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 24px;
}

.cf-cta p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 450px;
}

/* Override premium CTA button for internal use */
.cf-cta .btn-premium-cta {
  background: var(--brand);
  color: #fff;
  padding: 18px 40px;
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
}

/* FAQ Side Adjustments */
.cf-faqs .faq-premium-list {
  max-width: 100%;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .cf-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .cf-cta p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .cf-cta h2 {
    font-size: 2.2rem;
  }
}

/* ========================================
   UNIQUE: INFINITY HUB (CTA + FAQs)
   ======================================== */

.infinity-hub {
  padding: 100px 0;
  background: var(--surface);
}

.hub-wrapper {
  background: #fff;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(13, 17, 23, 0.08);
  border: 1px solid var(--border);
}

.hub-blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
  pointer-events: none;
}

.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 80px 60px;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.hub-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-floating-badge {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  width: fit-content;
}

.hub-cta h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hub-cta p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* SONAR BUTTON EFFECT */
.sonar-btn-wrap {
  position: relative;
  width: fit-content;
}

.sonar-trigger {
  position: relative;
  z-index: 5;
}

.sonar-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: var(--brand);
  opacity: 0.3;
  z-index: 1;
  animation: sonarRipple 2s infinite;
}

@keyframes sonarRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/* UNIQUE FAQ STACK */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card-unique {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.fcu-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.fcu-header span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
  opacity: 0.5;
}

.fcu-header h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.fcu-body p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-card-unique:hover {
  transform: translateX(-15px) rotate(-1deg);
  border-color: var(--brand-light);
  box-shadow: 0 30px 60px rgba(29, 78, 216, 0.1);
}

.faq-card-unique:nth-child(2):hover {
  transform: translateX(-15px) rotate(1deg);
}

@media (max-width: 1024px) {
  .hub-grid {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    gap: 60px;
    text-align: center;
  }

  .hub-cta {
    align-items: center;
  }

  .faq-card-unique:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 640px) {
  .hub-cta h2 {
    font-size: 2.2rem;
  }

  .hub-wrapper {
    border-radius: 20px;
  }
}

/* ========================================
   UNIQUE: BENTO TECHNICAL HUB
   ======================================== */

.bento-hub {
  padding: 80px 0;
  background: var(--surface);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(200px, auto));
  gap: 24px;
}

.bento-item {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid var(--border);
}

.bento-inner {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* CTA Card */
.bento-cta {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-cta .bento-inner {
  background: linear-gradient(135deg, var(--brand) 0%, #1e3a8a 100%);
  color: #fff;
}

.bento-cta h2 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 24px;
  margin-bottom: 20px;
}

.bento-cta p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.bento-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: auto;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 18px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.btn-glass:hover {
  background: #fff;
  color: var(--brand);
}

.bento-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ Cards */
.bento-faq .bento-inner {
  justify-content: center;
  background: var(--brand-light);
  border-color: var(--brand-mid);
}

.bento-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand);
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.1);
}

.bento-faq h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Stat Card */
.bento-stat .bento-inner {
  background: #fff;
  justify-content: center;
  text-align: center;
}

.stat-large {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 15px;
}

.stat-large small {
  font-size: 2.5rem;
  margin-left: 2px;
}

/* Hover effects */
.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(13, 17, 23, 0.1);
}

.bento-cta:hover .bento-inner {
  background: linear-gradient(135deg, #1e3a8a 0%, var(--brand) 100%);
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-cta {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-cta {
    grid-column: span 1;
  }

  .bento-cta h2 {
    font-size: 2.2rem;
  }

  .bento-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ========================================
   GLOBAL THEME GRADIENTS (ELIMINATE WHITE EDGES)
   ======================================== */

.service-page {
  background: linear-gradient(180deg, #fdfdff 0%, #f9faff 100%);
}

.methodology-section,
.what-we-do,
.why-choose-premium,
.lifecycle-compact,
.infinity-hub {
  position: relative;
  background: transparent !important;
  /* Let the global gradient breathe */
}

/* Subtle underlying mesh for depth */
.service-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(29, 78, 216, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(29, 78, 216, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure sections are spaced to show the theme */
.section-container {
  position: relative;
  z-index: 1;
}

/* Give cards a slight "lift" over the new theme */
.prism-card .pc-inner,
.fcu-header,
.fn-card {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.engineering-core {
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ---- PREMIUM CLOUD FAQS ---- */
.cloud-faqs {
  padding: 40px 0;
  background: var(--surface);
}


.faq-accordion-premium {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-card-premium {
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-q-trigger {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  position: relative;
}

.faq-q-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.4;
}

.faq-q-trigger h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s ease;
}

.faq-plus {
  margin-left: auto;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.4s ease;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background: var(--brand);
  transition: all 0.4s ease;
}

.faq-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-a-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 40px 0 92px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  padding-bottom: 30px;
}

/* Active State */
.faq-card-premium.active {
  border-color: var(--brand);
  box-shadow: 0 20px 40px rgba(29, 78, 216, 0.05);
}

.faq-card-premium.active .faq-q-trigger h3 {
  color: var(--brand);
}

.faq-card-premium.active .faq-plus {
  transform: rotate(45deg);
}

.faq-card-premium.active .faq-a-panel {
  max-height: 500px;
}

@media (max-width: 640px) {
  .faq-q-trigger {
    padding: 20px 24px;
    gap: 16px;
  }

  .faq-q-trigger h3 {
    font-size: 1.1rem;
  }

  .faq-a-panel {
    padding: 0 24px 0 64px;
  }
}


/* ---- NARRATIVE STRATEGY SECTION ---- */
.narrative-strategy {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.ns-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

.ns-item {
  grid-column: span 12;
  position: relative;
  margin-bottom: 40px;
}

.ns-item:nth-child(1) {
  grid-column: 1 / span 8;
}

.ns-item:nth-child(2) {
  grid-column: 5 / span 8;
}

.ns-item:nth-child(3) {
  grid-column: 3 / span 8;
}

.ns-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px rgba(13, 17, 23, 0.02);
}

.ns-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 40px 80px rgba(13, 17, 23, 0.08);
}

.ns-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-light);
  opacity: 0.15;
  transition: all 0.5s ease;
  user-select: none;
  pointer-events: none;
}

.ns-card:hover .ns-number {
  opacity: 0.3;
  transform: scale(1.1) translateX(-10px);
}

.ns-icon {
  width: 50px;
  height: 50px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.ns-card:hover .ns-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(10deg);
}

.ns-content {
  position: relative;
  z-index: 2;
}

.ns-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.ns-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 800px;
}

.ns-glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1024px) {

  .ns-item:nth-child(1),
  .ns-item:nth-child(2),
  .ns-item:nth-child(3) {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .narrative-strategy {
    padding: 40px 0;
  }

  .ns-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ns-card {
    padding: 40px 30px;
    border-radius: 24px;
  }

  .ns-number {
    font-size: 60px;
    top: 5px;
    right: 15px;
  }

  .ns-content h3 {
    font-size: 1.5rem;
  }

  .ns-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
  }

  .ns-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 16px;
  }
}

/* ========================================
   AI & AGENTIC SOLUTIONS: FUTURISTIC UI
   ======================================== */

.ai-hero {
  padding: 80px 0 40px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}


.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}


.ai-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
  z-index: 1;
}

.ai-hero .section-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ai-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ai-hero h1 {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

.ai-hero p {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 600px;
  margin-bottom: 50px;
}

.ai-hero-btns {
  display: flex;
  gap: 20px;
}

/* AI ORB ANIMATION */
.ai-orb-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.ai-orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 80px var(--brand),
    inset 0 0 30px rgba(255, 255, 255, 0.4);
  animation: orbPulse 4s infinite ease-in-out;
}

.ai-orb-inner-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent);
}


.ai-orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  animation: orbRotate 10s infinite linear;
}

.ai-orb-ring {
  width: 240px;
  height: 240px;
}

.ai-orb-ring.delay-1 {
  width: 320px;
  height: 320px;
  animation-duration: 15s;
  border-style: dashed;
}

.ai-orb-ring.delay-2 {
  width: 400px;
  height: 400px;
  animation-duration: 20s;
  opacity: 0.1;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

@keyframes orbRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* THE NEURAL GRID */
.neural-grid-section {
  padding: 40px 0;
  background: var(--surface);
}


.n-grid-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 24px;
}


.bento-large {
  grid-row: span 2;
  grid-column: span 1;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.n-mini-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 10px;
}

.n-flex-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.n-features-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.n-features-box span {
  background: rgba(0, 0, 0, 0.03);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border);
}


.n-card {
  height: 100%;
}

.n-card-inner {
  background: #fff;
  border-radius: 32px;
  padding: 50px;
  height: 100%;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.n-card-inner:hover {
  transform: translateY(-10px);
  border-color: var(--brand);
  box-shadow: 0 40px 80px rgba(13, 17, 23, 0.08);
}

.n-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.n-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}

.n-card-inner p {
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 30px;
}

.n-list {
  list-style: none;
  padding: 0;
}

.n-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.n-list li i {
  color: var(--brand);
}

/* AGENT LOGIC SPLIT */
.agent-logic {
  padding: 40px 0;
  background: #fff;
}


.al-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.al-text h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.al-text p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.al-features-v2 {
  display: grid;
  gap: 24px;
}

.alf-item {
  display: flex;
  gap: 20px;
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.alf-item:hover {
  background: #fff;
  border-color: var(--brand);
  transform: translateX(10px);
}

.alf-icon {
  width: 50px;
  height: 50px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.alf-info h4 {
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--ink);
}

.alf-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* FLOW UI GRAPHIC */
.ai-flow-ui {
  position: relative;
  width: 100%;
  height: 450px;
  background: var(--surface);
  border-radius: 40px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.ai-flow-ui .flow-node {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 20px;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ai-flow-ui .flow-node.central {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand);
  color: #fff;
  font-size: 32px;
  border: none;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.ai-flow-ui .flow-node.orbital {
  animation: orbitalFlow 20s infinite linear;
}

.ai-flow-ui.premium-ui {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.1);
}

.sonar-main::after,
.sonar-node::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  animation: sonarPulse 2.5s infinite ease-out;
  opacity: 0;
}

.sonar-main::after {
  border-color: #fff;
}

@keyframes sonarPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.premium-ui {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.1);
}


/* Node Positioning in circular orbit */
.n1 {
  top: 15%;
  left: 15%;
}

.n2 {
  top: 15%;
  right: 15%;
}

.n3 {
  bottom: 15%;
  left: 15%;
}

.n4 {
  bottom: 15%;
  right: 15%;
}

@keyframes orbitalFlow {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -10px);
  }

  50% {
    transform: translate(0px, -20px);
  }

  75% {
    transform: translate(-10px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@media (max-width: 1024px) {

  .ai-hero .section-container,
  .al-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .ai-hero h1 {
    font-size: 3rem;
  }

  .ai-hero p,
  .al-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .ai-hero-btns {
    justify-content: center;
  }

  .n-grid-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-large,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .al-features-v2 {
    gap: 16px;
  }

  .alf-item:hover {
    transform: none;
  }
}


@media (max-width: 640px) {
  .ai-hero h1 {
    font-size: 2.5rem;
  }

  .n-card-inner {
    padding: 30px;
  }

  .ai-orb-container {
    width: 280px;
    height: 280px;
  }

  .ai-orb-ring {
    width: 180px;
    height: 180px;
  }

  .ai-orb-ring.delay-1 {
    width: 240px;
    height: 240px;
  }

  .ai-orb-ring.delay-2 {
    width: 280px;
    height: 280px;
  }
}

/* ---- AI ROADMAP SECTION ---- */
.ai-roadmap {
  padding: 40px 0;
  background: var(--surface);
}


.roadmap-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.roadmap-item {
  flex: 1 1 calc(25% - 30px);
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
}

.roadmap-item:hover {
  transform: translateY(-10px);
  border-color: var(--brand);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.rm-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.4;
  /* Significant visibility boost */
  position: absolute;
  top: 20px;
  right: 30px;
}




.rm-content h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.rm-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- AI ECOSYSTEM SECTION ---- */
.ai-ecosystem {
  padding: 40px 0;
  background: #fff;
}


.eco-box {
  background: var(--ink);
  padding: 80px;
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.eco-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent 60%);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.eco-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.eco-item i {
  color: var(--brand-light);
  font-size: 20px;
}

.eco-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 1024px) {

  .ai-hero .section-container,
  .al-split,
  .eco-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .ai-hero h1 {
    font-size: 3rem;
  }

  .ai-flow-ui .flow-node.orbital {
    animation: orbitalFlow 20s infinite linear;
  }

  .ai-flow-ui.premium-ui {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .sonar-main::after,
  .sonar-node::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--brand);
    border-radius: 50%;
    animation: sonarPulse 2.5s infinite ease-out;
    opacity: 0;
  }

  .sonar-main::after {
    border-color: #fff;
  }

  @keyframes sonarPulse {
    0% {
      transform: scale(0.8);
      opacity: 0.6;
    }

    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  .premium-ui {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.1);
  }


  /* Node Positioning in circular orbit */
  .n1 {
    top: 15%;
    left: 15%;
  }

  .n2 {
    top: 15%;
    right: 15%;
  }

  .n3 {
    bottom: 15%;
    left: 15%;
  }

  .n4 {
    bottom: 15%;
    right: 15%;
  }

  @keyframes orbitalFlow {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }

    25% {
      transform: translate(10px, -10px);
    }

    50% {
      transform: translate(0px, -20px);
    }

    75% {
      transform: translate(-10px, -10px);
    }

    100% {
      transform: translate(0, 0);
    }
  }

  @media (max-width: 1024px) {

    .ai-hero .section-container,
    .al-split {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 60px;
    }

    .ai-hero h1 {
      font-size: 3rem;
    }

    .ai-hero p,
    .al-text p {
      margin-left: auto;
      margin-right: auto;
    }

    .ai-hero-btns {
      justify-content: center;
    }

    .n-grid-bento {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
    }

    .bento-large,
    .bento-wide {
      grid-column: span 1;
      grid-row: span 1;
    }

    .al-features-v2 {
      gap: 16px;
    }

    .alf-item:hover {
      transform: none;
    }
  }


  @media (max-width: 640px) {
    .ai-hero h1 {
      font-size: 2.5rem;
    }

    .n-card-inner {
      padding: 30px;
    }

    .ai-orb-container {
      width: 280px;
      height: 280px;
    }

    .ai-orb-ring {
      width: 180px;
      height: 180px;
    }

    .ai-orb-ring.delay-1 {
      width: 240px;
      height: 240px;
    }

    .ai-orb-ring.delay-2 {
      width: 280px;
      height: 280px;
    }
  }

  /* ---- AI ROADMAP SECTION ---- */
  .ai-roadmap {
    padding: 40px 0;
    background: var(--surface);
  }


  .roadmap-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
  }

  .roadmap-item {
    flex: 1 1 calc(25% - 30px);
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
  }

  .roadmap-item:hover {
    transform: translateY(-10px);
    border-color: var(--brand);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
  }

  .rm-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.4;
    /* Significant visibility boost */
    position: absolute;
    top: 20px;
    right: 30px;
  }




  .rm-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
  }

  .rm-content p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ---- AI ECOSYSTEM SECTION ---- */
  .ai-ecosystem {
    padding: 40px 0;
    background: #fff;
  }


  .eco-box {
    background: var(--ink);
    padding: 80px;
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .eco-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent 60%);
  }

  .eco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .eco-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .eco-item i {
    color: var(--brand-light);
    font-size: 20px;
  }

  .eco-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
  }

  /* RESPONSIVE OVERRIDES */
  @media (max-width: 1024px) {

    .ai-hero .section-container,
    .al-split,
    .eco-box {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 60px;
    }

    .ai-hero h1 {
      font-size: 3rem;
    }

    .ai-hero p,
    .al-text p {
      margin-left: auto;
      margin-right: auto;
    }

    .ai-hero-btns {
      justify-content: center;
    }

    .n-grid-bento {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
    }

    .bento-large,
    .bento-wide {
      grid-column: span 1;
      grid-row: span 1;
    }

    .al-features-v2 {
      gap: 16px;
    }

    .alf-item:hover {
      transform: none;
    }

    .eco-box {
      padding: 40px;
    }
  }

  @media (max-width: 768px) {
    .roadmap-flex {
      gap: 20px;
    }

    .roadmap-item {
      flex: 1 1 100%;
      padding: 30px;
    }

    .eco-grid {
      grid-template-columns: 1fr;
    }

    .ai-hero h1 {
      font-size: 2.6rem;
    }

    .al-text h2 {
      font-size: 2.4rem;
    }
  }

  @media (max-width: 640px) {
    .ai-hero h1 {
      font-size: 2.2rem;
    }

    .n-card-inner {
      padding: 30px;
    }

    .ai-orb-container {
      width: 280px;
      height: 280px;
    }

    .ai-orb-ring {
      width: 180px;
      height: 180px;
    }
  }

  @keyframes sfPulse {
    0% {
      transform: scale(1);
      opacity: 0.6;
    }

    100% {
      transform: scale(1.6);
      opacity: 0;
    }
  }

  @keyframes orbitalFlow {
    0% {
      transform: translate(0, 0);
    }

    50% {
      transform: translate(0, -20px);
    }
  }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

.mission-vision-section {
  padding: 40px 0;
  overflow: hidden;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.mv-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.mv-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mv-card-unique {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mv-card-unique:hover {
  transform: translateY(-5px);
  border-color: var(--brand-mid);
}

.mv-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.mv-txt h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.mv-txt p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.mv-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mv-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mv-image-wrap:hover img {
  transform: scale(1.05);
}

.mv-floating-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.mv-floating-badge i {
  color: var(--success);
  font-size: 20px;
}

.mv-floating-badge span {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Why Choose Section */
.why-about-section {
  padding: 40px 0;
  background: var(--surface-2);
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-feat-card {
  background: var(--surface);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-feat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-light);
}

.wf-num {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 4rem;
  font-weight: 800;
  color: var(--surface-3);
  line-height: 1;
  z-index: 0;
  transition: color 0.3s;
}

.why-feat-card:hover .wf-num {
  color: var(--brand-light);
}

.wf-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.why-feat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--ink);
  position: relative;
  z-index: 2;
}

.why-feat-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

/* Core Values Section */
.core-values-section {
  padding: 60px 0;
}

.cv-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.cv-sidebar h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}

.cv-sidebar p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.cv-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cv-card {
  display: flex;
  gap: 32px;
  padding: 40px;
  background: var(--surface-2);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: transform 0.4s ease;
}

.cv-card:hover {
  background: var(--surface);
  border-color: var(--brand-mid);
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.cv-icon {
  width: 64px;
  height: 64px;
  background: var(--surface);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.cv-text h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.cv-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* About Stats */
.about-stats {
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
}

.stats-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.sp-item {
  text-align: center;
}

.sp-val {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 30%, var(--brand-mid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.sp-lab {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted-2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mv-content {
    order: 2;
  }

  .mv-visual {
    order: 1;
  }

  .cv-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .stats-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sp-val {
    font-size: 3rem;
  }

  .cv-card {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }

  .cv-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

.featured-blog-section {
  padding: 100px 0 60px;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.fbc-image {
  position: relative;
  height: 450px;
}

.fbc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fbc-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--brand);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fbc-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fbc-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.fbc-meta i {
  color: var(--brand-mid);
}

.fbc-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink);
}

.fbc-content p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.fbc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.author span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}

.btn-read {
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}

.btn-read:hover {
  transform: translateX(5px);
}

/* Blog Grid */
.blog-grid-section {
  padding: 60px 0 60px;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.bf-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  transition: all 0.3s ease;
}

.bf-btn:hover,
.bf-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}

.bc-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .bc-img img {
  transform: scale(1.08);
}

.bc-category {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.bc-body {
  padding: 30px;
}

.bc-meta {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 12px;
}

.bc-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.4;
}

.bc-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bc-link {
  font-weight: 700;
  color: var(--brand);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.btn-page {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink-3);
}

.btn-page.disabled {
  opacity: 0.4;
  cursor: default;
}

.page-nums {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.p-num:hover,
.p-num.active {
  background: var(--brand-light);
  color: var(--brand);
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: var(--surface-2);
}

.newsletter-box {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.newsletter-box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--brand);
  filter: blur(100px);
  opacity: 0.2;
  transform: translateY(-50%);
}

.nl-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.nl-content p {
  color: var(--muted-2);
  font-size: 1.1rem;
  line-height: 1.6;
}

.nl-form {
  display: flex;
  gap: 12px;
}

.nl-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.nl-input:focus {
  border-color: var(--brand-mid);
}

.nl-submit {
  background: var(--brand);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
}

.nl-submit:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
  }

  .fbc-image {
    height: 350px;
  }

  .newsletter-box {
    grid-template-columns: 1fr;
    padding: 40px;
    text-align: center;
  }

  .nl-form {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .fbc-content {
    padding: 30px;
  }

  .fbc-content h2 {
    font-size: 1.8rem;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-submit {
    justify-content: center;
  }
}

/* ========================================
   CONTACT US PAGE STYLES
   ======================================== */

.contact-info-section {
  padding: 40px 0 60px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ci-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.ci-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}

.ci-icon {
  width: 70px;
  height: 70px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 30px;
}

.ci-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.ci-card p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.ci-link {
  font-weight: 700;
  color: var(--brand);
  font-size: 1.05rem;
}

/* Engagement Process */
.engagement-process-section {
  padding: 40px 0;
  background: var(--surface-2);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.ps-item {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.ps-item:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.ps-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.5;
}

.ps-content h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.ps-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Premium Full Width Form Section */
.premium-form-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
}

.pf-box {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 80px;
  border-radius: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
}

.pf-form-wrap {
  margin-top: 50px;
}

/* Dedicated FAQ Section */
.dedicated-faq-section {
  padding: 120px 0;
}

.dedicated-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  margin-top: 80px;
}

.df-item {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.df-item h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 15px;
}

.df-item h3::before {
  content: '\f059';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--brand);
}

.df-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* World Reach */
.world-reach-section {
  padding: 100px 0;
  background: var(--surface-2);
}

.world-box {
  background: var(--ink);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: #fff;
}

.world-content {
  padding: 80px;
}

.world-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.world-content p {
  color: var(--muted-2);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 50px;
}

.office-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.office-item {
  display: flex;
  flex-direction: column;
}

.office-item strong {
  font-size: 1.2rem;
  color: var(--brand-light);
  margin-bottom: 5px;
}

.office-item span {
  color: #fff;
  opacity: 0.8;
}

.world-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.5s ease;
}

.world-box:hover .world-visual img {
  filter: grayscale(0) brightness(1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-box {
    padding: 40px 20px;
  }

  .dedicated-faq-grid {
    grid-template-columns: 1fr;
  }

  .world-box {
    grid-template-columns: 1fr;
  }

  .world-content {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .office-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   GET A QUOTE PAGE STYLES
   ======================================== */

.estimation-intro-section {
  padding: 40px 0;
}

.estimation-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.ei-text h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 24px;
}

.ei-text p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.ei-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eif-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.eif-item i {
  color: var(--success);
  font-size: 20px;
}

/* Readiness Grid */
.readiness-section {
  padding: 100px 0;
  background: var(--surface-2);
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.rg-card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.rg-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.rg-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.rg-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.rg-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Quote Form Section */
.quote-form-section {
  padding: 120px 0;
}

.quote-box-premium {
  background: #fff;
  padding: 80px;
  border-radius: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.quote-form-wrap {
  margin-top: 60px;
}

/* Quote CTA Footer */
.quote-cta-footer {
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.qcf-content h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.qcf-content p {
  color: var(--muted-2);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.qcf-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .estimation-flex {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .readiness-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-box-premium {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .readiness-grid {
    grid-template-columns: 1fr;
  }

  .qcf-btns {
    flex-direction: column;
  }
}