/* ============================================================
   Double Eight for Business Solutions — Main Stylesheet
   Color Palette: Black #0a0a0a | Gold #d4af37 | White #ffffff
   Fonts: Playfair Display (headings) | Poppins (body)
   Features: 3D Entry, Click Ripples, Parallax, Scroll Reveal,
             Magnetic Buttons, Cursor Glow, Counter Animations
   ============================================================ */

/* Fonts loaded via HTML <link> tags */

/* ── CSS Variables ── */
:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-mid:   #1a1a1a;
  --black-light: #222222;
  --gold:        #d4af37;
  --gold-light:  #e8c84a;
  --gold-dark:   #b8962e;
  --gold-glow:   rgba(212,175,55,0.35);
  --white:       #ffffff;
  --white-soft:  #f5f5f0;
  --grey:        #888888;
  --grey-light:  #cccccc;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Poppins', sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.4s var(--ease-smooth);
  --shadow:      0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 8px 40px rgba(212,175,55,0.3);
  --radius:      4px;
  --radius-lg:   12px;
  --max-width:   1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  /* perspective removed — it breaks position:fixed stacking for panels/modals */
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: var(--font-body); outline: none; border: none; }

/* ══════════════════════════════════════════
   PAGE LOADER — 3D ENTRY SEQUENCE
══════════════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
#page-loader.hide {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  visibility: hidden;
  display: none;
}
.loader-logo {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.05em;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
  text-shadow: 0 0 60px rgba(212,175,55,0.4);
}
@keyframes loaderPulse {
  from { opacity: 0.5; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1.02); }
}
.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  border-radius: 2px;
  animation: loadProgress 1.6s var(--ease-out) forwards;
}
@keyframes loadProgress { to { width: 100%; } }
.loader-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* ══════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212,175,55,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-smooth), width 0.4s var(--ease-spring), height 0.4s var(--ease-spring), border-color 0.3s, opacity 0.3s;
}
.cursor-dot.hover  { width: 14px; height: 14px; }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--gold); }
.cursor-dot.click  { transform: translate(-50%,-50%) scale(0.5); }
.cursor-ring.click { transform: translate(-50%,-50%) scale(1.4); opacity: 0.4; }

/* ══════════════════════════════════════════
   CLICK RIPPLE
══════════════════════════════════════════ */
.ripple-effect { pointer-events: none !important;
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 99996;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut 0.7s var(--ease-out) forwards;
}
@keyframes rippleOut {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ══════════════════════════════════════════
   3D ENTRY ANIMATIONS
══════════════════════════════════════════ */
/* Elements enter from 3D space */
.entry-3d {
  opacity: 0;
  transform: perspective(1000px) rotateX(25deg) translateY(60px) scale(0.95);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.entry-3d.visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
}
.entry-3d-left {
  opacity: 0;
  transform: perspective(1000px) rotateY(-30deg) translateX(-60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.entry-3d-left.visible {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg) translateX(0);
}
.entry-3d-right {
  opacity: 0;
  transform: perspective(1000px) rotateY(30deg) translateX(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.entry-3d-right.visible {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg) translateX(0);
}
.entry-flip {
  opacity: 0;
  transform: perspective(800px) rotateX(-90deg);
  transform-origin: top center;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.entry-flip.visible {
  opacity: 1;
  transform: perspective(800px) rotateX(0deg);
}
.entry-zoom {
  opacity: 0;
  transform: scale(0.7) perspective(600px) translateZ(-100px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.entry-zoom.visible {
  opacity: 1;
  transform: scale(1) perspective(600px) translateZ(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ── Classic Fade Up ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.fade-in.visible { opacity: 1; }

/* ══════════════════════════════════════════
   MAGNETIC BUTTON WRAPPER
══════════════════════════════════════════ */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 110px 0; }
.section-padding-sm { padding: 60px 0; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-grey  { color: var(--grey); }
.text-center { text-align: center; }
.bg-black      { background-color: var(--black); }
.bg-black-soft { background-color: var(--black-soft); }
.bg-black-mid  { background-color: var(--black-mid); }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-subtitle {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 600px;
  line-height: 1.85;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.gold-line { width: 60px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.gold-line.centered { margin: 0 auto 1.5rem; }

/* ══════════════════════════════════════════
   BUTTONS — 3D + MAGNETIC + RIPPLE
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease-spring);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease-out);
}
.btn:hover::after { left: 160%; }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,0.2);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212,175,55,0.45);
}
.btn-primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 10px rgba(212,175,55,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212,175,55,0.15);
}
.btn-outline:active { transform: translateY(0) scale(0.97); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold:active { transform: translateY(0) scale(0.97); }
.btn-icon { width: 16px; height: 16px; transition: transform 0.3s var(--ease-spring); }
.btn:hover .btn-icon { transform: translateX(5px); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all 0.5s var(--ease-smooth);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.14);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 900;
  color: var(--black);
  letter-spacing: -0.05em;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.nav-logo-tagline { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative; padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none; z-index: 9991; position: relative;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px; background: var(--white);
  transition: all 0.4s var(--ease-spring); transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-mobile {
  display: flex;
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(300px, 80vw);
  background: #0a0a0a;
  border-left: 1px solid rgba(212,175,55,0.15);
  z-index: 100002;
  flex-direction: column; align-items: flex-start; justify-content: center; gap: 0;
  padding: 5rem 2.5rem 3rem;
  opacity: 0; pointer-events: none;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.nav-mobile.open { right: 0; opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white);
  opacity: 0; transform: translateX(20px);
  transition: color 0.3s, opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  padding: 0.7rem 0; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open a { opacity: 1; transform: translateX(0); }
.nav-mobile.open a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile.open a:nth-child(6) { transition-delay: 0.3s; }
.nav-mobile.open a:nth-child(7) { transition-delay: 0.35s; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 100001;
}
.nav-mobile-overlay.open { display: block; }
.nav-mobile-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  color: var(--white); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: color 0.3s, transform 0.3s;
  z-index: 100010; line-height: 1;
}
.nav-mobile-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--black);
  transform-style: preserve-3d;
}
/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-duration: 9s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation-duration: 11s; animation-delay: -3s;
}
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; padding-top: 100px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
  animation: fadeInLeft 0.9s var(--ease-out) 0.3s both;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 900; line-height: 1.04;
  color: var(--white); margin-bottom: 1.8rem;
  animation: heroTitleEntry 1.1s var(--ease-out) 0.5s both;
}
.hero-title em { font-style: italic; color: var(--gold); }
/* Animated text underline on hero title */
.hero-title .underline-anim {
  position: relative; display: inline-block;
}
.hero-title .underline-anim::after {
  content: '';
  position: absolute; bottom: 4px; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 1.2s var(--ease-out) 1.4s;
}
.hero-title .underline-anim.visible::after { width: 100%; }
@keyframes heroTitleEntry {
  from { opacity: 0; transform: perspective(800px) rotateX(20deg) translateY(50px); }
  to   { opacity: 1; transform: perspective(800px) rotateX(0) translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-description {
  font-size: 1.1rem; color: rgba(255,255,255,0.68);
  max-width: 560px; line-height: 1.85; margin-bottom: 3rem;
  animation: fadeInUp 0.9s var(--ease-out) 0.8s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  animation: fadeInUp 0.9s var(--ease-out) 1s both;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2; animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════════
   STATS BAR — COUNTER ANIMATION
══════════════════════════════════════════ */
.stats-bar {
  background: var(--black-mid);
  border-top: 1px solid rgba(212,175,55,0.14);
  border-bottom: 1px solid rgba(212,175,55,0.14);
  padding: 3.5rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1rem; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); height: 50px; width: 1px;
  background: rgba(212,175,55,0.18);
}
.stat-number {
  font-family: var(--font-head); font-size: 3.2rem; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 0.4rem;
  transition: transform 0.3s var(--ease-spring);
}
.stat-item:hover .stat-number { transform: scale(1.08); }
.stat-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }

/* ══════════════════════════════════════════
   SERVICE CARDS — 3D TILT
══════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card {
  background: var(--black-soft);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
  text-decoration: none; display: block; color: var(--white);
  transition: background 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.5s var(--ease-out); transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--black-mid); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.service-card-number {
  font-family: var(--font-head); font-size: 4.5rem; font-weight: 900;
  color: rgba(212,175,55,0.07); line-height: 1; margin-bottom: 1.5rem;
  transition: color 0.4s, transform 0.4s var(--ease-spring);
}
.service-card:hover .service-card-number { color: rgba(212,175,55,0.18); transform: scale(1.05) translateZ(20px); }
.service-card-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--gold); }
.service-card-title {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem; line-height: 1.3;
  transition: color 0.3s;
}
.service-card:hover .service-card-title { color: var(--gold-light); }
.service-card-desc { font-size: 0.88rem; color: var(--grey); line-height: 1.85; margin-bottom: 2rem; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); transition: gap 0.35s var(--ease-spring);
}
.service-card:hover .service-card-link { gap: 1rem; }

/* ══════════════════════════════════════════
   ABOUT TEASER
══════════════════════════════════════════ */
.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }
.about-teaser-visual {
  position: relative; background: var(--black-mid); overflow: hidden;
}
.about-teaser-visual-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, transparent 60%), var(--black-mid);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-88 {
  font-family: var(--font-head);
  font-size: 18rem; font-weight: 900;
  color: rgba(212,175,55,0.06);
  line-height: 1; user-select: none;
  animation: float88 6s ease-in-out infinite alternate;
}
@keyframes float88 {
  from { transform: translateY(-10px) rotate(-2deg); }
  to   { transform: translateY(10px) rotate(2deg); }
}
.about-teaser-content {
  background: var(--black-soft); padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-feature-text { font-size: 0.9rem; color: var(--grey-light); line-height: 1.65; }

/* ══════════════════════════════════════════
   PORTFOLIO CARDS — 3D HOVER
══════════════════════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.portfolio-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--black-mid); aspect-ratio: 4/3;
  cursor: pointer; text-decoration: none; display: block;
  transform-style: preserve-3d; will-change: transform;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.portfolio-card:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,55,0.15); }
.portfolio-card-bg { position: absolute; inset: 0; transition: transform 0.7s var(--ease-out); }
.portfolio-card:hover .portfolio-card-bg { transform: scale(1.06); }
.portfolio-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.25) 60%, transparent 100%);
  opacity: 0.65; transition: opacity 0.4s;
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 0.92; }
.portfolio-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
  transform: translateY(12px); transition: transform 0.4s var(--ease-out);
}
.portfolio-card:hover .portfolio-card-content { transform: translateY(0); }
.portfolio-card-tag { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.portfolio-card-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.portfolio-card-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px;
  border: 1px solid rgba(212,175,55,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  opacity: 0; transform: scale(0.7) rotate(-45deg);
  transition: all 0.4s var(--ease-spring);
}
.portfolio-card:hover .portfolio-card-arrow { opacity: 1; transform: scale(1) rotate(0); }
.port-bg-1 { background: linear-gradient(135deg,#1a1a2e,#16213e,#0f3460); }
.port-bg-2 { background: linear-gradient(135deg,#1a0a0a,#2d1515,#4a1515); }
.port-bg-3 { background: linear-gradient(135deg,#0a1a0a,#0f2d0f,#154a15); }
.port-bg-4 { background: linear-gradient(135deg,#1a1a0a,#2d2d0f,#3d3d10); }
.port-bg-5 { background: linear-gradient(135deg,#1a0a1a,#2d0f2d,#3d103d); }
.port-bg-6 { background: linear-gradient(135deg,#0a1a1a,#0f2d2d,#104040); }

/* ══════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s var(--ease-out);
  text-decoration: none; display: block; color: var(--white);
  transform-style: preserve-3d;
}
.blog-card:hover {
  transform: translateY(-8px) perspective(600px) rotateX(2deg);
  border-color: rgba(212,175,55,0.2);
  box-shadow: var(--shadow);
}
.blog-card-image { height: 200px; overflow: hidden; position: relative; }
.blog-card-image-inner { width: 100%; height: 100%; transition: transform 0.7s var(--ease-out); }
.blog-card:hover .blog-card-image-inner { transform: scale(1.06); }
.blog-bg-1 { background: linear-gradient(135deg,#0d1b2a,#1b2838); }
.blog-bg-2 { background: linear-gradient(135deg,#1a0d0d,#2a1515); }
.blog-bg-3 { background: linear-gradient(135deg,#0d1a0d,#152a15); }
.blog-card-body { padding: 1.8rem; }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.blog-card-category { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.blog-card-date { font-size: 0.75rem; color: var(--grey); }
.blog-card-title {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--white); line-height: 1.4; margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--grey); line-height: 1.75; margin-bottom: 1.5rem; }
.blog-card-read-more {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.35s var(--ease-spring);
}
.blog-card:hover .blog-card-read-more { gap: 0.9rem; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: var(--black-mid);
  border-top: 1px solid rgba(212,175,55,0.14);
  border-bottom: 1px solid rgba(212,175,55,0.14);
  padding: 90px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* Animated particles inside CTA */
.cta-particle {
  position: absolute; border-radius: 50%;
  background: rgba(212,175,55,0.15);
  pointer-events: none;
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  from { transform: translateY(100%) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}
.cta-banner-title {
  font-family: var(--font-head); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 900; color: var(--white); margin-bottom: 1.2rem; position: relative;
}
.cta-banner-title em { font-style: italic; color: var(--gold); }
.cta-banner-subtitle {
  font-size: 1rem; color: var(--grey-light); margin-bottom: 2.8rem;
  max-width: 500px; margin-left: auto; margin-right: auto; position: relative;
}
.cta-banner-actions { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section {
  background: var(--black-soft); padding: 65px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.newsletter-text h3 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.newsletter-text p { font-size: 0.88rem; color: var(--grey); }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 480px; }
.newsletter-form input {
  flex: 1; padding: 0.9rem 1.4rem;
  background: var(--black-light); border: 1px solid rgba(255,255,255,0.1);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white); font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-form input::placeholder { color: var(--grey); }
.newsletter-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.08); }
.newsletter-form button {
  padding: 0.9rem 1.8rem; background: var(--gold); color: var(--black);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease-spring); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); transform: scale(1.03); }
.newsletter-form button:active { transform: scale(0.97); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--black-soft); border-top: 1px solid rgba(212,175,55,0.14); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 50px; }
.footer-brand p { font-size: 0.88rem; color: var(--grey); line-height: 1.8; margin-top: 1.2rem; margin-bottom: 1.8rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.85rem;
  transition: all 0.35s var(--ease-spring);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); transform: translateY(-3px) scale(1.1); }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.84rem; color: var(--grey); transition: color 0.3s, transform 0.3s; display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--gold); transform: translateX(5px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.footer-contact-icon { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-text { font-size: 0.84rem; color: var(--grey); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--grey); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--grey); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   PAGE HERO (INNER PAGES)
══════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px; background: var(--black);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero-title {
  font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4.5rem);
  font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.2rem;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.85; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(212,175,55,0.4); font-size: 0.6rem; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-story-box {
  background: var(--black-mid); border: 1px solid rgba(212,175,55,0.14);
  border-radius: var(--radius-lg); padding: 3rem; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s;
}
.about-story-box:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.about-story-box::before {
  content: '88'; position: absolute;
  font-family: var(--font-head); font-size: 12rem; font-weight: 900;
  color: rgba(212,175,55,0.04); top: -2rem; right: -1rem; line-height: 1; pointer-events: none;
}
.about-story-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.about-story-box h3 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.about-story-box p { font-size: 0.9rem; color: var(--grey-light); line-height: 1.85; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.about-stat {
  text-align: center; padding: 1.5rem;
  background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.about-stat:hover { transform: scale(1.04); background: rgba(212,175,55,0.09); }
.about-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--gold); }
.about-stat-label { font-size: 0.72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.value-card {
  background: var(--black-soft); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out);
  transform-style: preserve-3d;
}
.value-card:hover {
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-6px) perspective(600px) rotateX(3deg);
  box-shadow: var(--shadow);
}
.value-card-icon {
  width: 50px; height: 50px;
  background: rgba(212,175,55,0.1); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.5rem;
  transition: transform 0.4s var(--ease-spring), background 0.3s;
}
.value-card:hover .value-card-icon { transform: scale(1.15) rotate(-5deg); background: rgba(212,175,55,0.18); }
.value-card h4 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.value-card p { font-size: 0.87rem; color: var(--grey); line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-card-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: var(--black-mid); border: 2px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--gold);
  transition: all 0.4s var(--ease-spring);
}
.team-card:hover .team-card-avatar { border-color: var(--gold); transform: scale(1.08); box-shadow: 0 0 30px rgba(212,175,55,0.25); }
.team-card h4 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.team-card p { font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.service-full-card {
  background: var(--black-soft); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 3rem;
  transition: all 0.4s var(--ease-out);
  text-decoration: none; display: block; color: var(--white);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.service-full-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out);
}
.service-full-card:hover::after { transform: scaleX(1); }
.service-full-card:hover {
  border-color: rgba(212,175,55,0.15);
  transform: translateY(-6px) perspective(800px) rotateX(2deg);
  box-shadow: var(--shadow);
}
.service-full-card-header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1.5rem; }
.service-full-card-icon {
  width: 56px; height: 56px; background: rgba(212,175,55,0.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring), background 0.3s;
}
.service-full-card:hover .service-full-card-icon { transform: scale(1.1) rotate(-5deg); background: rgba(212,175,55,0.18); }
.service-full-card-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.service-full-card-sub { font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.service-full-card p { font-size: 0.9rem; color: var(--grey-light); line-height: 1.85; margin-bottom: 1.5rem; }
.service-features-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.service-features-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--grey-light); }
.service-features-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   SERVICE DETAILS PAGE
══════════════════════════════════════════ */
.service-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.service-detail-content h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; margin-top: 2.5rem; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p { font-size: 0.95rem; color: var(--grey-light); line-height: 1.9; margin-bottom: 1.2rem; }
.service-detail-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--black-soft); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; }
.sidebar-widget h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(212,175,55,0.14); }
.sidebar-service-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-service-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1rem; border-radius: var(--radius); font-size: 0.85rem;
  color: var(--grey-light); transition: all 0.3s; border: 1px solid transparent;
}
.sidebar-service-links a:hover, .sidebar-service-links a.active {
  background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.2); color: var(--gold);
}
.sidebar-cta {
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius); padding: 2rem; text-align: center;
}
.sidebar-cta h4 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.sidebar-cta p { font-size: 0.85rem; color: var(--grey-light); margin-bottom: 1.5rem; line-height: 1.7; }

/* ══════════════════════════════════════════
   PORTFOLIO PAGE
══════════════════════════════════════════ */
.portfolio-filter { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.4rem; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--grey); background: transparent; cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08);
  transform: scale(1.05);
}
.portfolio-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.portfolio-item { transition: opacity 0.4s, transform 0.4s var(--ease-out); }
.portfolio-item.hidden { opacity: 0; transform: scale(0.9); pointer-events: none; }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */
.blog-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; margin-bottom: 4rem; }
.blog-featured-card {
  background: var(--black-soft); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; display: block; color: var(--white);
  transition: all 0.4s var(--ease-out);
}
.blog-featured-card:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-featured-image { height: 300px; overflow: hidden; }
.blog-featured-image-inner { width: 100%; height: 100%; transition: transform 0.7s var(--ease-out); }
.blog-featured-card:hover .blog-featured-image-inner { transform: scale(1.05); }
.blog-featured-body { padding: 2rem; }
.blog-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 2.5rem; }
.contact-info-icon {
  width: 48px; height: 48px; background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.contact-info-item:hover .contact-info-icon { transform: scale(1.1) rotate(-5deg); background: rgba(212,175,55,0.18); }
.contact-info-text h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.contact-info-text p, .contact-info-text a { font-size: 0.9rem; color: var(--grey-light); line-height: 1.6; transition: color 0.3s; }
.contact-info-text a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   FORMS
══════════════════════════════════════════ */
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 0.5rem; }
.form-control {
  width: 100%; padding: 0.9rem 1.2rem;
  background: var(--black-mid); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); color: var(--white); font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.form-control::placeholder { color: var(--grey); }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); transform: translateY(-1px); }
.form-control.error { border-color: #e74c3c; }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-select {
  width: 100%; padding: 0.9rem 1.2rem;
  background: var(--black-mid); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); color: var(--white); font-size: 0.9rem;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.2rem center;
  transition: border-color 0.3s;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--black-mid); color: var(--white); }
.field-error { display: block; font-size: 0.76rem; color: #e74c3c; margin-top: 0.4rem; }
.alert {
  padding: 1rem 1.4rem; border-radius: var(--radius); font-size: 0.9rem;
  margin-bottom: 1.5rem; display: none; align-items: center; gap: 0.8rem;
  animation: alertSlideIn 0.4s var(--ease-out) both;
}
.alert.show { display: flex; }
@keyframes alertSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.alert-success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #2ecc71; }
.alert-error   { background: rgba(231,76,60,0.12);  border: 1px solid rgba(231,76,60,0.3);  color: #e74c3c; }

/* ══════════════════════════════════════════
   MAP PLACEHOLDER
══════════════════════════════════════════ */
.map-section {
  background: var(--black-mid); height: 400px;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(212,175,55,0.1); border-bottom: 1px solid rgba(212,175,55,0.1);
  position: relative; overflow: hidden;
}
.map-placeholder { text-align: center; position: relative; z-index: 1; }
.map-placeholder h4 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.map-placeholder p { color: var(--grey); font-size: 0.9rem; }
.map-pin {
  width: 60px; height: 60px; background: rgba(212,175,55,0.15);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  margin: 0 auto 1.2rem; animation: mapPulse 2s infinite;
}
@keyframes mapPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50%      { box-shadow: 0 0 0 24px rgba(212,175,55,0); }
}

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px; background: var(--gold); color: var(--black);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 900;
  opacity: 0; transform: translateY(20px) scale(0.8);
  transition: all 0.4s var(--ease-spring); border: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); }
#back-to-top:hover { background: var(--gold-light); transform: translateY(-4px) scale(1.08); box-shadow: var(--shadow-gold); }
#back-to-top:active { transform: translateY(0) scale(0.95); }

/* ══════════════════════════════════════════
   SPINNER
══════════════════════════════════════════ */
.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(10,10,10,0.3); border-top-color: var(--black);
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.98); border-top: 1px solid rgba(212,175,55,0.2);
  padding: 1rem 1.2rem; z-index: 100000;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.5s var(--ease-out);
  box-sizing: border-box; width: 100%;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.78rem; color: var(--grey-light); flex: 1; min-width: 0; margin: 0; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════════ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10001; width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* ══════════════════════════════════════════
   GLITCH EFFECT (for 88 logo mark)
══════════════════════════════════════════ */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: inherit; font-weight: inherit;
  color: var(--gold);
}
.glitch::before {
  animation: glitchTop 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  color: #ff0040;
  opacity: 0;
}
.glitch::after {
  animation: glitchBottom 3s infinite 0.1s;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  color: #00ffff;
  opacity: 0;
}
.nav-logo-mark:hover .glitch::before,
.nav-logo-mark:hover .glitch::after { opacity: 1; }
@keyframes glitchTop {
  0%,90%,100% { transform: translate(0); }
  92% { transform: translate(-2px, -1px); }
  94% { transform: translate(2px, 1px); }
  96% { transform: translate(-1px, 2px); }
}
@keyframes glitchBottom {
  0%,90%,100% { transform: translate(0); }
  92% { transform: translate(2px, 1px); }
  94% { transform: translate(-2px, -1px); }
  96% { transform: translate(1px, -2px); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-visual { min-height: 300px; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-full-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .blog-full-grid { grid-template-columns: repeat(2,1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
  .services-full-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .about-teaser-content { padding: 50px 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }
  .section-padding { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item::after { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: clamp(2rem,8vw,3rem); }
  .hero { min-height: 100svh; padding-top: 80px; }
  .hero-content { padding: 2rem 0; }
  .hero-description { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════
   CONTACT FORM WRAP
══════════════════════════════════════════ */
.contact-form-wrap {
  background: var(--black-soft); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 3rem;
}

/* ══════════════════════════════════════════
   STAGGER CHILDREN ANIMATION
══════════════════════════════════════════ */
.stagger-children > * {
  opacity: 0;
  transform: perspective(600px) translateY(30px) rotateX(8deg);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.stagger-children.visible > * {
  opacity: 1;
  transform: perspective(600px) translateY(0) rotateX(0);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ══════════════════════════════════════════
   ABOUT STORY CONTENT SIDE
══════════════════════════════════════════ */
.about-story-content { display: flex; flex-direction: column; justify-content: center; }
.about-story-content .section-subtitle { margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════
   NAVBAR HAMBURGER
══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
}

/* old fullscreen nav removed */

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9990;
  padding: 1.4rem 0;
  transition: background 0.4s var(--ease-smooth), padding 0.4s, box-shadow 0.4s;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.nav-inner {
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  transition: text-shadow 0.3s;
  position: relative;
}
.nav-logo:hover .nav-logo-mark {
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name    { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); }
.nav-logo-tagline { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); }
.nav-links {
  display: flex; align-items: center; gap: 2.2rem; margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75); position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* ── btn-outline-gold ── */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(212,175,55,0.5);
  padding: 0.65rem 1.6rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: var(--radius);
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.35s var(--ease-spring);
  position: relative; overflow: hidden;
}
.btn-outline-gold:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.2);
}
.btn-outline-gold:active { transform: translateY(0) scale(0.97); }

/* ── btn-outline ── */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 0.9rem 2.4rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: var(--radius);
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.55rem;
  transition: all 0.35s var(--ease-spring);
  position: relative; overflow: hidden;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}
.btn-outline:active { transform: translateY(0) scale(0.97); }

/* ── btn-icon ── */
.btn-icon { width: 16px; height: 16px; transition: transform 0.35s var(--ease-spring); }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
  padding: 0 0 6rem;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; will-change: transform;
  transition: transform 0.8s var(--ease-smooth);
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}

/* ══════════════════════════════════════════
   SERVICE DETAIL FEATURE CARDS
══════════════════════════════════════════ */
.service-detail-feature {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.35s var(--ease-out);
}
.service-detail-feature:hover {
  border-color: rgba(212,175,55,0.2);
  transform: translateX(6px);
}
.service-detail-feature h4 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.4rem;
}
.service-detail-feature p {
  font-size: 0.87rem; color: var(--grey-light); line-height: 1.7;
}

/* ══════════════════════════════════════════
   ABOUT PAGE — STORY VISUAL
══════════════════════════════════════════ */
.about-story-visual {
  position: relative; background: var(--black-mid);
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.about-story-visual-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, transparent 60%);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-88-large {
  font-family: var(--font-head);
  font-size: 14rem; font-weight: 900;
  color: rgba(212,175,55,0.07);
  line-height: 1; user-select: none;
  animation: float88 6s ease-in-out infinite alternate;
}
.nav-logo-img {
  height: 44px;   /* same size as your gold square */
  width: auto;
  object-fit: contain;
}
.about-logo-img {
  max-width: 80%;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}
  LOGO IMAGE REPLACEMENTS
══════════════════════════════════════════ */
.loader-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(212,175,55,0.5));
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}
.nav-logo-mark {
  background: none !important;
  border-radius: 0 !important;
}
.loader-logo {
  font-size: 0 !important;
}
/* ── WhatsApp Bubble ── */
.wa-bubble{position:fixed;bottom:2rem;left:2rem;z-index:100001;display:flex;align-items:center;gap:.6rem;}
.wa-btn{position:relative;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 20px rgba(37,211,102,.45);animation:waPulse 2.5s ease-in-out infinite;transition:transform .3s,box-shadow .3s;text-decoration:none;flex-shrink:0;}
.wa-btn:hover{transform:scale(1.12);box-shadow:0 8px 32px rgba(37,211,102,.6);animation:none;}
.wa-btn svg{width:28px;height:28px;fill:#fff;position:relative;z-index:2;}
@keyframes waPulse{0%,100%{transform:scale(1);box-shadow:0 4px 20px rgba(37,211,102,.45);}50%{transform:scale(1.07);box-shadow:0 6px 30px rgba(37,211,102,.65);}}
.wa-ring{position:absolute;inset:0;border-radius:50%;background:rgba(37,211,102,.25);animation:waRing 2.5s ease-out infinite;}
.wa-ring:nth-child(2){animation-delay:.8s;}
.wa-ring:nth-child(3){animation-delay:1.6s;}
@keyframes waRing{0%{transform:scale(1);opacity:.6;}100%{transform:scale(2.4);opacity:0;}}
.wa-label{background:rgba(10,10,10,.88);backdrop-filter:blur(8px);color:#fff;font-size:.72rem;padding:.4rem .9rem;border-radius:99px;white-space:nowrap;opacity:0;transform:translateX(-8px);transition:all .3s;pointer-events:none;font-family:var(--font-body);}
.wa-bubble:hover .wa-label{opacity:1;transform:translateX(0);}

/* ══════════════════════════════════════════
   MOBILE CRITICAL FIXES
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Prevent horizontal scroll completely ── */
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    position: relative;
  }
  * { box-sizing: border-box; }
  .container { width: 100%; padding: 0 1rem; overflow: hidden; }

  /* ── Navbar: only logo + hamburger visible ── */
  #navbar { padding: 0.9rem 0; background: rgba(10,10,10,0.95) !important; backdrop-filter: blur(20px); }
  .nav-links { display: none !important; }
  .nav-cta   { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-inner { padding: 0 1rem; }
  .nav-logo-name { font-size: 0.95rem; }
  .nav-logo-tagline { font-size: 0.55rem; }
  .nav-logo-mark img { width: 36px; height: 36px; }

  /* ── Hero — fits screen, no overflow ── */
  .hero { min-height: 100svh; padding: 100px 0 60px; overflow: hidden; }
  .hero-title { font-size: clamp(1.9rem, 7.5vw, 3rem) !important; line-height: 1.15; word-break: break-word; }
  .hero-description { font-size: 0.9rem; line-height: 1.7; }
  .hero-actions { flex-direction: column; gap: 0.8rem; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-orb, .hero-orb-2 { display: none; }

  /* ── Cookie banner — full width, stackable ── */
  .cookie-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1rem !important;
    gap: 0.8rem !important;
    left: 0 !important; right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .cookie-banner p { font-size: 0.75rem !important; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .cookie-actions .btn { flex: 1; text-align: center; justify-content: center; font-size: 0.72rem !important; padding: 0.55rem 0.8rem !important; }

  /* ── Floating buttons — don't overlap cookie banner ── */
  .wa-bubble { bottom: 7rem; left: 1rem; gap: 0.4rem; }
  .wa-btn { width: 48px !important; height: 48px !important; }
  .ai-chat-btn { width: 44px !important; height: 44px !important; }
  .ai-chat-window { left: 0.5rem !important; width: calc(100vw - 1rem) !important; bottom: 8rem !important; }

  /* ── Back to top button ── */
  #back-to-top { bottom: 7rem; right: 1rem; }

  /* ── Sections ── */
  .section-padding { padding: 50px 0; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* ── Stats grid ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.5rem; }

  /* ── Footer ── */
  .footer { padding: 3rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* ── Images ── */
  img { max-width: 100%; height: auto; }
}

/* When cookie banner is NOT showing, restore normal button positions */
@media (max-width: 768px) {
  body:not(.cookie-visible) .wa-bubble { bottom: 2rem; }
  body:not(.cookie-visible) #back-to-top { bottom: 2rem; }
}
