/* ============================================================
   WEB TECHNOCRATS — Design System & Core Styles
   Phase 1: Foundation + Navigation + Hero
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Backgrounds — slightly lifted for richer contrast */
  --bg-primary: #0B0D12;
  --bg-secondary: #12161E;
  --bg-card: #1A1F2A;
  --bg-elevated: #222833;

  /* Accent — brighter metallic gold */
  --accent: #E0BC4A;
  --accent-hover: #FFE08A;
  --accent-deep: #B8922A;
  --accent-muted: rgba(224, 188, 74, 0.18);
  --accent-glow: rgba(224, 188, 74, 0.45);
  --gold-shine: linear-gradient(
    135deg,
    #8B6914 0%,
    #E0BC4A 22%,
    #FFF1B0 45%,
    #E0BC4A 62%,
    #C9A227 82%,
    #FFE08A 100%
  );
  --gold-shine-soft: linear-gradient(
    120deg,
    rgba(255, 241, 176, 0.9) 0%,
    rgba(224, 188, 74, 0.55) 40%,
    rgba(255, 224, 138, 0.85) 70%,
    rgba(201, 162, 39, 0.5) 100%
  );

  /* Text */
  --text-white: #FFFFFF;
  --text-secondary: #B4B9C3;
  --text-muted: #7A8190;

  /* Borders — brighter edge definition */
  --border: rgba(224, 188, 74, 0.28);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-shine: rgba(255, 241, 176, 0.35);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows — more luminous */
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 40px rgba(224, 188, 74, 0.32);
  --shadow-glow: 0 0 80px rgba(224, 188, 74, 0.22);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.4s;

  /* Layout */
  --header-height: 80px;
  --container-max: 1240px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease-smooth);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow);
}

.cursor-spotlight {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}

body:hover .cursor-glow,
body:hover .cursor-spotlight {
  opacity: 1;
}

/* ---------- Loading Screen ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.loading-logo .logo-mark,
.loading-logo .logo-mark-img {
  width: 56px;
  height: 56px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: none;
  display: block;
  padding: 0;
  animation: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.loading-logo .logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.loading-bar-wrap {
  width: 220px;
  height: 2px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 2px;
  transition: width 0.15s linear;
}

.loading-percent {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-shine);
  background-size: 200% 200%;
  color: var(--bg-primary) !important;
  box-shadow:
    0 4px 24px rgba(224, 188, 74, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  animation: goldShimmer 4s ease infinite;
}

.btn-gold:hover {
  background: var(--gold-shine);
  background-size: 200% 200%;
  box-shadow:
    0 8px 36px rgba(224, 188, 74, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  color: var(--bg-primary) !important;
  filter: brightness(1.08);
}

.btn-outline-gold {
  background: rgba(224, 188, 74, 0.06);
  color: var(--accent-hover) !important;
  border: 1px solid rgba(224, 188, 74, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 241, 176, 0.12);
}

.btn-outline-gold:hover {
  background: var(--accent-muted);
  border-color: var(--accent-hover);
  color: var(--accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(224, 188, 74, 0.25), inset 0 1px 0 rgba(255, 241, 176, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white) !important;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
  transform: translateY(-2px);
}

/* Button Ripple */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn:active::after {
  opacity: 1;
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(11, 13, 18, 0.72);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(224, 188, 74, 0.18);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.site-header .navbar {
  height: var(--header-height);
  padding: 0;
}

.site-header .container {
  max-width: var(--container-max);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

img.brand-mark,
img.brand-logo,
img.footer-logo-mark,
img.logo-mark-img {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown */
.dropdown-glass {
  background: rgba(23, 27, 35, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  padding: 8px !important;
  min-width: 240px;
  box-shadow: var(--shadow-soft);
  margin-top: 12px !important;
  animation: dropdownIn 0.3s var(--ease-out);
}

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-glass .dropdown-item {
  color: var(--text-secondary) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
}

.dropdown-glass .dropdown-item i {
  width: 18px;
  color: var(--accent);
  font-size: 0.85rem;
}

.dropdown-glass .dropdown-item:hover {
  background: var(--accent-muted) !important;
  color: var(--text-white) !important;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 70%; }
.hamburger span:nth-child(3) { width: 85%; }

.navbar-toggler:hover .hamburger span:nth-child(2) {
  width: 100%;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile Offcanvas */
.mobile-menu {
  background: var(--bg-secondary) !important;
  border-left: 1px solid var(--border) !important;
  width: min(340px, 85vw) !important;
}

.mobile-menu .offcanvas-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-list a {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  color: var(--text-white);
  background: var(--accent-muted);
  padding-left: 22px;
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-contact a i {
  color: var(--accent);
  width: 16px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* Background Layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  animation: gridPulse 8s ease-in-out infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles .particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 560px;
  height: 560px;
  background: rgba(224, 188, 74, 0.14);
  top: -10%;
  right: 8%;
  animation: glowDrift 12s ease-in-out infinite;
}

.hero-glow-2 {
  width: 440px;
  height: 440px;
  background: rgba(100, 140, 255, 0.08);
  bottom: 5%;
  left: -5%;
  animation: glowDrift 15s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 340px;
  height: 340px;
  background: rgba(255, 224, 138, 0.1);
  top: 40%;
  left: 40%;
  animation: glowDrift 10s ease-in-out infinite 2s;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
}

/* Hero Content — Left */
.hero-content {
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--accent-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-accent {
  background: linear-gradient(
    110deg,
    #B8922A 0%,
    #E0BC4A 25%,
    #FFF6C8 48%,
    #F5D76E 62%,
    #E0BC4A 82%,
    #FFE08A 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  min-height: 1.15em;
  filter: drop-shadow(0 0 18px rgba(224, 188, 74, 0.35));
}

.typed-wrap {
  display: inline-block;
}

.typed-cursor {
  color: var(--accent) !important;
  -webkit-text-fill-color: var(--accent) !important;
  opacity: 1 !important;
}

.hero-desc {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Trust Stats */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1.5rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

/* ============================================================
   HERO VISUAL — Tech Illustration Canvas
   ============================================================ */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-canvas {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 540px;
  margin: 0 auto;
}

.center-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: orbPulse 4s ease-in-out infinite;
}

/* Float Cards Base */
.float-card {
  position: absolute;
  background: linear-gradient(
    165deg,
    rgba(36, 42, 55, 0.92) 0%,
    rgba(23, 27, 35, 0.88) 100%
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 188, 74, 0.22);
  border-radius: var(--radius-md);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 0 28px rgba(224, 188, 74, 0.08);
  z-index: 2;
  transition: box-shadow 0.4s, border-color 0.4s;
  will-change: transform;
}

.float-card:hover {
  box-shadow:
    var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 40px rgba(224, 188, 74, 0.18);
  border-color: rgba(224, 188, 74, 0.45);
}

.card-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
}

.card-chrome .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.card-chrome .dot.red { background: #FF5F57; }
.card-chrome .dot.yellow { background: #FEBC2E; }
.card-chrome .dot.green { background: #28C840; }

.chrome-url,
.chrome-title {
  margin-left: 8px;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Browser Card */
.browser-card {
  top: 8%;
  left: 5%;
  width: 260px;
  z-index: 3;
  animation: floatY 6s ease-in-out infinite;
}

.browser-body {
  padding: 14px;
}

.browser-nav-fake {
  height: 8px;
  width: 70%;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 12px;
}

.browser-hero-fake {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
}

.fake-line {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-bottom: 8px;
}

.fake-line.w-60 { width: 60%; }
.fake-line.w-40 { width: 40%; }

.fake-btn {
  width: 50px;
  height: 14px;
  background: var(--accent);
  border-radius: 7px;
  margin-top: 10px;
  opacity: 0.7;
}

.browser-grid-fake {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.fake-block {
  height: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: 5px;
  border: 1px solid var(--border-light);
}

/* Code Card */
.code-card {
  top: 42%;
  left: -2%;
  width: 210px;
  z-index: 4;
  animation: floatY 7s ease-in-out infinite 1s;
}

.code-body {
  padding: 12px 14px;
}

.code-body pre {
  margin: 0;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.7rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.c-kw { color: #C678DD; }
.c-fn { color: #61AFEF; }
.c-op { color: var(--accent); }
.c-str { color: #98C379; }

/* Dashboard Card */
.dashboard-card {
  top: 5%;
  right: 2%;
  width: 180px;
  padding: 14px;
  z-index: 3;
  animation: floatY 5.5s ease-in-out infinite 0.5s;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.dash-header i {
  color: var(--accent);
  font-size: 0.8rem;
}

.chart-svg {
  width: 100%;
  height: 40px;
}

.chart-line {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 2.5s ease forwards 1s;
}

.chart-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px var(--accent));
}

.dash-stats {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.stat-up {
  font-size: 1.1rem;
  font-weight: 700;
  color: #28C840;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* CRM Card */
.crm-card {
  bottom: 18%;
  right: 0;
  width: 200px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  animation: floatY 6.5s ease-in-out infinite 1.5s;
}

.crm-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.crm-info {
  display: flex;
  flex-direction: column;
}

.crm-title {
  font-size: 0.8rem;
  font-weight: 600;
}

.crm-meta {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.crm-pulse {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  background: #28C840;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

/* Mobile Mockup */
.mobile-card {
  bottom: 5%;
  left: 28%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  z-index: 5;
  animation: floatY 8s ease-in-out infinite 0.8s;
}

.phone-frame {
  width: 100px;
  height: 190px;
  background: var(--bg-card);
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 8px 6px;
  box-shadow: var(--shadow-soft), 0 0 30px rgba(212, 175, 55, 0.1);
  position: relative;
}

.phone-notch {
  width: 36px;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 8px;
}

.phone-screen {
  height: calc(100% - 13px);
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-header-fake {
  height: 10px;
  width: 50%;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 3px;
}

.app-card-fake {
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.app-card-fake.short {
  height: 24px;
  width: 70%;
}

.app-nav-fake {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding-top: 6px;
}

.app-nav-fake span {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.app-nav-fake span:first-child {
  background: var(--accent);
  opacity: 0.6;
}

/* Float Icons */
.float-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: linear-gradient(165deg, rgba(34, 40, 52, 0.95), rgba(23, 27, 35, 0.9));
  border: 1px solid rgba(224, 188, 74, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
  font-size: 1.1rem;
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 20px rgba(224, 188, 74, 0.12);
  z-index: 3;
  backdrop-filter: blur(12px);
  will-change: transform;
}

.cloud-icon {
  top: 28%;
  right: 8%;
  animation: floatY 5s ease-in-out infinite 2s;
}

.db-icon {
  bottom: 28%;
  left: 8%;
  animation: floatY 6s ease-in-out infinite 0.3s;
}

.ai-icon {
  top: 55%;
  right: 18%;
  width: auto;
  padding: 0 14px;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  animation: floatY 7s ease-in-out infinite 1.2s;
}

.ai-icon i {
  font-size: 0.95rem;
}

/* API Connection SVG */
.api-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.api-path {
  stroke: var(--accent);
  stroke-width: 1;
  stroke-dasharray: 8 6;
  fill: none;
  animation: dashMove 20s linear infinite;
}

.api-path.path-2 {
  animation-duration: 25s;
  animation-direction: reverse;
  opacity: 0.6;
}

.api-path.path-3 {
  animation-duration: 18s;
  opacity: 0.4;
}

.api-node {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px var(--accent));
  animation: pulseDot 3s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-eyebrow i {
  font-size: 0.75rem;
}

.text-gold {
  background: linear-gradient(
    110deg,
    #B8922A 0%,
    #E0BC4A 28%,
    #FFF6C8 50%,
    #F5D76E 68%,
    #E0BC4A 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
  filter: drop-shadow(0 0 12px rgba(224, 188, 74, 0.25));
}

/* ============================================================
   CLIENTS SECTION — Phase 2
   ============================================================ */
.clients-section {
  position: relative;
  padding: 100px 0 90px;
  background: var(--bg-secondary);
  overflow: hidden;
}

.clients-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.clients-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border) 20%,
    rgba(212, 175, 55, 0.35) 50%,
    var(--border) 80%,
    transparent 100%
  );
}

.clients-line-top { top: 0; }
.clients-line-bottom { bottom: 0; }

.clients-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.clients-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.clients-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Marquee */
.clients-marquee-wrap {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  min-height: 72px;
}

.clients-marquee-wrap--alt {
  margin-bottom: 48px;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, transparent 100%);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-secondary) 0%, transparent 100%);
}

.clients-marquee {
  overflow: hidden;
  width: 100%;
  min-height: 64px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  will-change: transform;
  opacity: 1 !important;
  visibility: visible !important;
}

.clients-marquee.is-paused .marquee-track {
  animation-play-state: paused !important;
}

/* Client Logo Cards */
.client-logo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: linear-gradient(165deg, rgba(34, 40, 52, 0.9), rgba(20, 22, 28, 0.95));
  border: 1px solid rgba(224, 188, 74, 0.22);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
  cursor: default;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.25);
}

.client-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.client-logo-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.client-logo-card:hover::before {
  opacity: 1;
}

.client-logo-card--outline {
  background: transparent;
  border-color: var(--border);
}

.logo-monogram {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #0E0F12;
  border: 1px solid rgba(245, 200, 66, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #F5C842;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 16px rgba(245, 200, 66, 0.4),
    0 0 32px rgba(245, 200, 66, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo-monogram i {
  filter: drop-shadow(0 0 6px rgba(245, 200, 66, 0.55));
}

.logo-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #F0EBD8;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.client-logo-card:hover .logo-name {
  color: var(--text-white);
}

.client-logo-card:hover .logo-monogram {
  background: linear-gradient(135deg, rgba(245, 200, 66, 0.2), #0E0F12);
  border-color: rgba(245, 200, 66, 0.55);
  box-shadow:
    0 0 22px rgba(245, 200, 66, 0.55),
    0 0 40px rgba(245, 200, 66, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #FFE08A;
}

/* Trust Strip */
.clients-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(11, 13, 18, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.trust-pill i {
  color: var(--accent);
  font-size: 0.85rem;
}

.trust-pill:hover {
  border-color: var(--border);
  color: var(--text-white);
  background: var(--accent-muted);
}

/* ============================================================
   ABOUT SECTION — Phase 3
   ============================================================ */
.about-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.07), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(90, 110, 255, 0.06), transparent 26%),
    var(--bg-primary);
  overflow: hidden;
}

.about-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.8;
}

.about-bg-shape-1 {
  width: 260px;
  height: 260px;
  background: rgba(212, 175, 55, 0.08);
  top: 10%;
  left: -4%;
}

.about-bg-shape-2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
  bottom: 8%;
  right: -4%;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 22px;
  max-width: 640px;
}

.about-lead {
  font-size: 1.06rem;
  color: var(--text-white);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 14px;
}

.about-copy {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 610px;
  margin-bottom: 30px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.about-feature-card {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 20px 18px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(26, 30, 38, 0.95), rgba(12, 14, 18, 0.92));
  border: 1px solid rgba(224, 188, 74, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 176, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.about-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 0%, rgba(224, 188, 74, 0.16), transparent 42%);
  pointer-events: none;
  opacity: 0.85;
}

.about-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 241, 176, 0.45), transparent);
  pointer-events: none;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 224, 138, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 176, 0.2),
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 36px rgba(224, 188, 74, 0.18);
}

.about-feature-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-shine);
  color: var(--bg-primary);
  font-size: 1.05rem;
  box-shadow:
    0 8px 22px rgba(224, 188, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.about-feature-card > div:last-child {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-feature-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.about-feature-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(224, 188, 74, 0.28);
  background: rgba(224, 188, 74, 0.06);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}

.about-badge-pill:hover {
  color: var(--bg-primary);
  border-color: transparent;
  background: var(--gold-shine);
  box-shadow: 0 8px 20px rgba(224, 188, 74, 0.28);
}

.about-visual-wrap {
  position: relative;
  z-index: 2;
  padding-left: 18px;
}

.about-visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.about-side-stack {
  display: grid;
  gap: 18px;
}

.about-panel {
  position: relative;
  background: rgba(23, 27, 35, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.08), transparent 52%);
  pointer-events: none;
}

.about-panel-primary {
  padding: 28px;
  min-height: 320px;
}

.about-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.about-panel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}

.about-panel-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.about-panel-primary h3 {
  font-size: 1.55rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 750;
  margin-bottom: 14px;
  max-width: 360px;
}

.about-panel-primary p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 420px;
  margin-bottom: 24px;
}

.about-panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-panel-metrics div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(11, 13, 18, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-panel-metrics strong {
  display: block;
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.about-panel-metrics span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-panel-mini {
  padding: 24px 22px;
  min-height: 151px;
}

.mini-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
}

.about-panel-mini h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.about-panel-mini p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-panel-wide {
  grid-column: 1 / -1;
  padding: 24px 26px;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 10px 8px 10px 0;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.1);
}

.timeline-step strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.timeline-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
}

.about-floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(23, 27, 35, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  color: var(--text-white);
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 3;
}

.about-floating-badge i {
  color: var(--accent);
}

.about-floating-badge-1 {
  top: -10px;
  right: 18px;
}

.about-floating-badge-2 {
  bottom: -16px;
  left: 44px;
}

/* ============================================================
   SERVICES SECTION — Phase 4
   ============================================================ */
.services-section {
  position: relative;
  padding: 110px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.services-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.services-glow-1 {
  width: 420px;
  height: 420px;
  background: rgba(212, 175, 55, 0.07);
  top: 8%;
  left: -8%;
}

.services-glow-2 {
  width: 360px;
  height: 360px;
  background: rgba(90, 120, 255, 0.05);
  bottom: 10%;
  right: -6%;
}

.services-heading {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0;
  max-width: 620px;
}

.services-intro {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.services-header-cta {
  padding: 12px 24px;
}

/* Bento Grid */
.services-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.service-card {
  position: relative;
  transform-style: preserve-3d;
}

.service-card--featured {
  grid-column: span 2;
}

.service-card-border {
  position: relative;
  height: 100%;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 241, 176, 0.55),
    rgba(224, 188, 74, 0.35) 35%,
    rgba(255, 255, 255, 0.1) 55%,
    rgba(224, 188, 74, 0.25) 100%
  );
  transition: all 0.4s var(--ease-out);
}

.service-card-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 246, 200, 0.8),
    transparent 40%,
    rgba(224, 188, 74, 0.55)
  );
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover .service-card-border::before {
  opacity: 1;
}

.service-card:hover .service-card-border {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 175, 55, 0.15);
}

.service-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 260px;
  padding: 28px;
  border-radius: 23px;
  background: linear-gradient(
    165deg,
    rgba(34, 40, 52, 0.96) 0%,
    rgba(23, 27, 35, 0.94) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), background 0.35s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.service-card--featured .service-card-inner {
  min-height: 300px;
  padding: 32px;
}

.service-card-inner::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover .service-card-inner::after {
  opacity: 1;
}

.service-card:hover .service-card-inner {
  background: rgba(28, 33, 43, 0.96);
}

.service-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(224, 188, 74, 0.22), rgba(224, 188, 74, 0.06));
  border: 1px solid rgba(224, 188, 74, 0.35);
  color: var(--accent-hover);
  font-size: 1.25rem;
  margin-bottom: 22px;
  transition: all 0.4s var(--ease-out);
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.4s var(--ease-out);
  animation: none;
}

.service-card:hover .service-icon-wrap {
  background: var(--gold-shine);
  background-size: 200% 200%;
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow:
    0 8px 24px rgba(224, 188, 74, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform: translateY(-4px) rotate(-6deg);
  animation: goldShimmer 3s ease infinite;
}

.service-card:hover .service-icon-ring {
  opacity: 1;
  transform: scale(1);
  animation: serviceRingPulse 1.6s ease-in-out infinite;
}

.service-index {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(212, 175, 55, 0.35);
  z-index: 1;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.3;
  z-index: 1;
}

.service-card--featured .service-title {
  font-size: 1.45rem;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
  z-index: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  z-index: 1;
}

.service-tags li {
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--accent);
  margin-top: auto;
  z-index: 1;
  transition: gap 0.3s, color 0.3s;
}

.service-link:hover {
  color: var(--accent-hover);
  gap: 12px;
}

/* Footer CTA panel */
.services-footer-cta {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.services-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 36px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 50%),
    rgba(23, 27, 35, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.services-cta-panel h3 {
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.services-cta-panel p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@keyframes serviceRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ============================================================
   WHY CHOOSE US SECTION — Phase 5
   ============================================================ */
.why-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(224, 188, 74, 0.1), transparent 28%),
    var(--bg-primary);
  overflow: hidden;
}

.why-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 188, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 188, 74, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 50%, black 10%, transparent 75%);
  pointer-events: none;
}

.why-sticky {
  position: sticky;
  top: 110px;
  padding-right: 12px;
}

.why-heading {
  font-size: clamp(1.9rem, 3.3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.why-lead {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 460px;
}

.why-quote {
  position: relative;
  margin: 0 0 32px;
  padding: 24px 24px 24px 28px;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(34, 40, 52, 0.9), rgba(23, 27, 35, 0.8));
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(224, 188, 74, 0.06);
}

.why-quote p {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: var(--text-white);
}

.why-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.why-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.why-proof {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s var(--ease-out);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why-proof:hover {
  border-color: var(--border);
  background: var(--accent-muted);
  box-shadow: 0 0 24px rgba(224, 188, 74, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.why-proof strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-hover);
  margin-bottom: 4px;
  text-shadow: 0 0 16px rgba(224, 188, 74, 0.35);
}

.why-proof span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.why-reasons {
  position: relative;
  padding-left: 28px;
}

.why-progress-line {
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.why-progress-fill {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #FFF6C8, var(--accent), var(--accent-deep));
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(224, 188, 74, 0.55);
  transition: height 0.15s linear;
}

.why-reason {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  cursor: default;
  transition: all 0.35s var(--ease-out);
}

.why-reason:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.why-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(224, 188, 74, 0.28);
  line-height: 1;
  padding-top: 14px;
  transition: color 0.35s, transform 0.35s, text-shadow 0.35s;
}

.why-reason-body {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.35s var(--ease-out);
}

.why-reason-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 1.05rem;
  transition: all 0.35s var(--ease-out);
}

.why-reason-body h3 {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.why-reason-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.why-reason:hover .why-num,
.why-reason.is-active .why-num {
  color: var(--accent-hover);
  transform: translateX(4px);
  text-shadow: 0 0 18px rgba(224, 188, 74, 0.45);
}

.why-reason:hover .why-reason-body,
.why-reason.is-active .why-reason-body {
  background: linear-gradient(165deg, rgba(34, 40, 52, 0.95), rgba(23, 27, 35, 0.9));
  border-color: var(--border);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 36px rgba(224, 188, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(6px);
}

.why-reason:hover .why-reason-icon,
.why-reason.is-active .why-reason-icon {
  background: var(--gold-shine);
  background-size: 200% 200%;
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(224, 188, 74, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: scale(1.06);
}

.why-reason:hover .why-reason-body h3,
.why-reason.is-active .why-reason-body h3 {
  color: var(--accent-hover);
}

/* ============================================================
   TECHNOLOGIES SECTION — Phase 6
   ============================================================ */
.tech-section {
  position: relative;
  padding: 110px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.tech-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.tech-orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(224, 188, 74, 0.12);
  top: 5%;
  right: -5%;
}

.tech-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(97, 175, 239, 0.08);
  bottom: 10%;
  left: -4%;
}

.tech-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.tech-heading {
  font-size: clamp(1.9rem, 3.3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0;
  max-width: 560px;
}

.tech-intro {
  max-width: 380px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  flex-shrink: 0;
}

.tech-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.tech-filter-btn {
  appearance: none;
  border: 1px solid var(--border-light);
  background: rgba(11, 13, 18, 0.45);
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tech-filter-btn:hover {
  color: var(--text-white);
  border-color: var(--border);
  background: var(--accent-muted);
}

.tech-filter-btn.active {
  color: var(--bg-primary);
  background: var(--gold-shine);
  background-size: 200% 200%;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(224, 188, 74, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: goldShimmer 4s ease infinite;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 2;
}

.tech-card {
  position: relative;
  padding: 26px 22px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(34, 40, 52, 0.92), rgba(23, 27, 35, 0.85));
  border: 1px solid var(--border-light);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  cursor: default;
  transition: all 0.4s var(--ease-out);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tech-card.is-hidden {
  display: none;
}

.tech-card-glow {
  position: absolute;
  inset: auto -30% -40% -30%;
  height: 70%;
  background: radial-gradient(circle, rgba(224, 188, 74, 0.28), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 188, 74, 0.5);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 42px rgba(224, 188, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.tech-card:hover .tech-card-glow {
  opacity: 1;
}

.tech-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  background: rgba(11, 13, 18, 0.5);
  color: var(--accent);
  transition: all 0.35s var(--ease-out);
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tech-text-logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.tech-card:hover .tech-card-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 22px rgba(224, 188, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tech-card-icon.laravel { color: #FF2D20; }
.tech-card-icon.php { color: #777BB4; }
.tech-card-icon.flutter { color: #54C5F8; }
.tech-card-icon.wordpress { color: #21759B; }
.tech-card-icon.woo { color: #96588A; }
.tech-card-icon.shopify { color: #95BF47; }
.tech-card-icon.node { color: #68A063; }
.tech-card-icon.react,
.tech-card-icon.rn { color: #61DAFB; }
.tech-card-icon.nextjs { color: var(--text-white); }
.tech-card-icon.python { color: #3776AB; }
.tech-card-icon.ai { color: var(--accent-hover); }
.tech-card-icon.aws { color: #FF9900; }
.tech-card-icon.docker { color: #2496ED; }
.tech-card-icon.azure { color: #00A4EF; }
.tech-card-icon.bootstrap { color: #7952B3; }

.tech-card h3 {
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.tech-card p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 18px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.tech-level {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-hover);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.tech-level i {
  font-size: 0.65rem;
  opacity: 0.8;
}

.tech-footnote {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(224, 188, 74, 0.25);
  background: linear-gradient(135deg, rgba(224, 188, 74, 0.08), rgba(11, 13, 18, 0.4));
  position: relative;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tech-footnote p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tech-footnote p i {
  color: var(--accent-hover);
  margin-top: 4px;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #080a0e 0%, #050608 100%);
  border-top: 1px solid rgba(224, 188, 74, 0.2);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 85vw);
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(224, 188, 74, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 28px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  margin-bottom: 48px;
  border-radius: 18px;
  border: 1px solid rgba(224, 188, 74, 0.28);
  background:
    linear-gradient(135deg, rgba(224, 188, 74, 0.1), rgba(12, 14, 18, 0.92) 42%, rgba(8, 10, 14, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 241, 176, 0.12);
}

.footer-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-cta-text h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.footer-cta-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 480px;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.25fr;
  gap: 40px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: none;
  flex-shrink: 0;
}

.footer-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.footer-logo-copy strong {
  color: var(--text-white);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-logo-copy small {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-about {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(224, 188, 74, 0.22);
  background: rgba(224, 188, 74, 0.06);
  color: var(--accent-hover);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent) !important;
  border: 1px solid rgba(224, 188, 74, 0.3);
  background: rgba(224, 188, 74, 0.07);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
}

.footer-social a .fa-whatsapp {
  font-size: 1.15rem;
}

.footer-social a:hover {
  color: var(--bg-primary) !important;
  background: var(--gold-shine);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(224, 188, 74, 0.32);
  transform: translateY(-2px);
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--text-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s var(--ease-out);
}

.footer-links a:hover {
  color: var(--accent-hover);
}

.footer-panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-panel-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-panel-row > i {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  background: rgba(224, 188, 74, 0.1);
  border: 1px solid rgba(224, 188, 74, 0.22);
  font-size: 0.78rem;
}

.footer-panel-row > i.fa-whatsapp {
  font-size: 1.05rem;
}

.footer-panel-row strong {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-panel-row span,
.footer-panel-row a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
  word-break: break-word;
}

.footer-panel-row a:hover {
  color: var(--accent-hover);
}

.footer-newsletter {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-newsletter label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-newsletter-row {
  display: flex;
  gap: 8px;
}

.footer-newsletter-row input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.25s var(--ease-out);
}

.footer-newsletter-row input::placeholder {
  color: var(--text-muted);
}

.footer-newsletter-row input:focus {
  border-color: rgba(224, 188, 74, 0.45);
}

.footer-newsletter-row button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: var(--gold-shine);
  color: var(--bg-primary);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.footer-newsletter-row button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(224, 188, 74, 0.35);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.25s var(--ease-out);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ============================================================
   SPA SECTIONS — Portfolio / Industries / Careers / Blog / Contact
   ============================================================ */
.spa-section {
  position: relative;
  padding: 96px 0;
  background: var(--bg-primary);
}

.spa-section-alt {
  background: linear-gradient(180deg, #0a0c10 0%, #080a0e 100%);
}

.spa-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.spa-header h2 {
  margin: 12px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.spa-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.spa-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.spa-card {
  padding: 26px 22px;
  border-radius: 18px;
  border: 1px solid rgba(224, 188, 74, 0.22);
  background: linear-gradient(160deg, rgba(26, 30, 38, 0.95), rgba(12, 14, 18, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 241, 176, 0.1);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.spa-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 224, 138, 0.45);
}

.spa-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--gold-shine);
  color: var(--bg-primary);
  box-shadow: 0 8px 20px rgba(224, 188, 74, 0.3);
}

.spa-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.spa-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.spa-meta {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.spa-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.spa-pill-grid span {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(224, 188, 74, 0.28);
  background: rgba(224, 188, 74, 0.07);
  color: var(--accent-hover);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-form {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(224, 188, 74, 0.25);
  background: linear-gradient(160deg, rgba(26, 30, 38, 0.95), rgba(12, 14, 18, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 241, 176, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s var(--ease-out);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(224, 188, 74, 0.5);
}

.contact-form select option {
  background: #12141a;
  color: #fff;
}

.contact-aside-card {
  padding: 26px 22px;
  border-radius: 18px;
  border: 1px solid rgba(224, 188, 74, 0.28);
  background: rgba(224, 188, 74, 0.06);
}

.contact-aside-card h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.contact-aside-card a,
.contact-aside-card p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-aside-card a:hover {
  color: var(--accent-hover);
}

.contact-aside-card i {
  color: var(--accent);
  margin-top: 3px;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-status {
  margin: 14px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  min-height: 1.2em;
}

.contact-form-status.is-success {
  color: #7ddea0;
}

.contact-form-status.is-error {
  color: #ff8e8e;
}

.whatsapp-link {
  color: var(--text-secondary) !important;
}

.whatsapp-link i,
.whatsapp-link .fa-whatsapp,
.footer-social .fa-whatsapp,
.footer-panel-row .fa-whatsapp,
.mobile-contact .fa-whatsapp,
.contact-aside-card .fa-whatsapp {
  color: var(--accent) !important;
}

.whatsapp-link:hover {
  color: var(--accent-hover) !important;
}

.whatsapp-float-btn {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-shine);
  color: var(--bg-primary) !important;
  text-decoration: none;
  font-size: 1.55rem;
  border: 1px solid rgba(255, 241, 176, 0.45);
  box-shadow: 0 8px 24px rgba(224, 188, 74, 0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.whatsapp-float-btn i {
  color: var(--bg-primary) !important;
}

.whatsapp-float-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(224, 188, 74, 0.55);
  color: var(--bg-primary) !important;
}

@media (max-width: 575.98px) {
  .whatsapp-float-btn {
    right: 14px;
    bottom: 78px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

.footer-legal span {
  width: 3px;
  height: 3px;
  margin: 0 12px;
  border-radius: 50%;
  background: rgba(224, 188, 74, 0.55);
  display: inline-block;
}
