/* ============================================================
   GALAXY INTERINDO — MAIN STYLESHEET
   Deep Blue Modern Corporate Theme v2.0
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  /* Deep Blue Palette */
  --black:      #040C1A;
  --dark:       #071424;
  --dark-2:     #0C1C30;
  --dark-3:     #112240;
  --navy:       #152B4E;
  --blue-mid:   #1E3A6B;
  --blue-light: #2A4F8A;

  /* Gold Accent */
  --gold:       #C8973A;
  --gold-light: #E0B45A;
  --gold-pale:  #F5E6C8;

  /* Light Surfaces */
  --cream:      #EEF4FA;
  --cream-2:    #D8E8F2;

  /* Text */
  --text-light: #B8D0E8;
  --text-muted: #6888A0;
  --white:      #FFFFFF;

  /* Blue Accent for highlights */
  --blue-accent: #4B9EFF;
  --blue-glow:   rgba(75, 158, 255, 0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Barlow', -apple-system, 'Segoe UI', sans-serif;
  --font-label:   'Barlow Condensed', 'Arial Narrow', sans-serif;

  /* Easing */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 2px; }

/* ===== UTILITIES ===== */
.container      { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container--wide{ max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 100px 0; }
.section--light { background: var(--cream); color: var(--dark); }
.section--dark2 { background: var(--dark-2); }
.section--dark3 { background: var(--dark-3); }

/* Labels */
.label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.section--light .label { color: var(--blue-mid); }
.section--light .label::before { background: var(--blue-mid); }

/* Headings */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--white);
}
.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}
.heading-md {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}
.section--light .heading-xl,
.section--light .heading-lg,
.section--light .heading-md { color: var(--dark); }
.heading-lg em, .heading-md em { font-style: italic; color: var(--gold); font-weight: 300; }
.section--light .heading-lg em { color: var(--blue-mid); }

.text-body { font-size: 16px; line-height: 1.85; color: var(--text-light); }
.section--light .text-body { color: #445; }

/* Section header split layout */
.section-header-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 16px;
}
.section-intro { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,151,58,0.4);
}
.btn--blue {
  background: var(--blue-mid);
  color: var(--white);
}
.btn--blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30,58,107,0.5);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--dark);
}
.btn--dark {
  background: var(--black);
  color: var(--gold);
}
.btn--dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn--ghost-dark:hover {
  background: var(--black);
  color: var(--gold);
}
.arrow-icon {
  width: 16px; height: 16px;
  transition: transform 0.3s;
}
.btn:hover .arrow-icon { transform: translateX(4px); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(7, 20, 36, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(75, 158, 255, 0.12);
  box-shadow: 0 4px 24px rgba(4, 12, 26, 0.5);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo { display: flex; flex-direction: column; }
.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.navbar__logo-name span { color: var(--gold); }
.navbar__logo-tagline {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--blue-accent);
  text-transform: uppercase;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__nav a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.navbar__nav a:hover { color: var(--gold); }
.navbar__nav a:hover::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(4, 12, 26, 0.8);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 100%);
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid rgba(75, 158, 255, 0.15);
  z-index: 999;
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(75, 158, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 158, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 80px;
}
.hero__eyebrow {
  display: flex; align-items: center;
  gap: 12px; margin-bottom: 32px;
}
.hero__eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero__eyebrow-text {
  font-family: var(--font-label);
  font-size: 10px; letter-spacing: 5px;
  color: var(--blue-accent);
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700; line-height: 1.0;
  color: var(--white); margin-bottom: 8px;
}
.hero__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; line-height: 1.0;
  color: var(--text-muted); margin-bottom: 36px;
}
.hero__desc {
  font-size: 16px; line-height: 1.85;
  color: var(--text-muted);
  max-width: 460px; margin-bottom: 44px;
}
.hero__actions {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.hero__stats {
  display: flex; gap: 40px;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(75, 158, 255, 0.12);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero__stat-label {
  font-family: var(--font-label);
  font-size: 10px; letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase; margin-top: 4px;
}
.hero__visual {
  position: relative; z-index: 2;
  display: flex; align-items: stretch; overflow: hidden;
}
.hero__visual-inner { width: 100%; position: relative; overflow: hidden; }
.hero__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #040C1A 0%, #071424 40%, #040C1A 100%);
  position: relative; overflow: hidden;
}
.hero__placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(75, 158, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero__svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.65; }
.hero__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 40%),
              linear-gradient(0deg, var(--black) 0%, transparent 30%);
}
.hero__badge {
  position: absolute;
  bottom: 40px; right: 40px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 28px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__badge-num { font-size: 40px; font-weight: 800; line-height: 1; display: block; }
.hero__badge-text { font-size: 11px; font-weight: 600; }

/* Hero with uploaded WordPress image */
.hero__visual-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.7);
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--dark-2);
  padding: 28px 0;
  border-top: 1px solid rgba(75, 158, 255, 0.08);
  border-bottom: 1px solid rgba(75, 158, 255, 0.08);
  overflow: hidden; position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--dark-2), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(-90deg, var(--dark-2), transparent); }

.marquee__track {
  display: flex; align-items: center;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee__track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee__item {
  display: flex; align-items: center;
  padding: 0 56px;
  border-right: 1px solid rgba(75, 158, 255, 0.1);
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.marquee__item:hover { opacity: 1; }
.marquee__client-name {
  font-family: var(--font-label);
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}
.marquee__dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 20px; flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about__img-frame {
  width: 100%; aspect-ratio: 4/5;
  background: var(--dark-3);
  position: relative; overflow: hidden;
}
.about__img-frame::before {
  content: '';
  position: absolute; inset: -1px;
  border: 1px solid rgba(75, 158, 255, 0.2);
  z-index: 2;
}
/* WordPress featured image in about section frame */
.about__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
}
.about__frame-accent {
  position: absolute; top: 20px; left: 20px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 3;
}
.about__frame-accent2 {
  position: absolute; bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 3;
}
.about__svg { width: 100%; height: 100%; object-fit: cover; }
.about__card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 28px;
  min-width: 180px;
  z-index: 4;
}
.about__card-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; line-height: 1; }
.about__card-text { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.about__description { margin: 24px 0 32px; }
.about__description p { color: var(--text-light); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about__pillar {
  padding: 18px;
  border: 1px solid rgba(75, 158, 255, 0.1);
  background: rgba(75, 158, 255, 0.03);
  transition: all 0.3s;
}
.about__pillar:hover {
  border-color: var(--gold);
  background: rgba(200, 151, 58, 0.06);
}
.about__pillar-icon {
  width: 30px; height: 30px;
  background: var(--gold);
  display: flex; align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.about__pillar-title {
  font-family: var(--font-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 5px;
}
.about__pillar-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(75, 158, 255, 0.08);
  margin-top: 60px;
}
.service-card {
  background: var(--dark-2);
  padding: 44px 34px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
  z-index: 0;
}
.service-card:hover::before { height: 100%; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .service-card__num,
.service-card:hover .service-card__title,
.service-card:hover .service-card__desc,
.service-card:hover .service-card__link { color: var(--black); }
.service-card:hover .service-card__icon svg { stroke: var(--black); }
.service-card:hover .service-card__link-line { background: var(--black); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 60px; font-weight: 700;
  line-height: 1;
  color: rgba(75, 158, 255, 0.1);
  margin-bottom: 14px;
  transition: color 0.4s;
}
.service-card__icon { margin-bottom: 20px; transition: color 0.4s; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
  line-height: 1.3; transition: color 0.4s;
}
.service-card__desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 26px;
  transition: color 0.4s;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-label); font-size: 11px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold); transition: color 0.4s;
}
.service-card__link-line {
  width: 20px; height: 1px;
  background: var(--gold);
  transition: width 0.3s, background 0.4s;
}
.service-card:hover .service-card__link-line { width: 32px; }

/* ===== WHY US ===== */
.why__header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 56px;
}
.why__subtext { font-size: 15px; color: #556; line-height: 1.8; }
.why__features { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.why-card {
  padding: 36px;
  border: 1px solid var(--cream-2);
  background: var(--white);
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 8px 40px rgba(30, 58, 107, 0.1);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 48px; height: 48px;
  background: var(--blue-mid);
  display: flex; align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--dark); margin-bottom: 10px;
}
.why-card__text { font-size: 14px; line-height: 1.75; color: #556; }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--blue-mid);
  padding: 60px 0;
}
.stats-band__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.stat-item { background: var(--blue-mid); padding: 32px 20px; text-align: center; }
.stat-item__num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-item__label {
  font-family: var(--font-label); font-size: 11px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ===== PORTFOLIO ===== */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.portfolio-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.portfolio-item--wide  { grid-column: span 8; aspect-ratio: 16/10; }
.portfolio-item--normal{ grid-column: span 4; aspect-ratio: 4/5; }

.portfolio-item__bg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease);
}
.portfolio-item:hover .portfolio-item__bg { transform: scale(1.05); }

/* WordPress featured image in portfolio */
.portfolio-item__bg img.portfolio-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
}
.portfolio-item__bg--placeholder {
  background: var(--dark-3);
}
.portfolio-placeholder-svg { width: 100%; height: 100%; }

.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(4,12,26,0.9) 0%, rgba(4,12,26,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex; align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__cat {
  font-family: var(--font-label);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.portfolio-item__title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--white); line-height: 1.3;
}
.portfolio-item__link {
  position: absolute; inset: 0; z-index: 3;
}

/* Portfolio Empty State */
.portfolio__empty { margin-top: 48px; }
.portfolio__empty-box {
  text-align: center; padding: 80px 40px;
  border: 2px dashed rgba(75, 158, 255, 0.2);
  background: rgba(75, 158, 255, 0.03);
}
.portfolio__empty-icon { font-size: 48px; margin-bottom: 20px; }
.portfolio__empty-box h3 {
  font-family: var(--font-display); font-size: 24px;
  color: var(--white); margin-bottom: 10px;
}
.portfolio__empty-box p { color: var(--text-muted); }

/* ===== WORKFLOW ===== */
.workflow__steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.workflow__steps::before {
  content: '';
  position: absolute; top: 24px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200,151,58,0.15) 100%);
}
.workflow-step { padding: 0 24px; text-align: center; position: relative; }
.workflow-step__num {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-label); font-size: 14px;
  font-weight: 800; color: var(--black);
  margin: 0 auto 24px;
  position: relative; z-index: 1;
}
.workflow-step__title {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 600; color: var(--white); margin-bottom: 10px;
}
.workflow-step__text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.workflow-step__text strong { color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(75, 158, 255, 0.08);
  padding: 36px; position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(200, 151, 58, 0.25);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 100px; line-height: 0.8;
  color: rgba(75, 158, 255, 0.06);
  position: absolute; top: 20px; left: 24px;
  font-weight: 700;
}
.testimonial-card__stars {
  color: var(--gold); font-size: 14px;
  letter-spacing: 2px; margin-bottom: 20px;
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-style: italic; font-size: 16px;
  line-height: 1.75; color: var(--text-light);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(75, 158, 255, 0.08);
}
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px;
  font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--font-label); font-size: 12px;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
}
.testimonial-card__role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== BLOG ===== */
.blog__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--dark-3);
  overflow: hidden;
  border: 1px solid rgba(75, 158, 255, 0.06);
  transition: all 0.4s;
}
.blog-card:hover {
  border-color: rgba(200, 151, 58, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(4, 12, 26, 0.5);
}
.blog-card__img {
  aspect-ratio: 16/9; overflow: hidden;
  position: relative; background: var(--dark-2);
  display: block;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__img-placeholder { width: 100%; height: 100%; }
.blog-card__body { padding: 24px; }
.blog-card__cat {
  font-family: var(--font-label); font-size: 10px;
  font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.blog-card__cat a { color: inherit; }
.blog-card__title {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 600; color: var(--white);
  line-height: 1.4; margin-bottom: 10px;
}
.blog-card__title a { color: inherit; transition: color 0.3s; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__meta {
  font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gold);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: 'GALAXY';
  position: absolute;
  font-family: var(--font-display); font-size: 200px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none;
}
.cta-banner__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; position: relative; z-index: 1;
}
.cta-banner__text .heading-md { color: var(--black); }
.cta-banner__text .heading-md em { color: var(--dark-3); }
.cta-banner__sub { font-size: 15px; color: rgba(0,0,0,0.6); margin-top: 8px; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ===== CONTACT ===== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__info-items { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.contact__item { display: flex; gap: 20px; align-items: flex-start; }
.contact__item-icon {
  width: 40px; height: 40px;
  background: rgba(75, 158, 255, 0.08);
  border: 1px solid rgba(75, 158, 255, 0.15);
  display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact__item-title {
  font-family: var(--font-label); font-size: 10px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.contact__item-text { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* Contact Form Inputs */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label {
  font-family: var(--font-label); font-size: 10px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}
.form-input {
  background: rgba(75, 158, 255, 0.05);
  border: 1px solid rgba(75, 158, 255, 0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body); font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus { border-color: var(--blue-accent); }
.form-input::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-input { min-height: 110px; resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 80px 0 0; border-top: 1px solid rgba(75, 158, 255, 0.08); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px; }
.footer__logo-text { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--white); }
.footer__logo-text span { color: var(--gold); }
.footer__tagline { font-family: var(--font-label); font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--blue-accent); display: block; margin-bottom: 16px; margin-top: 2px; }
.footer__desc { font-size: 14px; line-height: 1.8; color: var(--text-muted); max-width: 280px; margin-bottom: 28px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid rgba(75, 158, 255, 0.15);
  display: flex; align-items: center;
  justify-content: center; color: var(--text-muted);
  transition: all 0.3s;
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,151,58,0.05); }
.footer__col-title { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.footer__link:hover { color: var(--gold); }
.footer__link--gold { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(75, 158, 255, 0.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 12px; color: var(--text-muted); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-link { font-size: 12px; color: var(--text-muted); transition: color 0.3s; }
.footer__bottom-link:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-btn {
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-badge {
  background: var(--gold); color: var(--black);
  font-family: var(--font-label); font-size: 10px;
  font-weight: 700; letter-spacing: 1px;
  padding: 6px 14px; white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: all 0.3s; pointer-events: none;
}
.wa-float:hover .wa-badge { opacity: 1; transform: translateX(0); }

/* ===== PORTFOLIO SINGLE PAGE ===== */
.portfolio-single { padding-top: 0; }
.portfolio-single__hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end;
  background: var(--dark-3);
}
.portfolio-single__image {
  position: absolute; inset: 0; overflow: hidden;
}
.portfolio-single__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}
.portfolio-single__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(4,12,26,0.9) 0%, transparent 60%);
}
.portfolio-single__hero-content {
  position: relative; z-index: 2;
  padding-bottom: 60px; padding-top: 100px;
  display: flex; flex-direction: column; gap: 8px;
}
.portfolio-single__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-label); font-size: 11px;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-accent);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.portfolio-single__back:hover { color: var(--gold); }
.portfolio-single__grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 60px; align-items: start;
}
.portfolio-single__desc { margin-top: 20px; }
.portfolio-single__desc p { color: var(--text-light); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.portfolio-meta-card {
  background: var(--dark-3);
  border: 1px solid rgba(75, 158, 255, 0.1);
  padding: 32px;
}
.portfolio-meta-item {
  display: flex; flex-direction: column;
  gap: 2px; padding: 14px 0;
  border-bottom: 1px solid rgba(75, 158, 255, 0.06);
}
.portfolio-meta-item:last-child { border-bottom: none; }
.portfolio-meta-label {
  font-family: var(--font-label); font-size: 10px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}
.portfolio-meta-value { font-size: 15px; color: var(--white); margin-top: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .portfolio-item--wide  { grid-column: span 12; }
  .portfolio-item--normal{ grid-column: span 6; }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 120px 24px 60px; }
  .hero__visual { min-height: 380px; display: block; }
  .hero__visual-inner { height: 380px; position: relative; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__card { right: 0; }
  .about__pillars { grid-template-columns: 1fr; }
  .section-header-split { grid-template-columns: 1fr; gap: 20px; }
  .why__header { grid-template-columns: 1fr; gap: 24px; }
  .why__features { grid-template-columns: 1fr; gap: 16px; }
  .stats-band__grid { grid-template-columns: repeat(2,1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .workflow__steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .workflow__steps::before { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .navbar__nav, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .hero__stats { flex-wrap: wrap; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-single__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio-item--wide, .portfolio-item--normal { grid-column: span 1; aspect-ratio: 4/3 !important; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__content { padding: 110px 16px 48px; }
  .container { padding: 0 16px; }
  .cta-banner { padding: 60px 0; }
  .hero__title { font-size: 38px; }
  .hero__subtitle { font-size: 30px; }
  .cta-banner::before { font-size: 100px; }
}

/* ===== PRINT ===== */
@media print {
  .navbar, .wa-float, .mobile-menu { display: none; }
  .section { padding: 40px 0; }
}
