/* ========================================
   UXONIC — Premium Dark Theme
   ======================================== */

/* ----------------------------------------
   CSS VARIABLES / DESIGN TOKENS
   ---------------------------------------- */
:root {
  /* Backgrounds — Premium Dark Theme matching Logo */
  --bg-primary: #0B1325;
  --bg-white: #0F172A;
  --bg-lime: rgba(212, 175, 55, 0.12);
  --bg-lime-soft: #0E1A33;
  --bg-dark: #060A12;
  --bg-dark-card: #0F172A;

  /* Brand Luxury Gold & Deep Navy (Matching UXONIC Logo) */
  --gold-primary: #D4AF37;
  --gold-mid: #C5A059;
  --gold-light: #E5C158;
  --gold-accent: #F3E5AB;

  --navy-deep: #0A1128;
  --navy-card: #0F172A;
  --navy-light: #162447;

  /* Brand Legacy Variables mapped to Gold for full design harmony */
  --green-dark: #D4AF37;
  --green-mid: #C5A059;
  --green-light: #E5C158;
  --green-accent: #F3E5AB;

  /* Text Tokens for High Contrast & Legibility */
  --text-dark: #FFFFFF;
  --text-body: #CBD5E1;
  --text-muted: #94A3B8;
  --text-light: #64748B;
  --text-white: #FFFFFF;
  --text-gold: #D4AF37;

  /* Typography */
  --font-display: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----------------------------------------
   RESET & BASE
   ---------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
p, span, a, li, label, input, button {
  font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-regular);
  letter-spacing: -0.025em;
}
a { text-decoration: none; color: inherit; cursor: pointer; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ----------------------------------------
   TYPOGRAPHY HELPERS
   ---------------------------------------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  background: rgba(212, 175, 55, 0.12);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-regular);
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  font-weight: var(--font-weight-light);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

.highlight-text { color: var(--green-dark); }
.highlight-serif { font-family: var(--font-display); font-style: italic; color: var(--green-dark); }

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  color: #0A1128;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  border: 2px solid #D4AF37;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-primary:hover { background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%); border-color: #E5C158; color: #060A12; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45); }
.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(212, 175, 55, 0.35);
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--green-dark); color: var(--green-dark); background: rgba(212, 175, 55, 0.1); transform: translateY(-2px); }

/* ----------------------------------------
   PAGE LOAD OVERLAY
   ---------------------------------------- */
.page-load-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-load-overlay.fade-out { opacity: 0; visibility: hidden; }
.load-logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  animation: loadPulse 1.2s ease-in-out infinite;
}
@keyframes loadPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

/* ----------------------------------------
   REVEAL ANIMATIONS (Multiple types)
   ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s var(--transition-spring);
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

/* Page transitions */
.page { display: none; }
.page-active { display: block; animation: pageFadeIn 0.5s ease forwards; }
.page-enter { display: block; opacity: 0; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ----------------------------------------
   HEADER / NAVBAR — Sleek Dark Glass Pill Style
   ---------------------------------------- */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(22, 25, 34, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(16, 18, 26, 0.94);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 48px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  top: 10px;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition);
}
.logo:hover {
  transform: translateY(-1px);
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
  transition: all var(--transition);
}
.logo:hover .logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.65));
}
.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.logo-accent {
  font-family: 'Cinzel', serif;
  color: #D4AF37;
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #C5A059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
  font-weight: 900;
  padding: 0 1px;
}

/* Nav links */
.nav-list {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
}
.nav-link i { 
  font-size: 0.85rem; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  margin-right: 4px; 
  color: var(--green-dark); 
  opacity: 0.9; 
  transition: all var(--transition); 
}
.nav-link:hover { 
  color: #FFFFFF; 
  background: rgba(255, 255, 255, 0.12); 
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.nav-link:hover i, .nav-link.active i { 
  opacity: 1; 
  color: var(--green-dark); 
}
.nav-link.active {
  color: #FFFFFF;
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.45);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

/* CTA Button — Dark Glass Pill like screenshot */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all var(--transition);
}
.btn-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
  box-shadow: 0 0 8px #34d399;
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----------------------------------------
   WHATSAPP FLOAT
   ---------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ========================================
   HERO SECTION — Full-Bleed Image Style
   ======================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg-section {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-image: url('images/hero-bg-modern.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 18, 28, 0.75) 0%,
    rgba(15, 18, 28, 0.6) 40%,
    rgba(15, 18, 28, 0.85) 80%,
    rgba(15, 18, 28, 0.98) 100%
  );
  z-index: 1;
}

/* Hero orbs — soft green glows */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  bottom: 10%; right: 10%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  animation: orbFloat2 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(20px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 160px 24px 40px;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.badge-new {
  background: linear-gradient(135deg, #D4AF37, #C5A059);
  color: #0A1128;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: var(--font-weight-regular);
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.hero-headline .highlight-serif,
.hero-headline .highlight-text {
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.hero-subtitle {
  font-size: 1.12rem;
  font-weight: var(--font-weight-light);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 32px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.hero-btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  color: #0A1128;
  font-weight: 700;
  border: 2px solid #D4AF37;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}
.hero-btn-primary:hover { background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%); border-color: #E5C158; color: #060A12; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(212, 175, 55, 0.55); }
.hero-btn-ghost {
  background: rgba(30, 34, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.hero-btn-ghost i {
  color: #FFFFFF;
  font-size: 0.85rem;
}
.hero-btn-ghost:hover { 
  background: rgba(40, 45, 60, 0.95); 
  border-color: rgba(255, 255, 255, 0.35); 
  color: #FFFFFF; 
  transform: translateY(-3px);
  box-shadow: 
    0 14px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Hero floating cards */
.hero-cards-row {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  padding: 40px 24px 60px;
  flex-wrap: wrap;
}

.hero-glass-card {
  background: rgba(18, 22, 34, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: all var(--transition);
  min-width: 180px;
}
.hero-glass-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); border-color: rgba(212, 175, 55, 0.45); }

.hero-card-left { text-align: center; }
.hgc-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--green-dark);
  font-size: 1.2rem;
}
.hgc-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--font-weight-regular);
  color: #D4AF37;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.hgc-label {
  font-size: 0.78rem;
  font-weight: var(--font-weight-light);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Browser mockup card */
.hero-mockup-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  width: 420px;
  max-width: 100%;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  transition: all var(--transition);
}
.hero-mockup-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35); }

.hmc-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0A1128;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hmc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hmc-dot:nth-child(1) { background: #FF5F57; }
.hmc-dot:nth-child(2) { background: #FFBD2E; }
.hmc-dot:nth-child(3) { background: #28C840; }
.hmc-url {
  flex: 1;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
}
.hmc-badge {
  background: linear-gradient(135deg, #D4AF37, #C5A059);
  color: #0A1128;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.hmc-body { padding: 16px; background: #0F172A; }
.hmc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hmc-nav-logo {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
.hmc-nav-links { display: flex; gap: 6px; }
.hmc-nav-links span { width: 28px; height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.hmc-nav-cta { width: 48px; height: 18px; background: var(--green-dark); border-radius: var(--radius-pill); }

.hmc-hero-bar { height: 6px; background: var(--bg-lime); border-radius: 3px; margin-bottom: 10px; width: 80%; }
.hmc-hero-text { margin-bottom: 16px; }
.hmc-line { border-radius: 3px; margin-bottom: 6px; }
.hmc-line-h1 { height: 10px; width: 75%; background: #FFFFFF; opacity: 0.25; }
.hmc-line-h2 { height: 10px; width: 55%; background: #FFFFFF; opacity: 0.25; }
.hmc-line-sub { height: 6px; width: 85%; background: #FFFFFF; opacity: 0.12; }

.hmc-cards { display: flex; gap: 8px; margin-bottom: 14px; }
.hmc-mini-card {
  flex: 1;
  background: #162447;
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hmc-mini-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.hmc-mini-lines { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.hmc-mini-lines span { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.15); }
.hmc-mini-lines span:nth-child(2) { width: 60%; }

.hmc-growth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hmc-growth-label { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }
.hmc-growth-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.hmc-growth-fill {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #D4AF37, #F3E5AB);
  border-radius: 3px;
  animation: growthFill 2s ease-out;
}
@keyframes growthFill { from { width: 0; } }
.hmc-growth-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-dark);
}

/* Right hero card */
.hero-card-right { min-width: 200px; }
.hgc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 14px;
}
.hgc-metrics { display: flex; gap: 14px; }
.hgc-metric { text-align: center; }
.hgc-metric-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: conic-gradient(var(--green-dark) var(--pct, 0%), rgba(255,255,255,0.1) var(--pct, 0%));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  position: relative;
}
.hgc-metric-ring span {
  background: #0A1128;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
}
.hgc-metric-label { font-size: 0.68rem; color: var(--text-muted); }

/* Hero bottom fog */
.hero-bottom-fog {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 4;
  pointer-events: none;
}

/* ========================================
   SERVICES MARQUEE STRIP
   ======================================== */
.services-strip {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.services-strip-inner { overflow: hidden; }
.services-strip-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0A1128;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.strip-item i { color: #060A12; }
.strip-dot { color: #060A12; font-size: 0.7rem; padding: 0 4px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========================================
   WHY UXONIC SECTION
   ======================================== */
.why-us { background: var(--bg-primary); position: relative; }

/* Geometric shapes */
.geo-shape {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.geo-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 3px solid var(--green-dark);
  animation: geoFloat 12s ease-in-out infinite;
}
.geo-diamond {
  width: 40px; height: 40px;
  border: 3px solid var(--green-dark);
  transform: rotate(45deg);
  animation: geoFloat 8s ease-in-out infinite reverse;
}
.geo-dots {
  width: 60px; height: 60px;
  background-image: radial-gradient(var(--green-dark) 2px, transparent 2px);
  background-size: 10px 10px;
}
.geo-ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px dashed var(--green-dark);
  animation: geoSpin 20s linear infinite;
}
.geo-cross { font-size: 2rem; color: var(--green-dark); }
.geo-cross::before { content: '+'; }
@keyframes geoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes geoSpin { to { transform: rotate(360deg); } }

.why-us .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.why-us .section-title { color: var(--text-dark); }
.why-us .section-desc { color: var(--text-muted); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.why-card {
  background: #0F172A;
  border-radius: 22px;
  padding: 36px 26px 32px;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
/* Gold top accent bar */
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #D4AF37, #F3E5AB);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 0 0 3px 3px;
}
.why-card:hover::before { transform: scaleX(0); }
/* Subtle glow bg on hover */
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.why-card:hover::after { opacity: 0; }
.why-card:hover::before { transform: scaleX(0); }
.why-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transform: none;
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #D4AF37;
  margin-bottom: 22px;
  transition: all 0.35s ease;
  position: relative; z-index: 1;
}
.why-card:hover .why-icon {
  background: rgba(212,175,55,0.12);
  color: #D4AF37;
  border-color: rgba(212,175,55,0.25);
  transform: none;
  box-shadow: none;
}
.why-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative; z-index: 1;
}
.why-card p {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.72;
  letter-spacing: 0.008em;
  position: relative; z-index: 1;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #0F172A;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  transition: background 0.3s ease;
}
.stat-item:hover { background: rgba(212, 175, 55, 0.04); }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #D4AF37;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  background: #060A12;
  position: relative;
}
.process .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.process .section-title { color: var(--text-dark); }
.process .section-desc { color: var(--text-muted); }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding-left: 0;
}

/* Connecting line */
.process-line {
  position: absolute;
  top: 50px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 0;
  border-radius: 2px;
  opacity: 0.5;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #0F172A;
  border-radius: 22px;
  padding: 36px 20px 28px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
/* Subtle bottom glow on hover */
.process-step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #F3E5AB);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  border-radius: 0 0 22px 22px;
}
.process-step:hover::after { transform: scaleX(0); }
.process-step:hover {
  transform: none;
  border-color: #D4AF37;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Step number badge */
.step-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0A1128;
  background: linear-gradient(135deg, #E5C158, #D4AF37);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.38);
  border: 2.5px solid #0F172A;
  line-height: 1;
  min-width: unset;
  letter-spacing: 0.02em;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}

/* Icon box */
.step-icon {
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  margin-bottom: 20px;
  font-size: 1.3rem;
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
}
.process-step:hover .step-icon {
  background: rgba(212,175,55,0.12);
  color: #D4AF37;
  border-color: rgba(212,175,55,0.25);
  transform: none;
  box-shadow: none;
}

.step-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.process-step:hover .step-content h3 {
  color: #FFFFFF;
}
.step-content p {
  font-size: 0.845rem;
  color: #CBD5E1;
  line-height: 1.72;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: none;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  background: var(--bg-primary);
  position: relative;
}
.testimonials .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.reviews-header-left .section-title { color: var(--text-dark); margin-bottom: 0; }

.reviews-trust-badge { text-align: right; }
.trust-avatars { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.trust-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  margin-left: -8px;
  border: 2px solid var(--bg-primary);
}
.trust-av-more {
  background: var(--text-dark) !important;
  font-size: 0.6rem;
}
.trust-badge-stars { color: #FBBF24; font-size: 0.85rem; margin-bottom: 4px; }
.trust-badge-label { font-size: 0.75rem; color: var(--text-muted); }

/* Reviews masonry */
.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.reviews-col { display: flex; flex-direction: column; gap: 20px; }
.reviews-col--center { margin-top: -20px; }

.review-tile {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}
.review-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06); }
.review-tile--dark {
  background: var(--bg-dark);
  border-color: transparent;
}
.review-tile--dark .review-tile-text { color: rgba(255, 255, 255, 0.85); }
.review-tile--dark .review-tile-meta strong { color: var(--text-white); }
.review-tile--dark .review-tile-meta span { color: rgba(255, 255, 255, 0.5); }
.review-tile--dark .review-tile-close { color: rgba(255, 255, 255, 0.3); }

.review-tile--featured {
  background: linear-gradient(135deg, var(--green-dark), #2E7D32);
  border-color: transparent;
}
.review-tile--featured .review-tile-text { color: rgba(255, 255, 255, 0.9); }
.review-tile--featured .review-tile-meta strong { color: white; }
.review-tile--featured .review-tile-meta span { color: rgba(255, 255, 255, 0.6); }
.review-tile--featured .review-tile-close { color: rgba(255, 255, 255, 0.3); }

.review-tile--highlight { background: var(--bg-lime-soft); }
.review-tile--faded { opacity: 0.7; }

.review-tile-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}
.review-tile-footer { display: flex; align-items: center; gap: 12px; }
.review-tile-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.review-tile-meta { flex: 1; }
.review-tile-meta strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.review-tile-meta span { font-size: 0.75rem; color: var(--text-muted); }
.review-tile-close {
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 4px;
}

/* Audience tags */
.audience-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}
.aud-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.aud-tag {
  padding: 8px 18px;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition);
}
.aud-tag:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); transform: translateY(-2px); }

/* Reviews CTA */
.reviews-view-all { text-align: center; padding-top: 10px; }
.reviews-cta-btn { width: 100%; justify-content: center; }


/* ========================================
   PAGE HERO (Services, Portfolio, About, Contact)
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, #070B14 0%, #0B1325 50%, #0F172A 100%);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  transform: translateX(-50%);
  animation: glowPulse 6s ease-in-out infinite;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.page-hero .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: #E5C158;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: var(--font-weight-regular);
  color: #fff;
  text-transform: none;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero-title .highlight-text { color: #D4AF37; }
.page-hero-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; }

/* ========================================
   SERVICES GRID
   ======================================== */
.services { background: var(--bg-primary); }
.services .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.services .section-title { color: var(--text-dark); }
.services .section-desc { color: var(--text-muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #0F172A;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.14);
}
.service-card-content {
  padding: 24px 20px 16px;
  flex: 1;
}
.service-icon-wrap {
  width: 46px; height: 46px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 10px;
  color: var(--green-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--green-dark);
  color: #0A1128;
  border-color: var(--green-dark);
  transform: scale(1.06);
}
.service-icon-wrap svg { width: 100%; height: 100%; }
.service-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.service-card-content p {
  font-size: 0.86rem;
  color: #94A3B8;
  line-height: 1.58;
}
.service-card-showcase {
  margin: 0 16px 16px 16px;
  background: linear-gradient(180deg, #0A1128 0%, #060A12 100%);
  border-radius: 14px;
  padding: 8px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}
.service-card:hover .service-card-showcase {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.16);
}
.service-mockup-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  padding-bottom: 2px;
}
.sm-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.sm-dot.red { background: #ff5f56; }
.sm-dot.yellow { background: #ffbd2e; }
.sm-dot.green { background: #27c93f; }
.sm-title {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
}
.service-card-image {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  background: #060A12;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

/* ========================================
   FEATURED PROJECTS / CASE STUDIES
   ======================================== */
.featured-projects { background: #060A12; }
.featured-projects .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.featured-projects .section-title { color: #FFFFFF; }
.featured-projects .section-desc { color: var(--text-muted); }

.case-studies { display: flex; flex-direction: column; gap: 80px; }
.case-study {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.case-study-reverse { direction: rtl; }
.case-study-reverse > * { direction: ltr; }

/* Case visual */
.case-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-lime), var(--bg-lime-soft));
}
.case-visual:hover .case-shine { left: 120%; }
.case-shine {
  position: absolute;
  top: -50%; left: -100%;
  width: 60%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  z-index: 3;
}
.case-tag-pill {
  position: absolute;
  bottom: 16px; left: 16px;
  background: #0F172A;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex; align-items: center; gap: 6px;
  z-index: 2;
}
.case-visual-num {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.12);
  z-index: 1;
}

/* Case mockup */
.case-mockup { padding: 24px; position: relative; z-index: 2; }
.mockup-browser {
  background: #0F172A;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0A1128;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot.red { background: #FF5F57; }
.browser-dot.yellow { background: #FFBD2E; }
.browser-dot.green { background: #28C840; }
.browser-url {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
}

/* Browser screen mockup internals */
.browser-screen { padding: 16px; min-height: 160px; }
.inkhouse-screen { background: #1a1a1a; }
.screen-hero-bar { height: 4px; border-radius: 2px; width: 60%; background: var(--green-dark); margin-bottom: 12px; }
.screen-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sn-logo { font-size: 0.7rem; font-weight: 700; color: white; }
.sn-links { display: flex; gap: 4px; }
.sn-links span { width: 20px; height: 4px; background: rgba(255, 255, 255, 0.2); border-radius: 2px; }
.screen-content { margin-bottom: 12px; }
.sc-headline { height: 8px; width: 70%; background: rgba(255,255,255,0.25); border-radius: 2px; margin-bottom: 6px; }
.sc-sub { height: 5px; width: 50%; background: rgba(255,255,255,0.12); border-radius: 2px; margin-bottom: 10px; }
.sc-btn { height: 16px; width: 60px; background: var(--green-dark); border-radius: var(--radius-pill); }
.screen-gallery { display: flex; gap: 6px; }
.sg-item { flex: 1; height: 40px; background: rgba(255,255,255,0.08); border-radius: 4px; }

.luxe-screen { background: #FAFAF5; }
.luxe-bar { background: #C5A66F; }
.luxe-nav .sn-logo { color: #2A2A2A; }
.luxe-nav .sn-links span { background: rgba(0,0,0,0.12); }
.luxe-products { display: flex; gap: 8px; }
.lp-item { flex: 1; }
.lp-img { height: 50px; background: #EFEFEF; border-radius: 4px; margin-bottom: 6px; }
.lp-title { height: 5px; width: 80%; background: rgba(0,0,0,0.1); border-radius: 2px; margin-bottom: 4px; }
.lp-price { height: 5px; width: 40%; background: rgba(0,0,0,0.15); border-radius: 2px; }

/* Case info */
.case-info { padding: 20px 0; }
.case-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.case-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.12);
  position: absolute;
  right: 24px; top: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.case-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.case-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.case-features { margin-bottom: 20px; }
.case-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 5px 0;
}
.case-features i { color: var(--green-dark); font-size: 0.8rem; }
.case-results { display: flex; gap: 24px; margin-bottom: 20px; }
.result-item { text-align: center; }
.result-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
}
.result-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.case-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  color: #0A1128;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.case-cta-btn:hover { background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35); }

/* ========================================
   PORTFOLIO PAGE
   ======================================== */
.portfolio { background: var(--bg-primary); }
.portfolio .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.portfolio .section-title { color: var(--text-dark); }
.portfolio .section-desc { color: var(--text-muted); }

.portfolio-filter {
  display: flex; gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 600;
  background: transparent; border: 1.5px solid rgba(212, 175, 55, 0.25);
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--green-dark); color: var(--green-dark); }
.filter-btn.active {
  background: linear-gradient(135deg, #D4AF37, #C5A059); border-color: var(--green-dark);
  color: #0A1128; font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0F172A;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition);
}
.portfolio-card.hidden { display: none; }
.portfolio-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4); border-color: rgba(212, 175, 55, 0.35); }

.portfolio-img {
  height: 220px;
  background: #060A12;
  position: relative;
  overflow: hidden;
}
.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 37, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-category {
  padding: 4px 14px;
  background: rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 10px;
}
.portfolio-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.portfolio-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.portfolio-link {
  width: 40px; height: 40px;
  background: rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.portfolio-link:hover { background: #D4AF37; color: #0A1128; }

.portfolio-info { padding: 16px 20px; }
.p-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.portfolio-info h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}
.portfolio-cta { text-align: center; margin-top: 40px; }

/* ========================================
   ABOUT PAGE — Story Section
   ======================================== */
.about-story { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.about-text .section-title { color: var(--text-dark); text-align: left; }
.about-text .section-title .highlight-text { color: var(--green-dark); }
.about-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.about-text .btn-primary { color: #0A1128; }
.about-text .btn-secondary { color: #FFFFFF; border-color: rgba(212, 175, 55, 0.35); }
.about-text .btn-secondary:hover { border-color: var(--green-dark); color: var(--green-dark); }

.about-visual { position: relative; }
.about-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.about-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-badge-card {
  position: absolute;
  bottom: -20px; right: -10px;
  background: linear-gradient(135deg, #D4AF37, #C5A059);
  color: #0A1128;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #0A1128;
}

/* ========================================
   FOUNDER SPOTLIGHT SECTION (About Page)
   ======================================== */
.founder-section {
  position: relative;
  background: var(--bg-primary);
  padding: 60px 0 80px 0;
}

.founder-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(11, 19, 37, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-xl);
  padding: 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.founder-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(13, 27, 42, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: center;
}

.founder-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-img-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  padding: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.7), rgba(197, 160, 89, 0.25), rgba(15, 23, 42, 0.9));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.founder-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 6px);
  display: block;
  filter: brightness(1.02) contrast(1.03);
  transition: transform var(--transition);
}

.founder-card:hover .founder-img {
  transform: scale(1.02);
}

.founder-badge-floating {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4AF37, #C5A059);
  color: #0A1128;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.founder-quick-stats {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.stat-pill {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-primary);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: fit-content;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
}

.founder-company-role {
  font-size: 1.1rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.founder-company-role strong {
  color: var(--gold-primary);
  font-weight: 700;
}

.founder-bio {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
}

.founder-bio p {
  margin-bottom: 12px;
}

.founder-skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.founder-skill-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.founder-skill-tag i {
  color: var(--gold-primary);
}

.founder-skill-tag:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.founder-quote-box {
  background: rgba(10, 17, 40, 0.7);
  border-left: 4px solid var(--gold-primary);
  padding: 18px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 6px;
  font-style: italic;
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
}

.founder-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.founder-social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.founder-social-btn:hover {
  background: var(--gold-primary);
  color: #0A1128;
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* About page why-us override */
.page[data-page="about"] .why-us { background: var(--bg-white); }
.page[data-page="about"] .why-us .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.page[data-page="about"] .why-us .section-title { color: var(--text-dark); }
.page[data-page="about"] .why-us .highlight-text { color: var(--green-dark); }
.page[data-page="about"] .why-us .section-desc { color: var(--text-muted); }
.page[data-page="about"] .why-card {
  background: #0F172A;
  border-color: rgba(255,255,255,0.08);
  transition: border-color 0.3s ease;
}
.page[data-page="about"] .why-card:hover {
  border-color: #D4AF37;
  transform: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.page[data-page="about"] .why-card h3 { color: #fff; }
.page[data-page="about"] .why-card p { color: rgba(255,255,255,0.55); }
.page[data-page="about"] .stat-num { color: var(--text-dark); }
.page[data-page="about"] .stat-suffix { color: var(--green-dark); }

/* ========================================
   FAQ
   ======================================== */
.faq { background: var(--bg-primary); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq-header {
  text-align: left;
  margin-bottom: 0;
}
.faq-header .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.faq-header .section-title { color: var(--text-dark); text-align: left; }
.faq-header .section-desc { color: var(--text-muted); text-align: left; }
.faq-header .btn-primary { color: #0A1128; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #0F172A;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: rgba(212, 175, 55, 0.35); background: rgba(212, 175, 55, 0.04); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}
.faq-question:hover { color: var(--green-dark); }
.faq-icon { color: var(--green-dark); font-size: 0.85rem; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.book-call { background: var(--bg-white); }
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.book-content .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.book-content .section-title { color: var(--text-dark); text-align: left; }
.book-content .highlight-text { color: var(--green-dark); }
.book-content p { color: var(--text-muted); margin-bottom: 20px; }
.book-perks { margin-bottom: 0; }
.book-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}
.book-perks i { color: var(--green-dark); }

.calendar-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.calendar-header p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.time-slots { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.slot-row { display: flex; gap: 10px; }
.time-slot {
  flex: 1;
  padding: 12px;
  background: #0F172A;
  border: 1.5px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition);
}
.time-slot:hover { border-color: var(--green-dark); color: var(--green-dark); }
.time-slot.selected {
  background: linear-gradient(135deg, #D4AF37, #C5A059);
  border-color: var(--green-dark);
  color: #0A1128;
}
.slot-booked {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}
.book-calendly-btn { width: 100%; justify-content: center; color: #0A1128; }

/* Contact form */
.contact { background: var(--bg-primary); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info .section-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--green-dark);
}
.contact-info .section-title { color: var(--text-dark); text-align: left; }
.contact-info .highlight-text { color: var(--green-dark); }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }

.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #0F172A;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition);
  font-size: 0.9rem;
  color: var(--text-body);
}
.contact-detail-item i {
  width: 36px; height: 36px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.9rem;
}
.contact-detail-item:hover { border-color: var(--green-dark); transform: translateX(4px); }

/* Form */
.contact-form-wrap {
  background: #0F172A;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #060A12;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #EF4444; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error {
  display: none;
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 6px;
}
.form-error.visible { display: block; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
  color: #0A1128;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.form-submit:hover { background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-submit.sent {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5) !important;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #0E1A33;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--green-dark);
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; color: var(--green-dark); }
.form-server-error {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-size: 0.88rem;
  color: #ef4444;
}
.form-server-error.show { display: flex; }
.form-server-error i { font-size: 1.2rem; color: #ef4444; }
.form-server-error a { color: var(--accent-gold); text-decoration: underline; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-brand .logo-text { color: white; }
.footer-brand .logo-img { border: none; box-shadow: none; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 16px 0 20px;
}
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-icon:hover { background: var(--green-dark); border-color: var(--green-dark); color: #0A1128; transform: translateY(-3px); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}
.footer-col a:hover { color: var(--green-accent); transform: translateX(4px); display: inline-block; }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-top: 16px;
}
.footer-badge i { color: var(--green-accent); }
.footer-badge span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.4); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255, 255, 255, 0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--green-accent); }

.footer-logo-img { width: 38px; height: 38px; object-fit: contain; }

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process-line { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .case-study { grid-template-columns: 1fr; gap: 32px; }
  .case-study-reverse { direction: ltr; }
  .reviews-masonry { grid-template-columns: 1fr 1fr; }
  .reviews-col:nth-child(3) { display: none; }
  .hero-cards-row { flex-wrap: wrap; }
  .hero-mockup-card { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
  .process-timeline { grid-template-columns: 1fr; gap: 16px; }
  .header {
    top: 8px;
    width: calc(100% - 24px);
    border-radius: var(--radius-lg);
  }
  .header-container { padding: 8px 16px; }
  .hamburger { display: flex; }
  .btn-cta { display: none; }

  /* Mobile nav — full screen overlay */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 12, 22, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9990;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 28px;
    list-style: none;
  }
  .nav-list li {
    width: 100%;
    max-width: 320px;
  }
  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    transition: all 0.25s ease;
  }
  .nav-link:hover,
  .nav-link.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: #FFFFFF;
    transform: none;
  }
  .nav-link i {
    font-size: 0.9rem;
    color: var(--gold-primary);
    opacity: 1;
    margin-right: 0;
  }

  .hero-content { padding: 130px 16px 20px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cards-row { flex-direction: column; align-items: center; padding: 20px 16px 40px; }
  .hero-glass-card { min-width: auto; width: 100%; max-width: 320px; }
  .hero-mockup-card { width: 100%; max-width: 360px; }

  .section { padding: 60px 0; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .reviews-masonry { grid-template-columns: 1fr; }
  .reviews-col--center { margin-top: 0; }
  .reviews-col:nth-child(3) { display: flex; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .portfolio-img { height: 160px; }

  .cta-banner-inner { flex-direction: column; padding: 40px 24px; text-align: center; }
  .cta-banner-trust { justify-content: center; }
  .page-hero { padding: 120px 0 40px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hgc-metrics { gap: 8px; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ============================================
   HOME CTA BANNER — Premium Dark (Override)
   ============================================ */
.home-cta-banner {
  background: var(--bg-primary);
  padding: 80px 0 100px;
}
.cta-banner-inner {
  position: relative;
  overflow: hidden;
  border-radius: 28px !important;
  padding: 72px 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 48px !important;
  flex-wrap: wrap !important;
  background: linear-gradient(130deg, #070B14 0%, #0B1325 40%, #0F172A 75%, #060A12 100%) !important;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    0 0 0 1px rgba(212,175,55,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1) !important;
  text-align: left !important;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.cta-banner-inner::after {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0.06) 50%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.cta-banner-blue-orb {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(14,26,51,0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 7s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 0;
}
.cta-banner-green-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-banner-text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 280px;
}
.cta-banner-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 16px !important;
  border-radius: 100px !important;
  background: rgba(212,175,55,0.12) !important;
  border: 1px solid rgba(212,175,55,0.28) !important;
  color: #F3E5AB !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
}
.cta-banner-text h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  font-weight: var(--font-weight-regular) !important;
  color: #fff !important;
  line-height: 1.16 !important;
  margin-bottom: 16px !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
}
.cta-highlight {
  color: #D4AF37 !important;
  font-style: italic !important;
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
}
.cta-banner-text p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  max-width: 460px !important;
}
.cta-banner-trust {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  margin-top: 26px !important;
  flex-wrap: wrap !important;
}
.cta-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: 0.83rem !important;
  color: rgba(255,255,255,0.6) !important;
  font-weight: 500 !important;
}
.cta-trust-item i { color: #D4AF37 !important; font-size: 0.75rem !important; }
.cta-banner-actions {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
  flex-shrink: 0 !important;
}
.cta-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 17px 38px !important;
  border-radius: 100px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #0A1128 !important;
  background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%) !important;
  box-shadow: 0 6px 28px rgba(212,175,55,0.45) !important;
  border: none !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  text-transform: none !important;
}
.cta-btn-primary:hover {
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%) !important;
  box-shadow: 0 10px 40px rgba(212,175,55,0.6) !important;
  transform: translateY(-2px) !important;
  color: #060A12 !important;
}
.cta-btn-ghost {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 17px 38px !important;
  border-radius: 100px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.9) !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1.5px solid rgba(212,175,55,0.3) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  text-transform: none !important;
}
.cta-btn-ghost:hover {
  background: rgba(212,175,55,0.15) !important;
  border-color: #D4AF37 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
.cta-no-oblig {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.4) !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

@media (max-width: 768px) {
  .cta-banner-inner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 44px 28px !important;
    border-radius: 20px !important;
  }
  .cta-banner-trust { justify-content: center !important; }
  .cta-banner-actions { align-items: center !important; width: 100% !important; }
  .cta-btn-primary, .cta-btn-ghost { width: 100% !important; justify-content: center !important; }
}

/* Case study buttons row */
.case-info .case-cta-btn,
.case-info .case-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.case-info {
  display: flex;
  flex-direction: column;
}
.case-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* View Project button — visible gold outline style */
.case-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #D4AF37;
  background: rgba(212,175,55,0.08);
  border: 1.5px solid rgba(212,175,55,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.case-view-btn i { font-size: 0.75rem; }
.case-view-btn:hover {
  color: #0A1128;
  background: #D4AF37;
  border-color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}


/* ========================================
   MOBILE RESPONSIVE — COMPLETE OVERHAUL
   ======================================== */

/* ---- TABLET (max 1024px) ---- */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  /* Hero cards */
  .hero-cards-row { gap: 16px; padding: 30px 20px 50px; }
  .hero-glass-card { min-width: 160px; }

  /* Process */
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* Sections */
  .section { padding: 80px 0; }

  /* CTA Banner */
  .cta-banner-inner { padding: 56px 52px !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

/* ---- MOBILE (max 768px) ---- */
@media (max-width: 768px) {
  /* Base */
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  /* ---- HEADER ---- */
  .header {
    top: 8px;
    width: calc(100% - 20px);
    border-radius: 16px;
  }
  .header-container { padding: 8px 14px; }
  .logo-text { font-size: 1.15rem; letter-spacing: 0.1em; }
  .logo-img { width: 36px; height: 36px; }
  .btn-cta { display: none; }

  /* Mobile Nav — handled in main @media (max-width: 768px) block above */

  /* ---- HERO ---- */
  .hero-content {
    padding: 120px 16px 24px;
    text-align: center;
  }
  .hero-headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.18;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding: 0 4px;
  }
  .hero-badge-pill {
    font-size: 0.75rem;
    padding: 7px 16px;
    margin-bottom: 20px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  /* Hero cards */
  .hero-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 16px 40px;
  }
  .hero-glass-card {
    width: 100%;
    max-width: 340px;
    min-width: unset;
  }
  .hero-card-left { text-align: center; }
  .hero-mockup-card {
    width: 100%;
    max-width: 340px;
    order: -1;
  }
  /* Hide right metric card on small mobile to reduce clutter */
  .hero-card-right { width: 100%; max-width: 340px; }
  .hgc-metrics { justify-content: center; gap: 20px; }

  /* ---- SECTION HEADERS ---- */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-desc { font-size: 0.92rem; }
  .section-header { margin-bottom: 40px; }

  /* ---- WHY UXONIC ---- */
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 28px 22px 24px; }
  .why-icon { width: 46px; height: 46px; font-size: 1.1rem; margin-bottom: 16px; }

  /* Stats row — 2x2 on mobile */
  .stats-row {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }
  .stat-item { padding: 28px 14px; }
  .stat-num { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .stat-suffix { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* ---- PROCESS ---- */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }
  .process-line { display: none; }
  .process-step { padding: 28px 20px 22px; }

  /* ---- SERVICES GRID ---- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card-content { padding: 20px 18px 14px; }
  .service-card-showcase { margin: 0 14px 14px; }
  .service-card-image { height: 140px; }

  /* ---- TESTIMONIALS ---- */
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .reviews-trust-badge { text-align: left; }
  .trust-avatars { justify-content: flex-start; }
  .reviews-masonry {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reviews-col--center { margin-top: 0; }
  .reviews-col:nth-child(3) { display: flex; }
  .review-tile { padding: 20px; }
  .review-tile-text { font-size: 0.88rem; }

  /* Audience tags */
  .audience-tags { gap: 8px; margin-top: 28px; }
  .aud-tag { padding: 6px 14px; font-size: 0.78rem; }

  /* ---- PORTFOLIO ---- */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .portfolio-img { height: 150px; }
  .portfolio-info { padding: 12px 14px; }
  .portfolio-info h4 { font-size: 0.85rem; }

  /* ---- PAGE HERO ---- */
  .page-hero { padding: 110px 0 36px; }
  .page-hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .page-hero-desc { font-size: 0.95rem; }

  /* ---- ABOUT & FOUNDER ---- */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-card { padding: 32px 20px; }
  .founder-name { font-size: 2.2rem; }
  .founder-img-frame { max-width: 300px; margin: 0 auto; }
  .about-badge-card {
    bottom: -16px;
    right: 12px;
    padding: 14px 20px;
  }
  .about-badge-num { font-size: 1.8rem; }

  /* ---- FAQ ---- */
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-question { padding: 16px 18px; font-size: 0.88rem; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }

  /* ---- CONTACT ---- */
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px 20px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-detail-item { padding: 12px 16px; font-size: 0.85rem; }

  /* Book a call */
  .book-inner { grid-template-columns: 1fr; gap: 32px; }
  .slot-row { flex-direction: column; gap: 8px; }
  .time-slot { flex: none; width: 100%; }

  /* ---- CASE STUDIES ---- */
  .case-study {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .case-study-reverse { direction: ltr; }
  .case-study-reverse > * { direction: ltr; }
  .case-info h3 { font-size: 1.25rem; }
  .case-results { gap: 16px; flex-wrap: wrap; }
  .case-btn-row { flex-direction: column; gap: 10px; }
  .case-cta-btn, .case-view-btn { width: 100%; justify-content: center; }

  /* ---- CTA BANNER ---- */
  .home-cta-banner { padding: 48px 0 64px; }
  .cta-banner-inner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 36px 22px !important;
    border-radius: 20px !important;
    gap: 28px !important;
  }
  .cta-banner-text h2 { font-size: clamp(1.7rem, 6vw, 2.2rem) !important; }
  .cta-banner-text p { max-width: 100% !important; font-size: 0.92rem !important; }
  .cta-banner-trust {
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
  }
  .cta-trust-item { font-size: 0.78rem !important; }
  .cta-banner-actions {
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .cta-btn-primary,
  .cta-btn-ghost {
    width: 100% !important;
    max-width: 300px !important;
    justify-content: center !important;
    padding: 15px 28px !important;
    font-size: 0.92rem !important;
  }

  /* ---- FOOTER ---- */
  .footer { padding: 56px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-col h4 { font-size: 0.78rem; margin-bottom: 14px; }
  .footer-col a { font-size: 0.82rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 0;
  }
  .footer-legal { gap: 16px; }
  .footer-legal a { font-size: 0.78rem; }

  /* ---- WHATSAPP ---- */
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  /* ---- SERVICES STRIP ---- */
  .strip-item { font-size: 0.82rem; padding: 0 16px; }
  .strip-item i { font-size: 0.82rem; }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 14px; }

  /* Header */
  .header { width: calc(100% - 16px); }
  .logo-text { font-size: 1.05rem; }
  .logo-img { width: 32px; height: 32px; }

  /* Hero */
  .hero-content { padding: 110px 14px 20px; }
  .hero-headline { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
  .hero-subtitle { font-size: 0.88rem; }
  .hero-btn { max-width: 100%; font-size: 0.88rem; padding: 13px 22px; }
  .hero-glass-card, .hero-mockup-card, .hero-card-right { max-width: 100%; }

  /* Section */
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section { padding: 48px 0; }

  /* Grids → single column */
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .reviews-masonry { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }

  /* Cards */
  .why-card { padding: 24px 18px 20px; }
  .process-step { padding: 24px 18px 20px; }
  .service-card-content { padding: 18px 16px 12px; }
  .contact-form-wrap { padding: 20px 16px; }

  /* Hero mockup — hide on very small screens */
  .hero-mockup-card { display: none; }

  /* Stats compact */
  .stat-item { padding: 22px 10px; }
  .stat-num { font-size: 1.8rem; }
  .stat-suffix { font-size: 1.5rem; }
  .stat-label { font-size: 0.7rem; }

  /* CTA Banner */
  .cta-banner-inner { padding: 30px 16px !important; }
  .cta-btn-primary, .cta-btn-ghost { padding: 14px 20px !important; font-size: 0.88rem !important; }

  /* FAQ */
  .faq-question { padding: 14px 16px; font-size: 0.85rem; }

  /* Footer */
  .footer { padding: 44px 0 0; }
  .footer-bottom { padding: 16px 0; }

  /* Hgc metrics */
  .hgc-metrics { gap: 12px; }
  .hgc-metric-ring { width: 46px; height: 46px; }
  .hgc-metric-ring span { width: 36px; height: 36px; font-size: 0.65rem; }

  /* Page hero */
  .page-hero { padding: 100px 0 28px; }
  .page-hero-title { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
}

/* ---- EXTRA SMALL (max 360px) ---- */
@media (max-width: 360px) {
  .hero-headline { font-size: 1.65rem; }
  .section-title { font-size: 1.45rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .nav-link { font-size: 0.95rem; padding: 12px 16px; }
  .logo-text { display: none; }
}


/* ========================================
   MOBILE ALIGNMENT FIXES
   ======================================== */
@media (max-width: 768px) {

  /* Fix: Services page & all inner page section headers — center align */
  .page-hero {
    text-align: center;
  }
  .page-hero-inner {
    text-align: center;
  }
  .page-hero .section-tag {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }

  /* Fix: Services section header */
  .services .section-header,
  .services .section-tag,
  .services .section-title,
  .services .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Fix: All section headers center on mobile */
  .section-header {
    text-align: center;
  }
  .section-header .section-tag {
    display: inline-flex;
  }
  .section-header .section-desc {
    margin: 0 auto;
    text-align: center;
  }

  /* Fix: Service cards — proper spacing and alignment */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  .service-card {
    width: 100%;
    border-radius: 18px;
  }
  .service-card-content {
    padding: 22px 20px 16px;
  }
  .service-card-content h3 {
    font-size: 1.05rem;
  }
  .service-card-content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .service-card-showcase {
    margin: 0 16px 16px 16px;
  }
  .service-card-image {
    height: 160px;
    border-radius: 10px;
  }

  /* Fix: Page hero title & desc — ensure center */
  .page-hero-title {
    text-align: center;
  }
  .page-hero-desc {
    text-align: center;
  }

  /* Fix: Why us section header left text → center */
  .why-us .section-header,
  .process .section-header,
  .testimonials .section-header,
  .featured-projects .section-header,
  .portfolio .section-header {
    text-align: center;
  }

  /* Fix: About page left-aligned headers stay left on mobile */
  .about-text .section-title,
  .faq-header .section-title,
  .book-content .section-title,
  .contact-info .section-title {
    text-align: left;
  }

  /* Fix: Container padding consistency */
  .services.section .container {
    padding: 0 16px;
  }

  /* Fix: Hero content — ensure proper vertical space so nav doesn't overlap */
  .hero-content {
    padding-top: 100px;
  }

  /* Fix: Section title on services page not cutting off edges */
  .page-hero-inner {
    padding: 0 16px;
  }

  /* Fix: Strip items on mobile */
  .services-strip {
    padding: 14px 0;
  }
}

@media (max-width: 480px) {
  /* Fix: Service card image height */
  .service-card-image {
    height: 140px;
  }

  /* Fix: Page hero even more compact */
  .page-hero-inner {
    padding: 0 14px;
  }

  /* Fix: Services section header */
  .services .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  /* Fix: Service card icon */
  .service-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
}

/* ========================================
   SUCCESS ALERT MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  background: linear-gradient(145deg, rgba(14, 26, 51, 0.98), rgba(10, 17, 40, 0.99));
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 36px 30px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.85) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--accent-gold);
}

.modal-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid rgba(16, 185, 129, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.modal-icon {
  font-size: 2.2rem;
  color: #10b981;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 24px;
}

.modal-action-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
}
