/* ═══════════════════════════════════════════════════════════════
   DIJLA TECH LLC — styles.css
   Design System: "Digital Noir Gold"
   Cinematic luxury dark — velvet black, molten gold, warm cream
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  /* Background layers */
  --bg:           #050507;
  --bg-2:         #08080c;
  --bg-surface:   rgba(255, 255, 255, 0.028);
  --bg-surface-2: rgba(255, 255, 255, 0.055);
  --bg-overlay:   rgba(5, 5, 7, 0.85);

  /* Gold palette */
  --gold:         #C8860A;
  --gold-light:   #D4A853;
  --gold-pale:    #E8C87A;
  --gold-dim:     rgba(212, 168, 83, 0.12);
  --gold-glow:    rgba(200, 134, 10, 0.22);
  --gold-border:  rgba(212, 168, 83, 0.18);
  --gold-border-2:rgba(212, 168, 83, 0.38);

  /* Text */
  --text:         #F0EEE9;
  --text-2:       #B8B4AC;
  --text-3:       #7A766E;
  --text-gold:    #D4A853;

  /* Status */
  --green:        #10b981;

  /* Borders */
  --border:       rgba(255, 255, 255, 0.065);
  --border-2:     rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:    1120px;
  --r:        14px;
  --r-lg:     22px;
  --r-full:   100px;

  /* Navigation */
  --nav-h:    62px;
  --nav-gap:  18px;

  /* Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --t:        400ms;
  --t-fast:   220ms;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

/* ─────────────────────────────────────────
   NOISE TEXTURE OVERLAY
───────────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─────────────────────────────────────────
   BACKGROUND ORBS
───────────────────────────────────────── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 134, 10, 0.35) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: orb-float-1 22s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: -100px;
  animation: orb-float-2 28s ease-in-out infinite;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.18) 0%, transparent 70%);
  bottom: -100px;
  right: 30%;
  animation: orb-float-3 18s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 80px) scale(1.1); }
  66% { transform: translate(40px, -40px) scale(0.95); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -60px) scale(1.08); }
}

@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(-50px, 40px) scale(1.05); }
  70% { transform: translate(30px, -30px) scale(0.9); }
}

/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* ─────────────────────────────────────────
   SECTION TYPOGRAPHY
───────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

/* Legacy class support */
.section-label { 
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 24px;
}

.section-p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0a04;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--gold-glow), 0 4px 16px rgba(0,0,0,0.4);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--t-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
}

.btn-ghost:hover {
  border-color: var(--gold-border-2);
  background: var(--gold-dim);
  color: var(--text-gold);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   ═══ FLOATING NAV ═══
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--nav-gap);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 40px);
  max-width: 1100px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px 0 20px;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-border);
  background: rgba(5, 5, 7, 0.6);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.nav.scrolled {
  background: rgba(5, 5, 7, 0.88);
  border-color: var(--gold-border-2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 168, 83, 0.06) inset;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 4px;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.nav-logo-icon svg { width: 18px; height: 18px; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Desktop links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-2);
  border-radius: var(--r-full);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover { color: var(--text); }

.nav-link.active {
  color: var(--text-gold);
  background: var(--gold-dim);
}

/* Nav CTA */
.nav-btn {
  margin-left: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0a04;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

/* Language toggle */
.lang-btn {
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  color: var(--text-2);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  min-height: 36px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.lang-btn:hover {
  color: var(--text-gold);
  border-color: var(--gold-border-2);
  background: var(--gold-dim);
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--r);
}

.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-gap) + var(--nav-h) + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1100px;
  z-index: 99;
  flex-direction: column;
  gap: 2px;
  background: rgba(8, 8, 12, 0.96);
  backdrop-filter: blur(32px);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}

.mobile-menu.open { display: flex; }

.mm-link {
  display: block;
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--text-2);
  border-radius: var(--r);
  transition: all var(--t-fast) var(--ease);
  font-weight: 400;
}

.mm-link:hover {
  color: var(--text-gold);
  background: var(--gold-dim);
}

.mm-cta {
  display: block;
  padding: 14px 18px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0a04;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.mm-lang-wrap {
  padding: 8px 18px 4px;
  display: flex;
  justify-content: center;
}

/* ─────────────────────────────────────────
   ═══ HERO SECTION ═══
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-gap) + var(--nav-h) + 20px);
}

#grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero pill tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-gold);
  border: 1px solid var(--gold-border);
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 32px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold-dim);
  backdrop-filter: blur(12px);
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: live-pulse 2.4s infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hero headline */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--text-gold);
  display: block;
}

/* Sub text */
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 300;
}

/* CTA row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats bar */
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(20px);
  padding: 20px 32px;
  border-radius: var(--r-lg);
}

.meta-item {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.meta-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.meta-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.meta-plus {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-gold);
}

.meta-label {
  font-size: 0.68rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 6px;
  text-transform: uppercase;
}

.meta-sep {
  width: 1px;
  height: 40px;
  background: var(--gold-border);
  margin-right: 40px;
  flex-shrink: 0;
}

/* Hero visual (right side) */
.hero-visual {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Orbital rings */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 168, 83, 0.22);
  animation: spin-cw 60s linear infinite;
  pointer-events: none;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.1);
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(212, 168, 83, 0.05);
}

@keyframes spin-cw { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Lottie container */
#hero-lottie {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 20px 60px rgba(200, 134, 10, 0.2));
  border-radius: var(--r-lg);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--text-gold), transparent);
  animation: scroll-pulse 2.4s ease infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─────────────────────────────────────────
   ═══ SERVICES SECTION ═══
───────────────────────────────────────── */
.services {
  border-top: 1px solid var(--border);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.services-header .section-p { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Service card */
.svc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  backdrop-filter: blur(12px);
  cursor: default;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 15%, rgba(212, 168, 83, 0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border-2), transparent);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}

.svc-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 168, 83, 0.06);
}

.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { opacity: 1; }

/* Card icon */
.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.svc-card:hover .svc-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(212, 168, 83, 0.18);
  border-color: var(--gold-border-2);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.luxury-svg-icon {
  width: 24px;
  height: 24px;
  stroke: var(--text-gold);
  transition: stroke var(--t-fast) var(--ease);
}

.svc-card:hover .luxury-svg-icon { stroke: var(--gold-pale); }

/* Number badge */
.svc-num-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-3);
  z-index: 1;
  transition: color var(--t-fast) var(--ease);
}

.svc-card:hover .svc-num-badge { color: var(--text-gold); }

/* Card text */
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.svc-card > p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.72;
  flex: 1;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* Tags */
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.svc-tags span {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-3);
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: all var(--t-fast) var(--ease);
}

.svc-card:hover .svc-tags span {
  border-color: var(--gold-border);
  color: var(--text-2);
}

/* CTA card */
.svc-card-cta {
  background: linear-gradient(145deg, rgba(200, 134, 10, 0.1) 0%, rgba(212, 168, 83, 0.04) 100%);
  border-color: var(--gold-border);
  justify-content: center;
  align-items: flex-start;
}

.svc-card-cta:hover {
  background: linear-gradient(145deg, rgba(200, 134, 10, 0.18) 0%, rgba(212, 168, 83, 0.08) 100%);
  border-color: var(--gold-border-2);
}

.svc-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.svc-cta-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-gold);
}

.svc-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  font-style: italic;
}

/* SVG Hover Micro-animations */
.svc-card:hover .ring-mid {
  transform-origin: center;
  animation: svc-spin 3s linear infinite;
}
@keyframes svc-spin { to { transform: rotate(360deg); } }

.svc-card:hover .link-vert,
.svc-card:hover .link-diag-1,
.svc-card:hover .link-diag-2,
.svc-card:hover .link-diag-3,
.svc-card:hover .link-diag-4 {
  stroke-dasharray: 4;
  stroke-dashoffset: 0;
  animation: dash-flow 1.2s linear infinite;
}
@keyframes dash-flow { to { stroke-dashoffset: -8; } }

.svc-card:hover .node-l,
.svc-card:hover .node-r,
.svc-card:hover .node-l2,
.svc-card:hover .node-r2 {
  animation: node-blink 0.8s ease-in-out infinite alternate;
}
@keyframes node-blink { from { fill: transparent; } to { fill: var(--text-gold); } }

.svc-card:hover .screen-front { animation: screen-slide 1.5s ease-in-out infinite alternate; }
@keyframes screen-slide { from { transform: translateY(0); } to { transform: translateY(-3px); } }

.svc-card:hover .dial-inner {
  transform-origin: center;
  animation: dial-spin 4s linear infinite;
}
@keyframes dial-spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────
   ═══ PORTFOLIO SECTION ═══
───────────────────────────────────────── */
.portfolio {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio .section-h2 { margin-bottom: 56px; }

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Portfolio card */
.port-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.port-item:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 168, 83, 0.06);
}

/* Browser mockup */
.pi-top {
  height: 180px;
  background: linear-gradient(145deg, rgba(15, 15, 20, 0.7), rgba(5, 5, 7, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.pi-browser {
  width: 100%;
  max-width: 240px;
  background: rgba(5, 5, 7, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold-border);
  transition: transform var(--t) var(--ease);
}

.port-item:hover .pi-browser { transform: translateY(-4px) scale(1.02); }

.pi-bar {
  height: 26px;
  background: rgba(12, 12, 16, 0.8);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pi-d { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.pi-d.r { background: rgba(239, 68, 68, 0.5); }
.pi-d.y { background: rgba(245, 158, 11, 0.5); }
.pi-d.g { background: rgba(16, 185, 129, 0.5); }

.pi-url {
  font-size: 0.6rem;
  color: var(--text-3);
  margin-left: 6px;
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pi-screen { height: 100px; overflow: hidden; }

.pi-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t) var(--ease);
  filter: brightness(0.9) saturate(0.9);
}

.port-item:hover .pi-screen img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

/* Card info */
.pi-info {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pi-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.pi-meta span:first-child {
  font-size: 0.68rem;
  color: var(--text-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pi-arrow {
  font-size: 1rem;
  color: var(--text-3);
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.port-item:hover .pi-arrow {
  color: var(--text-gold);
  transform: translate(3px, -3px);
}

.pi-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}

/* Portfolio CTA bar */
.port-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 40px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
}

.port-cta p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   ═══ PRICING / PACKAGES SECTION ═══
───────────────────────────────────────── */
.packages .section-p { margin-bottom: 60px; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.pkg-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  backdrop-filter: blur(12px);
}

.pkg-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45), 0 0 30px rgba(212, 168, 83, 0.05);
}

/* Featured pricing card */
.pkg-featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(200, 134, 10, 0.07) 0%, var(--bg-surface) 50%);
  position: relative;
}

.pkg-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.pkg-featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.pkg-featured > * { position: relative; z-index: 1; }

.pkg-featured:hover {
  border-color: var(--gold-border-2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 50px rgba(212, 168, 83, 0.12);
}

/* Badge */
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0a04;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 14px var(--gold-glow);
}

.pkg-top { margin-bottom: 28px; }

.pkg-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.pkg-featured .pkg-tier { color: var(--text-gold); }

.pkg-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1;
}

.pkg-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-3);
  font-weight: 300;
  letter-spacing: 0;
}

.pkg-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
}

.pkg-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
  font-weight: 300;
}

.pkg-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--text-gold);
  margin-top: 2px;
}

.pkg-list li.pkg-no { color: var(--text-3); }
.pkg-list li.pkg-no svg { stroke: var(--text-3); opacity: 0.5; }

.pkg-foot { display: flex; flex-direction: column; gap: 12px; }
.pkg-btn { width: 100%; justify-content: center; }

.pkg-time {
  font-size: 0.74rem;
  color: var(--text-3);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.pkg-note {
  font-size: 0.9rem;
  color: var(--text-3);
  max-width: 840px;
  line-height: 1.75;
  font-weight: 300;
}

.pkg-note a {
  color: var(--text-gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease);
}

.pkg-note a:hover { border-color: var(--text-gold); }

/* ─────────────────────────────────────────
   ═══ ABOUT SECTION ═══
───────────────────────────────────────── */
.about { border-top: 1px solid var(--border); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left .section-p { max-width: 460px; margin-bottom: 32px; }

/* Values strip */
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-value-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-value-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-gold);
}

.about-value h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.about-value p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}

/* Fact dashboard grid */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fact {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(12px);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.fact:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.fact-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

.fact-val {
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.fact-active {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gold) !important;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: live-pulse 2.4s infinite;
}

/* About cert link */
.about-cert {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.about-cert:hover {
  border-color: var(--gold-border);
  transform: translateY(-1px);
}

.cert-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--t-fast) var(--ease);
}

.cert-link:hover { color: var(--text); }

.cert-icon {
  width: 20px;
  height: 20px;
  stroke: var(--text-gold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   ═══ CONTACT SECTION ═══
───────────────────────────────────────── */
.contact {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.contact .section-p { margin-bottom: 56px; }

.contact-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cinfo-group { display: flex; flex-direction: column; gap: 6px; }

.cinfo-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-gold);
  opacity: 0.85;
}

.cinfo-val {
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--text-2);
  transition: color var(--t-fast) var(--ease);
  line-height: 1.6;
}

a.cinfo-val:hover { color: var(--text-gold); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 44px;
  backdrop-filter: blur(16px);
}

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

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gold);
  opacity: 0.9;
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.94rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  width: 100%;
  -webkit-appearance: none;
  resize: vertical;
  min-height: 48px;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-3); }

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A853' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.field select option { background: #0a0a0f; color: var(--text); }

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.035);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--text-gold);
  background: rgba(212, 168, 83, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}

.contact-form .btn-primary { align-self: flex-start; }

/* Form success */
.form-ok {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--r);
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
}

.form-ok.show { display: flex; }
.form-ok svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   ═══ FOOTER ═══
───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  background: var(--bg-2);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border-2), transparent);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.footer-logo .nav-logo-icon { width: 28px; height: 28px; }
.footer-logo .nav-logo-icon svg { width: 15px; height: 15px; }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-3);
  transition: color var(--t-fast) var(--ease);
}

.footer-nav a:hover { color: var(--text-gold); }

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bot p {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ─────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t-fast) var(--ease);
  z-index: 90;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btt:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border-2);
  color: var(--text-gold);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btt svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────────
   MOBILE BOTTOM NAV — Base (hidden on desktop)
───────────────────────────────────────── */
.mobile-bottom-nav { display: none; }

/* ─────────────────────────────────────────
   GOLD SHIMMER ANIMATION (for featured card)
───────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.pkg-featured .pkg-badge {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-pale) 40%, var(--gold) 60%, var(--gold-light) 100%);
}