/* =========================================================
   PT LAKSAMANA MARTAPURA INDONESIA — PREMIUM CORPORATE CSS
   Version: 2.2.0 | Production Ready | All Bugs Fixed
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand Colors */
  --c-primary: #0B2447;
  --c-primary-2: #19376D;
  --c-accent: #C9A84C;
  --c-accent-2: #E3C273;
  --c-white: #FFFFFF;
  --c-light: #F8FAFC;
  --c-dark: #1C1C2E;
  --c-mid: #4A5568;
  --c-border: #E2E8F0;
  --c-success: #059669;

  /* Semantic */
  --bg: var(--c-white);
  --bg-alt: var(--c-light);
  --bg-elev: #FFFFFF;
  --text: var(--c-dark);
  --text-soft: var(--c-mid);
  --text-muted: #6B7280;
  --border: var(--c-border);
  --nav-bg: rgba(255, 255, 255, 0.7);
  --nav-text: var(--c-primary);
  --card: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 36, 71, 0.04), 0 1px 3px rgba(11, 36, 71, 0.06);
  --shadow: 0 4px 6px -1px rgba(11, 36, 71, 0.06), 0 10px 15px -3px rgba(11, 36, 71, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(11, 36, 71, 0.10), 0 10px 10px -5px rgba(11, 36, 71, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(11, 36, 71, 0.18);
  --shadow-glass: 0 8px 32px rgba(11, 36, 71, 0.08);
  --shadow-gold: 0 12px 30px rgba(201, 168, 76, 0.25);

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px; --s-9: 128px;

  /* Radius */
  --r-sm: 4px; --r: 8px; --r-md: 12px; --r-lg: 16px;
  --r-xl: 24px; --r-2xl: 32px; --r-full: 999px;

  /* Typography */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur: 350ms;
  --dur-slow: 600ms;
}

/* Dark mode tokens */
[data-theme="dark"] {
  --bg: #07152B;
  --bg-alt: #0B2447;
  --bg-elev: #112A4F;
  --text: #E8EEF7;
  --text-soft: #A0AEC0;
  --text-muted: #718096;
  --border: rgba(201, 168, 76, 0.15);
  --nav-bg: rgba(7, 21, 43, 0.8);
  --nav-text: #E8EEF7;
  --card: #0F2648;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--f-body);
  font-size: clamp(15px, 1vw + 10px, 17px);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 3. CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw + 1rem, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw + 0.5rem, 2.8rem); }
h3 { font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem); }
h4 { font-size: clamp(1.1rem, 1vw + 0.7rem, 1.35rem); }
em {
  font-style: normal;
  background: linear-gradient(120deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.mono { font-family: var(--f-mono); letter-spacing: 0.02em; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; }
.btn-primary {
  background: var(--c-accent);
  color: var(--c-primary);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--c-accent-2);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.4);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-gold {
  background: var(--c-accent);
  color: var(--c-primary);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover {
  background: var(--c-white);
  color: var(--c-primary);
  transform: translateY(-2px);
}
.btn-nav {
  padding: 10px 22px;
  font-size: 0.88rem;
  background: var(--c-accent);
  color: var(--c-primary);
  border-radius: var(--r);
  font-weight: 600;
}
.btn-nav:hover {
  transform: translateY(-1px);
  background: var(--c-accent-2);
}
.btn-full { width: 100%; padding: 16px; font-size: 1rem; }

/* Ripple effect */
.ripple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 1%, transparent 1%);
  background-size: 15000% 15000%;
  background-position: center;
  opacity: 0;
  transition: background-size 0.7s var(--ease), opacity 0.4s;
}
.ripple:active::before {
  background-size: 100% 100%;
  opacity: 1;
  transition: 0s;
}

/* ---------- 6. LOADING SCREEN ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--c-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  animation: pulse 2s infinite var(--ease);
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.loader-bar span {
  display: block;
  height: 100%;
  background: var(--c-accent);
  border-radius: 2px;
  animation: loadBar 1.6s ease-in-out infinite;
}
.loader-text {
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes loadBar {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---------- 7. SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---------- 8. NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-glass);
}
[data-theme="dark"] .navbar { background: rgba(7, 21, 43, 0.75); }
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  gap: 24px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--c-primary);
  letter-spacing: 0.08em;
}
[data-theme="dark"] .brand-text strong { color: var(--c-accent); }
.brand-text small {
  font-size: 0.68rem;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 1px;
}
.navbar-menu { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav-link:hover { color: var(--c-accent); }
.nav-link.active { color: var(--c-accent); font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: var(--r);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--dur) var(--ease);
}
.theme-toggle:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-1px);
}
.theme-toggle svg { width: 18px; height: 18px; }
.icon-sun, .icon-moon { display: none; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.hamburger:hover {
  border-color: var(--c-accent);
  background: rgba(201, 168, 76, 0.05);
}
.hamburger-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 14px;
}
.hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-line:nth-child(3) { bottom: 0; }
.hamburger.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.hamburger.active .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 1024px) {
  .navbar-menu { display: none; }
  .hamburger { display: block; }
  .btn-nav { display: none; }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 43, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 8px;
    overflow-y: auto;
  }
  .navbar-menu.active { transform: translateX(0); }
  .navbar-menu .nav-link {
    display: block;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--r-md);
    border: 1px solid transparent;
    transition: all var(--dur) var(--ease);
    opacity: 0;
    transform: translateX(30px);
  }
  .navbar-menu.active .nav-link {
    opacity: 1;
    transform: translateX(0);
  }
  .navbar-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .navbar-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
  .navbar-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
  .navbar-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
  .navbar-menu.active .nav-link:nth-child(5) { transition-delay: 0.3s; }
  .navbar-menu.active .nav-link:nth-child(6) { transition-delay: 0.35s; }
  .navbar-menu.active .nav-link:nth-child(7) { transition-delay: 0.4s; }
  .navbar-menu .nav-link:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.2);
    color: var(--c-accent);
    transform: translateX(4px);
  }
  .navbar-menu .nav-link.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--c-accent);
  }
  .navbar-menu .nav-link.active::after { display: none; }
}

.mobile-menu-cta {
  display: none;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
@media (max-width: 1024px) {
  .mobile-menu-cta { display: block; }
  .mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

body.menu-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

@media (max-width: 768px) {
  .navbar-container { padding-block: 12px; }
  .brand-text small { display: none; }
  .brand-text strong { font-size: 1.2rem; }
  .navbar-menu {
    width: min(340px, 90vw);
    padding: 90px 24px 24px;
  }
  .navbar-menu .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .navbar-menu {
    width: 100vw;
    padding: 90px 20px 20px;
  }
  .theme-toggle {
    width: 38px;
    height: 38px;
  }
  .hamburger {
    width: 42px;
    height: 42px;
  }
}

/* ---------- 9. HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 2rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('https://6a29b26cdc2e3487ba7defda.imgix.net/lianhao-qu-LfaN1gswV5c-unsplash.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: heroZoomBg 20s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroZoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 36, 71, 0.92) 0%, rgba(25, 55, 109, 0.78) 50%, rgba(11, 36, 71, 0.90) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
  backdrop-filter: blur(2px);
  z-index: 1;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 55%);
  z-index: 3;
  pointer-events: none;
}
.hero-accent-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 4;
  animation: heroFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-accent-circle.accent-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 194, 115, 0.15), transparent 70%);
  top: auto;
  bottom: -100px;
  left: -100px;
  right: auto;
  animation-delay: -4s;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  color: var(--c-white);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--c-success);
  border-radius: 50%;
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  text-transform: uppercase;
}
.hero-main {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
}
.hero-main em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}
.hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item svg {
  width: 32px;
  height: 32px;
  color: var(--c-accent);
  flex-shrink: 0;
}
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
}
.trust-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(201, 168, 76, 0.15);
}
.stat-card:hover::before,
.stat-card:hover::after {
  opacity: 1;
}
.stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.85rem;
  color: var(--c-accent);
  opacity: 0.85;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.stat-card:hover .stat-icon {
  opacity: 1;
  transform: scale(1.1);
}
.stat-icon svg {
  width: 100%;
  height: 100%;
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.stat-number small {
  font-size: 1.4rem;
  color: var(--c-accent);
  font-weight: 700;
}
.stat-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
  transition: all var(--dur) var(--ease);
}
.scroll-down:hover { color: var(--c-accent); }
.scroll-down svg {
  width: 24px;
  height: 24px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible, .reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-content .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.2s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.3s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.4s; }
.hero-content .reveal:nth-child(5) { transition-delay: 0.5s; }

/* ---------- 10. SECTION COMMON ---------- */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-head { margin-bottom: clamp(40px, 6vw, 64px); text-align: center; }
.section-title { margin-bottom: 12px; }
.section-title em { font-style: normal; }
.section-subtitle {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}
.section-divider {
  width: 64px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  margin: 20px auto 0;
}
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--c-accent);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--r-full);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-tag-gold {
  background: var(--c-accent);
  color: var(--c-primary);
}
.section-lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.section-lead-light {
  color: rgba(255, 255, 255, 0.85);
}
.section-title-light {
  color: var(--c-white);
}

/* ========================================
   11. ABOUT SECTION
======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text-soft);
  line-height: 1.85;
}

.about-content .lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}

.feature:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.feature svg {
  width: 32px;
  height: 32px;
  color: var(--c-accent);
}

.feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.feature span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* About visual cards */
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.visual-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.visual-primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  color: var(--c-white);
  padding: 40px;
}

.visual-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(45deg, rgba(201, 168, 76, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(201, 168, 76, 0.08) 25%, transparent 25%);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.visual-icon {
  width: 100%;
  height: 160px;
  color: var(--c-accent);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.visual-text {
  position: relative;
  z-index: 1;
}

.visual-text small {
  display: block;
  color: var(--c-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  font-family: var(--f-mono);
}

.visual-text strong {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-white);
}

.visual-accent {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-primary);
}

.visual-accent svg {
  width: 44px;
  height: 44px;
  color: var(--c-primary);
  flex-shrink: 0;
}

.visual-accent strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.visual-accent small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Vision / Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.vm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: all var(--dur) var(--ease);
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.vm-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-primary);
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: var(--f-mono);
}

.vm-title {
  font-family: var(--f-display);
  color: var(--c-primary);
  margin-bottom: 16px;
}

[data-theme="dark"] .vm-title {
  color: var(--c-accent);
}

.vm-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.vm-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}

.vm-list li:last-child {
  border-bottom: none;
}

.vm-list span {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-accent);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vm-list p {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

/* ========================================
   12. SECURITY SECTION
======================================== */
.security {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.security::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.6;
  pointer-events: none;
}

.security > .container {
  position: relative;
  z-index: 1;
}

.security-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.security-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===== SECURITY SHIELD ANIMATION ===== */
.shield-container {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  transform: translate(-50%, -50%);
  animation: pulseExpand 3s ease-out infinite;
  pointer-events: none;
}

.pulse-ring-1 { width: 75%; height: 75%; animation-delay: 0s; }
.pulse-ring-2 { width: 85%; height: 85%; animation-delay: 1s; }
.pulse-ring-3 { width: 95%; height: 95%; animation-delay: 2s; }

@keyframes pulseExpand {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.85);
    border-width: 2px;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.15);
    border-width: 0.5px;
  }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.15);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-outer {
  width: 92%;
  height: 92%;
  animation: orbitSpin 20s linear infinite;
}

.orbit-inner {
  width: 72%;
  height: 72%;
  animation: orbitSpin 14s linear infinite reverse;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.satellite {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C9A84C;
  box-shadow:
    0 0 12px #C9A84C,
    0 0 20px rgba(201, 168, 76, 0.5);
}

.satellite::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  animation: satGlow 1.5s ease-in-out infinite;
}

.sat-1 { top: -5px; left: 50%; transform: translateX(-50%); }
.sat-2 { bottom: -5px; left: 50%; transform: translateX(-50%); }
.sat-3 { top: 50%; right: -5px; transform: translateY(-50%); }
.sat-4 { top: 50%; left: -5px; transform: translateY(-50%); }
.sat-5 {
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  background: #E3C273;
}

@keyframes satGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.shield-main {
  position: relative;
  width: 58%;
  height: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(201, 168, 76, 0.08) 0%,
    rgba(11, 36, 71, 0.4) 70%,
    rgba(11, 36, 71, 0.8) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.3);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: shieldFloat 4s ease-in-out infinite;
}

.shield-main:hover {
  transform: scale(1.05);
}

@keyframes shieldFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.shield-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.3));
}

.shield-checkmark {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 1.5s ease-out 0.5s forwards;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.shield-core {
  animation: corePulse 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes corePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.5); }
}

.radar-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(201, 168, 76, 0.25) 50%,
    transparent 60%,
    transparent 100%
  );
  animation: radarSweep 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes radarSweep {
  0% { transform: translateY(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

.shield-status {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(11, 36, 71, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: statusFloat 4s ease-in-out infinite;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: statusBlink 1.5s ease-in-out infinite;
}

.status-text {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #C9A84C;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes statusFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

.corner-accent {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  pointer-events: none;
}

.corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; border-top-left-radius: 8px; }
.corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; border-top-right-radius: 8px; }
.corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; border-bottom-left-radius: 8px; }
.corner-br { bottom: 0; right: 0; border-left: none; border-top: none; border-bottom-right-radius: 8px; }

.shield-container:hover .orbit-outer { animation-duration: 10s; }
.shield-container:hover .orbit-inner { animation-duration: 7s; }
.shield-container:hover .pulse-ring { animation-duration: 2s; }

.security-hero-content h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--c-white);
  margin-bottom: 16px;
}

.security-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 24px;
}

.security-standards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-standards li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.security-standards svg {
  width: 18px;
  height: 18px;
  color: var(--c-accent);
  flex-shrink: 0;
}

.security-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.security-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 32px 24px;
  border-radius: var(--r-md);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.security-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--c-accent);
}

.security-card:hover::before {
  transform: scaleX(1);
}

.security-card svg {
  width: 40px;
  height: 40px;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.security-card h4 {
  color: var(--c-white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.security-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   13. SERVICES SECTION
======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201, 168, 76, 0.3);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--dur) var(--ease);
}

.service-card:hover .service-icon {
  background: var(--c-accent);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--c-accent);
  transition: color var(--dur) var(--ease);
}

.service-card:hover .service-icon svg {
  color: var(--c-primary);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--f-mono);
}

/* ========================================
   14. INDUSTRIES SECTION
======================================== */
.industries {
  background: var(--bg-alt);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--dur) var(--ease);
}

.industry-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-card svg {
  width: 40px;
  height: 40px;
  color: var(--c-accent);
  margin: 0 auto 12px;
}

.industry-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

/* ========================================
   15. WHY US SECTION
======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-xl);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--dur) var(--ease);
}

.why-card:hover .why-icon {
  background: var(--c-accent);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-accent);
  transition: color var(--dur) var(--ease);
}

.why-card:hover .why-icon svg {
  color: var(--c-primary);
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   16. SOP TIMELINE & PROCESS FLOW
======================================== */
.sop {
  background: var(--bg);
}

.sop-timeline {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

/* Decorative glows */
.sop-timeline::before,
.sop-timeline::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.25;
}

.sop-timeline::before {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
}

.sop-timeline::after {
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(11, 36, 71, 0.08) 0%, transparent 70%);
}

/* Timeline Header */
.sop-timeline-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.sop-timeline-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.sop-timeline-icon svg {
  width: 32px;
  height: 32px;
  color: var(--c-accent);
}

.sop-timeline-header h3 {
  font-family: var(--f-display);
  color: var(--c-primary);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 6px;
}

[data-theme="dark"] .sop-timeline-header h3 {
  color: var(--c-accent);
}

.sop-timeline-subtitle {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
}

/* Vertical Line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 1;
}

.timeline-line-base {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(201, 168, 76, 0.4) 0px,
    rgba(201, 168, 76, 0.4) 8px,
    transparent 8px,
    transparent 16px
  );
}

/* Timeline Items */
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  gap: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item-left {
  flex-direction: row;
  justify-content: flex-start;
}

.timeline-item-right {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

/* Timeline Marker */
.timeline-marker {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px var(--card),
    0 0 0 6px rgba(201, 168, 76, 0.3),
    0 4px 12px rgba(201, 168, 76, 0.25);
  z-index: 3;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.08);
  box-shadow:
    0 0 0 4px var(--card),
    0 0 0 6px var(--c-accent),
    0 8px 20px rgba(201, 168, 76, 0.4);
}

.marker-number {
  font-family: var(--f-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.marker-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--c-accent);
  animation: markerPulse 2.5s ease-out infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes markerPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Final Marker (Green) */
.timeline-marker-final {
  background: #10b981;
  box-shadow:
    0 0 0 4px var(--card),
    0 0 0 6px rgba(16, 185, 129, 0.3),
    0 4px 12px rgba(16, 185, 129, 0.25);
}

.timeline-item-final:hover .timeline-marker-final {
  box-shadow:
    0 0 0 4px var(--card),
    0 0 0 6px #10b981,
    0 8px 20px rgba(16, 185, 129, 0.4);
}

.timeline-marker-final .marker-pulse {
  border-color: #10b981;
}

/* Timeline Card */
.timeline-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  flex: 1;
  max-width: calc(50% - 120px);
  transition: all var(--dur) var(--ease);
  z-index: 2;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--c-accent);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
  border-radius: 2px;
}

.timeline-item-left .timeline-card::before {
  right: -20px;
  transform-origin: top;
}

.timeline-item-right .timeline-card::before {
  left: -20px;
  transform-origin: top;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-xl);
}

.timeline-item:hover .timeline-card::before {
  transform: scaleY(1);
}

.timeline-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--c-accent);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.timeline-card-badge-final {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.timeline-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--dur) var(--ease);
}

.timeline-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-accent);
  transition: all var(--dur) var(--ease);
}

.timeline-item:hover .timeline-card-icon {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  border-color: var(--c-accent);
  transform: rotate(-8deg) scale(1.05);
}

.timeline-item:hover .timeline-card-icon svg {
  color: var(--c-primary);
}

.timeline-item-final .timeline-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.02));
  border-color: rgba(16, 185, 129, 0.3);
}

.timeline-item-final .timeline-card-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
}

.timeline-item-final .timeline-card-icon svg {
  color: white;
}

.timeline-item-final .timeline-card::before {
  background: #10b981;
}

.timeline-card h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0 0 16px 0;
}

/* Meta Duration */
.timeline-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.meta-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(11, 36, 71, 0.05);
  color: var(--c-primary);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
}

[data-theme="dark"] .meta-duration {
  background: rgba(201, 168, 76, 0.08);
  color: var(--c-accent);
}

.meta-duration svg {
  width: 14px;
  height: 14px;
}

.meta-duration-ongoing {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

/* Summary Card */
.timeline-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--r-lg);
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.summary-stat .stat-number {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
}

.summary-stat .stat-label {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Process Flow */
.process-flow {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.process-flow::before,
.process-flow::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
}

.process-flow::before {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
}

.process-flow::after {
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(11, 36, 71, 0.08) 0%, transparent 70%);
}

.process-flow-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.process-flow-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.process-flow-icon svg {
  width: 32px;
  height: 32px;
  color: var(--c-accent);
}

.process-flow-header h3 {
  font-family: var(--f-display);
  color: var(--c-primary);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 6px;
}

[data-theme="dark"] .process-flow-header h3 {
  color: var(--c-accent);
}

.process-flow-subtitle {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.process-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px 20px;
  transition: all var(--dur) var(--ease);
  flex: 1;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-xl);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-accent);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  transition: all var(--dur) var(--ease);
}

.step-card:hover .step-number {
  background: var(--c-accent);
  color: var(--c-primary);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--dur) var(--ease);
}

.step-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-accent);
  transition: all var(--dur) var(--ease);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  border-color: var(--c-accent);
  transform: rotate(-8deg) scale(1.05);
}

.step-card:hover .step-icon svg {
  color: var(--c-primary);
}

.step-content h4 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

.step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  opacity: 0.5;
  transition: all var(--dur) var(--ease);
}

.step-connector svg {
  width: 100%;
  height: 100%;
}

.process-step:hover + .process-step .step-connector,
.process-step:hover .step-connector {
  opacity: 1;
  transform: translateX(4px);
  color: var(--c-accent);
}

.process-step-final {
  grid-column: 1 / -1;
  justify-content: center;
  max-width: 400px;
  margin: 16px auto 0;
}

.process-step-final .step-card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  border-color: rgba(201, 168, 76, 0.3);
}

.process-step-final .step-icon {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  border-color: var(--c-accent);
}

.process-step-final .step-icon svg {
  color: var(--c-primary);
}

.process-step-final .step-number {
  background: var(--c-accent);
  color: var(--c-primary);
}

.process-flow-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.process-flow-cta p {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  margin: 0;
}

[data-theme="dark"] .process-flow-cta p {
  color: var(--text-soft);
}

/* ========================================
   17. LEGALITY SECTION
======================================== */
.legality {
  background: var(--bg-alt);
}

.section-desc {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--text-soft);
  line-height: 1.8;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 32px;
  margin-top: 50px;
  align-items: start;
}

.legal-main {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.legal-verified {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.verified-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 24px;
}

.verified-icon::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.45);
}

.verified-label {
  display: block;
  color: var(--c-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.verified-nib {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  word-break: break-word;
}

.legal-verified small {
  display: block;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.verified-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.legal-info {
  min-width: 0;
}

.legal-info h3 {
  font-size: 2.2rem;
  color: var(--c-accent);
  margin-bottom: 36px;
  line-height: 1.2;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.legal-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.legal-value {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
}

.legal-nib-highlight {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1.1;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 700;
}

.legal-badges {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: 0.35s ease;
}

.badge-card:hover {
  transform: translateY(-6px);
}

.badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.badge-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 1rem;
}

.badge-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ========================================
   18. PORTFOLIO CTA
======================================== */
.portfolio {
  background: var(--bg);
  padding: clamp(64px, 8vw, 112px) 0;
}

.portfolio-cta {
  position: relative;
  background: linear-gradient(135deg, #0B2447 0%, #19376D 100%);
  border-radius: var(--r-2xl);
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px);
  color: var(--c-white);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow:
    0 25px 50px -12px rgba(11, 36, 71, 0.4),
    0 0 0 1px rgba(201, 168, 76, 0.1) inset;
}

.portfolio-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
}

.portfolio-glow-1,
.portfolio-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.portfolio-glow-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.3) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: glowFloat1 8s ease-in-out infinite;
}

.portfolio-glow-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(25, 55, 109, 0.4) 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
  animation: glowFloat2 10s ease-in-out infinite;
}

@keyframes glowFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

@keyframes glowFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(0.95);
  }
}

.portfolio-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-icon-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
}

.portfolio-icon {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 100%);
  border: 2px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  animation: iconFloat 4s ease-in-out infinite;
}

.portfolio-icon svg {
  width: 44px;
  height: 44px;
  color: var(--c-accent);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.portfolio-icon-ring {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  animation: ringPulse 3s ease-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.portfolio-cta h3 {
  font-family: var(--f-display);
  color: var(--c-accent);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.85;
  margin: 0 auto 40px;
  max-width: 640px;
}

.portfolio-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.portfolio-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-feature svg {
  width: 20px;
  height: 20px;
  color: var(--c-accent);
  flex-shrink: 0;
}

.portfolio-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.portfolio-cta-buttons .btn {
  min-width: 220px;
}

/* ========================================
   19. TESTIMONIALS
======================================== */
.testimonials {
  background: linear-gradient(135deg, #0B2447 0%, #19376D 100%);
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.6;
  pointer-events: none;
}

.testimonials .section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
  position: relative;
  z-index: 1;
}

.testimonials .section-title-light {
  color: #fff;
}

.testimonials .section-title-light em {
  color: var(--c-accent);
  font-style: normal;
}

.testimonials .section-divider {
  width: 64px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  margin: 24px auto 0;
}

.testi-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.testi-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  color: var(--c-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-arrow svg {
  width: 20px;
  height: 20px;
}

.testi-arrow:hover {
  background: var(--c-accent);
  color: var(--c-primary);
  border-color: var(--c-accent);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.testi-arrow:active {
  transform: scale(0.96);
}

.testi-display {
  flex: 1;
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 20px;
}

.testi-slide {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testi-slide.slide-out-left {
  transform: translateX(-30px);
  opacity: 0;
}

.testi-slide.slide-out-right {
  transform: translateX(30px);
  opacity: 0;
}

.testi-slide.slide-in-right {
  transform: translateX(30px);
}

.testi-slide.slide-in-left {
  transform: translateX(-30px);
}

.testi-quote-mark {
  margin-bottom: 20px;
}

.testi-quote-mark svg {
  width: 56px;
  height: 56px;
  color: var(--c-accent);
  opacity: 0.5;
}

.testi-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 32px 0;
  font-style: italic;
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary-2) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, 0.4);
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testi-author-name {
  color: var(--c-accent);
  font-size: 1rem;
  font-weight: 600;
}

.testi-author-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.4;
}

.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-dot:hover {
  background: rgba(201, 168, 76, 0.5);
  transform: scale(1.2);
}

.testi-dot.active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

/* ========================================
   19.5 GALLERY
======================================== */
.gallery {
  background: var(--bg-alt);
}

/* -- Filter Buttons -- */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  padding: 0.45rem 1.25rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--f-body);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.gallery-filter:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.gallery-filter.active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-primary);
}

/* -- Bento Grid -- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 2rem;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
}
.gallery-item.hidden {
  display: none;
}
.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* -- Image wrapper -- */
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}
.gallery-featured .gallery-img {
  min-height: 454px; /* (220 × 2) + 14px gap */
}

/* -- Hover Overlay -- */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 36, 71, 0.88) 0%,
    rgba(11, 36, 71, 0.15) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--c-accent);
  color: var(--c-primary);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  width: fit-content;
  margin-bottom: 0.4rem;
}
.gallery-caption {
  color: var(--c-white);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  transform: translateY(6px);
  transition: transform var(--dur) var(--ease);
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* -- Note -- */
.gallery-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.gallery-note-link {
  color: var(--c-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .gallery-img         { min-height: 185px; }
  .gallery-featured .gallery-img { min-height: 384px; }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-featured .gallery-img { min-height: 220px; }
  .gallery-img         { min-height: 160px; }
  .gallery-overlay     { opacity: 1; } /* selalu tampil di mobile */
  .gallery-caption     { transform: translateY(0); }
}
@media (max-width: 480px) {
  .gallery-grid        { grid-template-columns: 1fr; }
  .gallery-featured    { grid-column: span 1; }
  .gallery-img         { min-height: 200px; }
  .gallery-featured .gallery-img { min-height: 220px; }
}

/* ========================================
   20. FAQ
======================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.faq-item[open] {
  border-color: var(--c-accent);
  box-shadow: var(--shadow);
}

.faq-summary {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: color var(--dur) var(--ease);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  color: var(--c-accent);
}

.faq-summary svg {
  width: 20px;
  height: 20px;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.faq-item[open] .faq-summary svg {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.faq-content code {
  font-family: var(--f-mono);
  background: rgba(201, 168, 76, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--c-accent);
  font-size: 0.88em;
}

.faq-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, 0.4);
  transition: text-decoration-color var(--dur) var(--ease);
}

.faq-content a:hover {
  text-decoration-color: var(--c-accent);
}

/* ========================================
   21. CONTACT SECTION
======================================== */
.contact {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  pointer-events: none;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--dur) var(--ease);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--c-accent);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}

.contact-card:hover .contact-icon {
  background: rgba(201, 168, 76, 0.25);
  transform: scale(1.05);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-accent);
}

.contact-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

.contact-card a {
  color: var(--c-white);
  transition: color var(--dur) var(--ease);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--c-accent);
}

.contact-map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-top: 8px;
  transition: border-color var(--dur) var(--ease);
}

.contact-map:hover {
  border-color: var(--c-accent);
}

.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Form success: hide form when submitted */
.contact-form-wrapper.submitted .contact-form {
  display: none;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form h3 {
  font-family: var(--f-display);
  color: var(--c-white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-intro {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.req {
  color: var(--c-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r);
  color: var(--c-white);
  font-size: 0.95rem;
  font-family: var(--f-body);
  transition: all var(--dur) var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 8px;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #fca5a5;
  margin-top: 6px;
  min-height: 16px;
  line-height: 1.4;
  transition: all var(--dur-fast) var(--ease);
}

.form-error:not(:empty)::before {
  content: '⚠ ';
  font-size: 0.7rem;
}

.contact-form .btn-full {
  margin-top: 8px;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-alert-error {
  text-align: left;
  padding: 20px 24px;
  margin-top: 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-left: 4px solid #ef4444;
  border-radius: var(--r-md);
  color: #fca5a5;
  animation: alertSlideIn 0.4s var(--ease-out);
}

@keyframes alertSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-alert-error p {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #fecaca;
  font-size: 0.92rem;
}

.form-alert-error ol {
  margin: 0 0 14px 20px;
  padding: 0;
  color: #fca5a5;
  font-size: 0.85rem;
  line-height: 1.7;
}

.form-alert-error ol li {
  margin-bottom: 4px;
}

.form-alert-error a {
  color: var(--c-accent);
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 76, 0.4);
  font-weight: 600;
  transition: all var(--dur) var(--ease);
}

.form-alert-error a:hover {
  color: var(--c-accent-2);
  text-decoration-color: var(--c-accent);
}

.form-alert-error .btn {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  animation: successFadeIn 0.6s var(--ease-out);
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: #10b981;
  margin: 0 auto 20px;
  animation: successBounce 0.6s var(--ease) 0.2s both;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.form-success h4 {
  color: var(--c-white);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: var(--f-display);
}

.form-success p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* ========================================
   22. FINAL CTA
======================================== */
.final-cta {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  border-radius: var(--r-2xl);
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px);
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-xl);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-bg svg {
  width: 100%;
  height: 100%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cta-card h2 {
  font-family: var(--f-display);
  color: var(--c-white);
  margin-bottom: 20px;
}

.cta-card h2 em {
  background: linear-gradient(120deg, var(--c-accent), var(--c-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ========================================
   23. FOOTER
======================================== */
.footer {
  background: #06142A;
  color: rgba(255, 255, 255, 0.7);
  padding-top: clamp(48px, 7vw, 80px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .brand-icon {
  width: 44px;
  height: 44px;
}

.footer-logo strong {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-accent);
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--c-accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-contact-mini {
  display: flex;
  gap: 10px;
}

.footer-contact-mini a {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: rgba(201, 168, 76, 0.1);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}

.footer-contact-mini a:hover {
  background: var(--c-accent);
  color: var(--c-primary);
  transform: translateY(-2px);
}

.footer-contact-mini svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width var(--dur) var(--ease);
}

.footer-links a:hover {
  color: var(--c-accent);
  padding-left: 16px;
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-legal li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-legal strong {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.footer-legal span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p:first-child {
  margin-bottom: 6px;
}

.status-badge.small {
  padding: 4px 10px;
  font-size: 0.72rem;
}

/* ========================================
   24. FLOATING WHATSAPP
======================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all var(--dur) var(--ease);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.7;
  z-index: -1;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-primary);
  color: var(--c-white);
  padding: 8px 14px;
  border-radius: var(--r);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  right: calc(100% + 16px);
}

/* ========================================
   25. BACK TO TOP
======================================== */
.back-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  box-shadow: var(--shadow-lg);
  transition: all var(--dur) var(--ease);
}

.back-top:not([hidden]) {
  animation: fadeInUp 0.4s var(--ease);
}

.back-top:hover {
  background: var(--c-accent);
  color: var(--c-primary);
  transform: translateY(-4px);
}

.back-top svg {
  width: 20px;
  height: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   26. SCROLL REVEAL
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   27. RESPONSIVE BREAKPOINTS
======================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .security-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .navbar-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Timeline Tablet */
  .timeline-container {
    padding: 32px 0;
  }

  .timeline-item {
    gap: 24px;
    margin-bottom: 40px;
  }

  .timeline-card {
    max-width: calc(50% - 48px);
    padding: 20px;
  }

  .timeline-marker {
    width: 52px;
    height: 52px;
  }

  .marker-number {
    font-size: 0.88rem;
  }

  /* Process Flow Tablet */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-connector {
    transform: rotate(90deg);
    margin: -8px 0;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero {
    padding: 90px 0 56px;
    min-height: auto;
  }

  .hero-image {
    background-attachment: scroll;
  }

  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(11, 36, 71, 0.95) 0%,
      rgba(25, 55, 109, 0.92) 100%
    );
  }

  .hero-accent-circle {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }

  .hero-accent-circle.accent-2 {
    width: 250px;
    height: 250px;
  }

  .section {
    padding: 52px 0;
  }

  .navbar-container {
    padding-block: 10px;
  }

  .btn-nav {
    display: none;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu.active .nav-link {
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    border-radius: var(--r);
  }

  .navbar-menu.active .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-menu.active .nav-link.active::after {
    display: none;
  }

  .navbar {
    z-index: 1000;
  }

  .navbar-actions {
    z-index: 1001;
    position: relative;
  }

  .security-hero {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .security-hero-visual {
    display: none;
  }

  .security-types {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .security-standards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .legal-main {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
    text-align: center;
  }


  .form-row {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }



  .hero-trust {
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
    margin-left: -20px;
  }

  .timeline-item {
    padding-bottom: 24px;
    gap: 16px;
  }

  .wa-float {
    width: 56px;
    height: 56px;
    bottom: 80px;
    right: 16px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  .back-top {
    bottom: 80px;
    left: 16px;
    width: 44px;
    height: 44px;
  }

  .process-flow {
    padding: 24px;
  }

  .vm-card {
    padding: 28px 24px;
  }

  .contact-card:hover {
    transform: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .scroll-down {
    bottom: 1rem;
  }

  .stat-card {
    padding: 1.2rem 1rem;
  }
  .stat-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 0.65rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-number small {
    font-size: 1.25rem;
  }

  .hero-title {
    gap: 0.25rem;
  }

  /* Timeline Mobile */
  .sop-timeline {
    padding: 32px 24px;
  }

  .sop-timeline-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 24px;
  }

  .timeline-container {
    padding: 0 0 0 32px;
  }

  .timeline-line {
    left: 15px;
    transform: none;
  }

  .timeline-item,
  .timeline-item-left,
  .timeline-item-right {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .timeline-marker {
    position: absolute;
    left: -16px;
    top: 0;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .marker-number {
    font-size: 0.82rem;
  }

  .timeline-card {
    max-width: 100%;
    flex: 1;
    padding: 18px 20px;
  }

  .timeline-card::before {
    left: -16px !important;
    right: auto !important;
    top: 8px;
    bottom: 8px;
  }

  .timeline-summary {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
  }

  .summary-divider {
    display: none;
  }

  /* Process Flow Mobile */
  .process-flow {
    padding: 32px 24px;
  }

  .process-flow-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    flex-direction: column;
  }

  .step-card {
    width: 100%;
  }

  .step-connector {
    width: 40px;
    height: 40px;
    transform: rotate(90deg);
    margin: 0;
    opacity: 0.4;
  }

  .process-step-final {
    max-width: 100%;
    margin-top: 0;
  }

  .process-flow-cta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-top: 36px;
    padding-top: 24px;
  }

  .process-flow-cta p {
    font-size: 0.92rem;
  }

  /* Portfolio Mobile */
  .portfolio-features {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .portfolio-feature {
    justify-content: center;
  }

  .portfolio-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .portfolio-cta-buttons .btn {
    min-width: 100%;
  }

  .portfolio-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .portfolio-icon svg {
    width: 36px;
    height: 36px;
  }

  .portfolio-glow-1 {
    width: 250px;
    height: 250px;
    top: -100px;
    right: -50px;
  }

  .portfolio-glow-2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -50px;
  }

  /* Testimonials Mobile */
  .testi-wrapper {
    gap: 8px;
  }

  .testi-arrow {
    width: 42px;
    height: 42px;
  }

  .testi-arrow svg {
    width: 16px;
    height: 16px;
  }

  .testi-display {
    min-height: 340px;
  }

  .testi-slide {
    padding: 24px;
  }

  .testi-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .testi-quote-mark svg {
    width: 44px;
    height: 44px;
  }

  .testi-avatar {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }

  .testi-author-name {
    font-size: 0.92rem;
  }

  .testi-author-role {
    font-size: 0.78rem;
  }

  /* Contact Mobile */
  .contact-grid {
    gap: 32px;
  }

  .contact-card {
    padding: 16px;
    gap: 14px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-card h4 {
    font-size: 0.78rem;
  }

  .contact-card p {
    font-size: 0.88rem;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .contact-form h3 {
    font-size: 1.3rem;
  }

  .form-intro {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .form-alert-error {
    padding: 16px 18px;
  }

  .form-alert-error p {
    font-size: 0.88rem;
  }

  .form-alert-error ol {
    font-size: 0.82rem;
  }

  .form-success {
    padding: 36px 20px;
  }

  .form-success svg {
    width: 56px;
    height: 56px;
  }

  .form-success h4 {
    font-size: 1.2rem;
  }
}

/* Small Mobile (max-width: 540px) */
@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .security-types {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .vm-grid {
    gap: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 10px;
  }

  .stat-card {
    padding: 14px 10px;
  }
  .stat-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .brand-text small {
    display: none;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .scroll-down {
    display: none;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .why-card {
    padding: 22px 20px;
  }

  .security-card {
    padding: 24px 20px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .legal-main {
    padding: 24px 20px;
  }

  .portfolio-cta {
    padding: 36px 24px;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .industry-card {
    padding: 20px 10px;
  }

  .industry-card svg {
    width: 32px;
    height: 32px;
  }

  .verified-icon {
    width: 140px;
    height: 140px;
    font-size: 56px;
  }

  .legal-info h3 {
    font-size: 1.8rem;
  }

  .legal-nib-highlight {
    font-size: 1.6rem;
  }

  .testi-arrow {
    display: none;
  }

  .testi-display {
    min-height: 360px;
  }

  .testi-slide {
    padding: 20px;
  }

  .testi-wrapper {
    gap: 0;
  }

  .portfolio-icon-wrapper {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .portfolio-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .legal-main {
    padding: 24px;
  }

  .verified-icon {
    width: 120px;
    height: 120px;
    font-size: 48px;
  }

  .legal-info h3 {
    font-size: 1.5rem;
  }

  /* Timeline Small */
  .sop-timeline {
    padding: 24px 20px;
  }

  .sop-timeline-icon {
    width: 56px;
    height: 56px;
  }

  .sop-timeline-icon svg {
    width: 28px;
    height: 28px;
  }

  .timeline-container {
    padding-left: 28px;
  }

  .timeline-line {
    left: 13px;
  }

  .timeline-marker {
    left: -14px;
    width: 40px;
    height: 40px;
  }

  .marker-number {
    font-size: 0.78rem;
  }

  .timeline-card {
    padding: 16px;
  }

  .timeline-card-icon {
    width: 42px;
    height: 42px;
  }

  .timeline-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .timeline-card h4 {
    font-size: 1rem;
  }

  .timeline-card p {
    font-size: 0.85rem;
  }

  .summary-stat .stat-number {
    font-size: 1.4rem;
  }

  .summary-stat .stat-label {
    font-size: 0.7rem;
  }

  /* Process Flow Small */
  .process-flow {
    padding: 24px 20px;
  }

  .process-flow-icon {
    width: 56px;
    height: 56px;
  }

  .process-flow-icon svg {
    width: 28px;
    height: 28px;
  }

  .step-card {
    padding: 20px 16px 16px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
  }

  .step-content h4 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  /* Contact Small */
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-form-wrapper {
    padding: 20px 16px;
    border-radius: var(--r-lg);
  }

  .contact-form h3 {
    font-size: 1.2rem;
  }

  .form-group label {
    font-size: 0.78rem;
  }

  /* Shield Small */
  .shield-container {
    max-width: 240px;
  }

  .pulse-ring-3 {
    display: none;
  }

  .corner-accent {
    display: none;
  }
}

/* ========================================
   28. REDUCED MOTION
======================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-accent-circle,
  .portfolio-icon,
  .portfolio-icon-ring,
  .portfolio-glow-1,
  .portfolio-glow-2,
  .shield-ring,
  .pulse-ring,
  .orbit,
  .shield-main,
  .shield-checkmark,
  .shield-core,
  .radar-scan,
  .shield-status,
  .status-dot,
  .satellite::after,
  .marker-pulse {
    animation: none !important;
  }

  .orbit {
    transform: translate(-50%, -50%);
  }

  .pulse-ring {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  .shield-checkmark {
    stroke-dashoffset: 0;
  }

  .testi-slide {
    transition: opacity 0.01ms, visibility 0.01ms;
    transform: none !important;
  }

  .step-card,
  .step-icon,
  .step-connector,
  .step-number,
  .contact-card,
  .contact-icon,
  .contact-map,
  .form-alert-error,
  .form-success,
  .form-success svg {
    animation: none !important;
    transition: none !important;
  }

  .step-card:hover,
  .contact-card:hover,
  .timeline-item:hover .timeline-card,
  .timeline-item:hover .timeline-marker,
  .timeline-item:hover .timeline-card-icon {
    transform: none;
  }

  .step-card:hover .step-icon,
  .contact-card:hover .contact-icon {
    transform: none;
  }
}

/* ========================================
   29. PRINT STYLES
======================================== */
@media print {
  .navbar,
  .wa-float,
  .back-top,
  .scroll-progress,
  .loader,
  .final-cta {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    page-break-inside: avoid;
    padding: 20px 0;
  }

  .hero-image,
  .hero-overlay,
  .hero-grid-pattern,
  .hero-gradient,
  .hero-accent-circle {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .contact {
    background: white !important;
    color: black !important;
  }

  .contact::before,
  .contact-form-wrapper::before {
    display: none;
  }

  .contact-form-wrapper {
    display: none;
  }


  .contact-card {
    background: white !important;
    border: 1px solid #ccc !important;
    color: black !important;
  }

  .contact-card h4,
  .contact-card p,
  .contact-card a {
    color: black !important;
  }
}

/* ========================================
   30. ACCESSIBILITY
======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--c-accent);
  color: var(--c-primary);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10001;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}