/* ============================================
   DETEKTYW ARCANUM - Homepage Mockup
   Design: Noir-investigative + modern security
   Palette: Dark navy + teal/petrol blue + gold accents
   Fonts: Oswald (headings) + Poppins (body)
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core palette - from Wix brand */
  --black: #001E29;
  --navy-deep: #002E3D;
  --navy: #003E52;
  --navy-light: #005B7A;
  --navy-lighter: #1A6D8A;

  /* Accents - Arcanum brand colors from Wix */
  --accent: #0089B6;
  --accent-dark: #005B7A;
  --accent-glow: #00A3D9;
  --gold: #FCB400;
  --gold-light: #FFD966;
  --teal: #2A7C6F;

  /* Text */
  --text-white: #F0F4F6;
  --text-light: #BFD6DE;
  --text-muted: #6A9AAD;
  --text-dark: #002E3D;
  --text-body: #2D4550;

  /* Surfaces */
  --surface-light: #EEF6F8;
  --surface-white: #FFFFFF;
  --surface-cream: #FFFEFC;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container: min(1200px, 90vw);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--surface-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ===== UTILITY ===== */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--text-white);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.75;
}

.section-desc--light {
  color: var(--text-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 137, 182, 0.3);
}

.btn--primary:hover {
  background: var(--accent-glow);
  box-shadow: 0 6px 30px rgba(0, 137, 182, 0.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn--dark {
  background: var(--navy);
  color: var(--text-white);
}

.btn--dark:hover {
  background: var(--navy-light);
}

.btn__arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--black);
  padding: 10px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.topbar__contact:hover {
  color: var(--text-white);
}

.topbar__contact svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 20, 34, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.logo__text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo__text span {
  color: var(--accent);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav__list li {
  list-style: none;
}

.nav__list a,
.nav__link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav__list a:hover,
.nav__link:hover,
.nav__list .current-menu-item a,
.nav__link--active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav__link:hover::after {
  width: 60%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__phone svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Gradient mesh background */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0,137,182,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(25,35,45,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--navy-deep) 0%, var(--black) 100%);
}

/* Subtle grid pattern */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 60%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 60%, black 0%, transparent 70%);
}

/* Animated scan line */
.hero__scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,137,182,0.3), transparent);
  animation: scanline 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes scanline {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,137,182,0.12);
  border: 1px solid rgba(0,137,182,0.25);
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,137,182,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0,137,182,0); }
}

.hero__badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero__title span {
  color: var(--accent);
  position: relative;
}

.hero__title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.25s both;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.35s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero__trust {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.8s ease-out 0.55s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.hero__trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Right side decorative element */
.hero__visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  opacity: 0.6;
}

.hero__visual-ring {
  position: absolute;
  border: 1px solid rgba(0,137,182,0.15);
  border-radius: 50%;
  animation: rotate-ring 30s linear infinite;
}

.hero__visual-ring:nth-child(1) {
  inset: 0;
}

.hero__visual-ring:nth-child(2) {
  inset: 40px;
  border-color: rgba(163,125,61,0.1);
  animation-direction: reverse;
  animation-duration: 25s;
}

.hero__visual-ring:nth-child(3) {
  inset: 80px;
  border-color: rgba(0,137,182,0.08);
  animation-duration: 20s;
}

.hero__visual-center {
  position: absolute;
  inset: 120px;
  background: radial-gradient(circle, rgba(0,137,182,0.06) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-center svg {
  width: 60px;
  height: 60px;
  stroke: rgba(0,137,182,0.3);
  fill: none;
  stroke-width: 1;
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BAR ===== */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stats__number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.stats__number span {
  color: var(--gold);
}

.stats__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--surface-light), var(--surface-white));
  pointer-events: none;
}

.services__header {
  text-align: center;
  margin-bottom: 56px;
}

.services__header .section-desc {
  margin: 0 auto;
}

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

.service-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(0,137,182,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: rgba(0,137,182,0.1);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.service-card__category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-card__list {
  list-style: none;
  margin-bottom: 24px;
}

.service-card__list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* ===== BOLD STATEMENT ===== */
.statement {
  background: var(--navy-deep);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0,137,182,0.06) 0%, transparent 70%);
}

.statement__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.statement__quote {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 12px;
}

.statement__quote em {
  color: var(--accent);
  font-style: normal;
}

.statement__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ===== WHY US ===== */
.why {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feat {
  padding: 24px;
  background: var(--surface-white);
  border-radius: 8px;
  border: 1px solid #E8ECF1;
  transition: all 0.3s ease;
}

.why-feat:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: transparent;
}

.why-feat__icon {
  width: 40px;
  height: 40px;
  background: var(--navy-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-feat__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
}

.why-feat__title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.why-feat__desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
}

.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__header .section-desc {
  margin: 0 auto;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.process__timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0.25;
}

.process__step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(13,20,34,0.3);
}

.process__step:hover .process__number {
  background: var(--accent);
  box-shadow: 0 4px 24px rgba(0,137,182,0.3);
  transition: all 0.4s ease;
}

.process__step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.process__step-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== ABOUT / EXPERT ===== */
.about {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(0,137,182,0.05) 0%, transparent 60%);
}

.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about__photo {
  position: relative;
}

.about__photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-light);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Photo frame - subtle overlay for depth */
.about__photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,46,61,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.about__photo-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  right: 24px;
  background: var(--accent);
  border-radius: 6px;
  padding: 14px 20px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,137,182,0.3);
}

.about__photo-badge-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 500;
}

.about__content .section-title {
  color: var(--text-white);
}

.about__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
}

.about__credential-icon {
  width: 32px;
  height: 32px;
  background: rgba(163,125,61,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__credential-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
}

.about__credential-text {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== LOCATIONS ===== */
.locations {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
}

.locations__header {
  text-align: center;
  margin-bottom: 48px;
}

.locations__header .section-desc {
  margin: 0 auto;
}

.locations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--surface-light);
  border: 1px solid #E8ECF1;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-tag:hover {
  background: var(--navy-deep);
  color: var(--text-white);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13,20,34,0.15);
}

.location-tag svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.locations__cta {
  text-align: center;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.reviews__header {
  text-align: center;
  margin-bottom: 16px;
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.reviews__stars {
  display: flex;
  gap: 2px;
}

.reviews__stars svg {
  width: 20px;
  height: 20px;
  fill: #F5A623;
}

.reviews__score {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.reviews__count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.review-card {
  background: var(--surface-white);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid #E8ECF1;
  border-left: 3px solid var(--gold);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: transparent;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-card__stars svg {
  width: 14px;
  height: 14px;
  fill: #F5A623;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review-card__source {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid #E8ECF1;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__question svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.active .faq__question svg {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,137,182,0.06) 0%, transparent 60%);
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-cta__content .section-title {
  color: var(--text-white);
}

.contact-cta__phone {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-white);
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-cta__phone svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  animation: ring-phone 3s ease-in-out infinite;
}

@keyframes ring-phone {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(15deg); }
  94% { transform: rotate(-15deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-10deg); }
}

.contact-cta__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-cta__form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px;
}

.contact-cta__form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 16px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(0,137,182,0.1);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__privacy {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}

.footer__social-link:hover svg {
  fill: #fff;
}

.footer__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--text-white);
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--text-white);
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 200;
  padding: 0;
}

.mobile-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.mobile-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.mobile-bar__item:last-child {
  border-right: none;
  background: var(--accent);
  color: #fff;
}

.mobile-bar__item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__visual {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo {
    max-width: 300px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .topbar__left {
    display: none;
  }

  .nav__list {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .header__phone {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats__item + .stats__item:nth-child(3)::before {
    display: none;
  }

  .process__timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process__timeline::before {
    display: none;
  }

  .why__features {
    grid-template-columns: 1fr;
  }

  .about__credentials {
    grid-template-columns: 1fr;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .process__timeline {
    grid-template-columns: 1fr;
  }

  .locations__grid {
    gap: 6px;
  }

  .location-tag {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* ===== TOPBAR SOCIAL ===== */
.topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.topbar__social-link:hover {
  opacity: 1;
}

.topbar__social-link svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
}

/* ===== HERO BG IMAGE ===== */
.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.7);
}

/* ===== BLOG SECTION ===== */
.blog {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.blog__header {
  text-align: center;
  margin-bottom: 48px;
}

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

.blog-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__link svg {
  transform: translateX(4px);
}

/* ===== BUG DETECTION HIGHLIGHT ===== */
.bug-detection {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.bug-detection::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,137,182,0.06) 0%, transparent 60%);
}

.bug-detection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bug-detection__content .section-title {
  color: var(--text-white);
}

.bug-detection__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.bug-detection__image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.bug-detection__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== QUALITY SECTION ===== */
.quality {
  padding: var(--section-pad) 0;
  background: var(--surface-white);
}

.quality__header {
  text-align: center;
  margin-bottom: 48px;
}

.quality__header .section-desc {
  margin: 0 auto;
  max-width: 700px;
}

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

.quality__item {
  text-align: center;
  padding: 36px 28px;
  background: var(--surface-light);
  border-radius: 8px;
  border: 1px solid #E8ECF1;
  transition: all 0.3s ease;
}

.quality__item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: transparent;
  transform: translateY(-4px);
}

.quality__icon {
  width: 52px;
  height: 52px;
  background: var(--navy-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.quality__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
}

.quality__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.quality__desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== FOOTER INTERNAL LINKS ===== */
.footer__internal-links {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
}

.footer__internal-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__internal-links a:hover {
  color: var(--text-white);
}

/* ===== WHY IMAGE ===== */
.why__image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E8ECF1;
  position: sticky;
  top: 100px;
}

.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

@media (max-width: 1024px) {
  .bug-detection__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quality__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   DESIGN UPGRADE - Noir Luxury / Surveillance
   ============================================ */

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

/* === GEOMETRIC ACCENTS (echo logo "A" triangle) === */
.geo-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.geo-accent--triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(0,137,182,0.04);
}

.geo-accent--line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* === ENHANCED HERO - Parallax + Cinematic === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero__bg-image img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.28;
  filter: saturate(0.7);
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Cinematic vignette */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(0,30,41,0.7) 100%);
  pointer-events: none;
}

/* Hero content entrance - cinematic stagger */
.hero__badge { animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.hero__title { animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both; }
.hero__subtitle { animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both; }
.hero__desc { animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both; }
.hero__actions { animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both; }
.hero__trust { animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both; }

@keyframes cinReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* === ENHANCED BUTTONS === */
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(0, 137, 182, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-glow), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(12px);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 100%);
  box-shadow: 0 6px 30px rgba(0, 137, 182, 0.45);
  transform: translateY(-2px);
}

.btn--primary:hover::after {
  opacity: 0.5;
}

/* === SERVICE CARDS - Glass effect on hover === */
.service-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(0,137,182,0.15);
  box-shadow:
    0 20px 60px rgba(0,46,61,0.1),
    0 4px 16px rgba(0,137,182,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(-6px);
}

/* Subtle diagonal light sweep on card hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(0,137,182,0.03) 45%,
    rgba(0,137,182,0.06) 50%,
    rgba(0,137,182,0.03) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.service-card:hover::after {
  transform: translateX(100%);
}

/* === DIAGONAL SECTION BREAK === */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.section-divider--dark-to-light {
  background: var(--navy-deep);
}

.section-divider--dark-to-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--surface-light);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}

.section-divider--light-to-dark {
  background: var(--surface-white);
}

.section-divider--light-to-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--navy-deep);
  transform: skewY(2deg);
  transform-origin: bottom right;
}

/* === ENHANCED STATS BAR === */
.stats {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.3;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
  opacity: 0.2;
}

/* === ENHANCED REVIEW CARDS === */
.review-card {
  background: var(--surface-white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #E8ECF1;
  border-left: 3px solid var(--gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
}

.review-card:hover {
  box-shadow: 0 12px 40px rgba(0,46,61,0.08);
  border-color: transparent;
  border-left-color: var(--accent);
  transform: translateY(-4px);
}

/* === ENHANCED FAQ SECTION === */
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.faq__item.active .faq__question {
  color: var(--accent);
}

/* === PROCESS NUMBERS - Gold ring === */
.process__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 4px 20px rgba(13,20,34,0.3),
    inset 0 0 0 2px rgba(252,180,0,0.15);
  transition: all 0.4s ease;
}

.process__step:hover .process__number {
  background: var(--accent);
  box-shadow:
    0 4px 24px rgba(0,137,182,0.3),
    inset 0 0 0 2px rgba(255,255,255,0.2);
}

/* === SCROLL REVEAL SYSTEM === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.06s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.18s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.24s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(n+7) { transition-delay: 0.36s; }

/* === ENHANCED CONTACT FORM - Glassmorphism === */
.contact-cta__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* === ENHANCED WHY-FEAT CARDS === */
.why-feat {
  padding: 28px;
  background: var(--surface-white);
  border-radius: 12px;
  border: 1px solid #E8ECF1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent), var(--gold));
  transition: height 0.4s ease;
}

.why-feat:hover::before {
  height: 100%;
}

.why-feat:hover {
  box-shadow: 0 12px 40px rgba(0,46,61,0.08);
  border-color: transparent;
  transform: translateY(-4px);
}

/* === QUALITY ITEMS - Enhanced === */
.quality__item {
  text-align: center;
  padding: 40px 28px;
  background: var(--surface-light);
  border-radius: 12px;
  border: 1px solid #E8ECF1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.quality__item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.4s ease;
}

.quality__item:hover::before {
  width: 60%;
}

.quality__item:hover {
  box-shadow: 0 12px 40px rgba(0,46,61,0.08);
  border-color: transparent;
  transform: translateY(-6px);
}

/* === STATEMENT SECTION - Cinematic === */
.statement__quote {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 12px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

/* === LOCATION TAGS - Enhanced === */
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--surface-light);
  border: 1px solid #E8ECF1;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.location-tag:hover {
  background: var(--navy-deep);
  color: var(--gold-light);
  border-color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,46,61,0.15);
}

/* === BLOG CARDS - Enhanced === */
.blog-card {
  background: var(--surface-white);
  border: 1px solid #E8ECF1;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  border-color: transparent;
  box-shadow:
    0 20px 60px rgba(0,46,61,0.1),
    0 4px 16px rgba(0,137,182,0.06);
  transform: translateY(-6px);
}

/* === BUG DETECTION IMAGE - Subtle glow === */
.bug-detection__image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.bug-detection__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 60px rgba(0,137,182,0.08);
  pointer-events: none;
}

/* === FOOTER ENHANCED === */
.footer {
  background: var(--black);
  padding: 64px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 30%, var(--gold) 70%, transparent 95%);
  opacity: 0.2;
}

/* === CUSTOM SELECTION === */
::selection {
  background: var(--accent);
  color: #fff;
}

::-moz-selection {
  background: var(--accent);
  color: #fff;
}

/* === SMOOTH SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: cinReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(191,214,222,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator__dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

.scroll-indicator__text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .scroll-indicator { display: none; }
  .why__image { position: static; }
  .section-divider { height: 40px; }
}

/* === REVEAL SAFETY FALLBACK === */
/* Ensure CTA and critical sections are ALWAYS visible */
.contact-cta .contact-cta__content,
.contact-cta .contact-cta__form,
.contact-cta__content,
.contact-cta__form {
  opacity: 1 !important;
  transform: none !important;
}

/* Fallback: if JS hasn't triggered reveals within 4s, show everything */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

.reveal:not(.revealed) {
  animation: revealFallback 0s 4s forwards;
}

.stagger-children:not(.revealed) > * {
  animation: revealFallback 0s 4.2s forwards;
}

.reveal-left:not(.revealed),
.reveal-right:not(.revealed) {
  animation: revealFallback 0s 4s forwards;
}

/* === SERVICE CARD IMAGES === */
.service-card__image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

/* === ENHANCED ABOUT SECTION - Credential badges === */
.about__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about__credential:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,137,182,0.2);
}

/* === PROCESS STEP IMAGES === */
.process__step-icon {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.process__step:hover .process__step-icon {
  opacity: 1;
}

/* === BLOG CARD IMAGE OVERLAY === */
.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,46,61,0.6) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card__image::after {
  opacity: 1;
}

/* ============================================
   SUBPAGES - Page Hero, Blog, Single, Sidebar
   ============================================ */

/* === PAGE HERO === */
.page-hero {
  padding: 140px 0 60px;
  background: var(--surface-light);
  position: relative;
}

.page-hero--dark {
  background: var(--navy-deep);
  color: var(--text-white);
}

.page-hero--dark .page-hero__title {
  color: var(--text-white);
}

.page-hero--dark .page-hero__desc {
  color: var(--text-light);
}

.page-hero--dark .section-label {
  color: var(--gold);
}

.page-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 640px;
  line-height: 1.7;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-hero--dark .breadcrumbs {
  color: var(--text-muted);
}

.page-hero--dark .breadcrumbs a {
  color: var(--accent-glow);
}

/* === PAGE CONTENT === */
.page-content {
  padding: 60px 0 80px;
}

.page-content__body {
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.page-content__body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--surface-light);
}

.page-content__body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 36px 0 16px;
}

.page-content__body p {
  margin-bottom: 20px;
}

.page-content__body ul,
.page-content__body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.page-content__body li {
  margin-bottom: 10px;
  position: relative;
}

.page-content__body ul li::marker {
  color: var(--accent);
}

.page-content__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content__body a:hover {
  color: var(--accent-dark);
}

.page-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(0,46,61,0.1);
}

.page-content__body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--surface-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-dark);
}

/* === SINGLE POST === */
.single-post__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.single-post__meta a {
  color: var(--gold);
  text-decoration: none;
}

.single-post__featured {
  margin-top: -30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.single-post__image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,46,61,0.15);
}

.single-post__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

@media (max-width: 1024px) {
  .single-post__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === SIDEBAR === */
.sidebar-cta {
  background: var(--navy-deep);
  border-radius: 12px;
  padding: 32px;
  color: var(--text-white);
  margin-bottom: 28px;
}

.sidebar-cta__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sidebar-cta__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn--full {
  display: block;
  text-align: center;
}

.sidebar-widget {
  background: var(--surface-light);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 28px;
}

.sidebar-widget__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E8ECF1;
}

.sidebar-widget__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget__list li {
  margin-bottom: 10px;
}

.sidebar-widget__list a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget__list a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.sidebar-widget__list a:hover {
  color: var(--accent);
}

/* === BLOG LISTING === */
.blog-listing {
  padding: 60px 0 80px;
}

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

@media (max-width: 1024px) {
  .blog-listing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-listing__grid {
    grid-template-columns: 1fr;
  }
}

.blog-card__image--placeholder {
  background: var(--surface-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.blog-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.blog-card__readmore {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 12px;
  display: inline-block;
}

.blog-pagination {
  text-align: center;
  padding: 20px 0;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  margin: 0 4px;
  font-size: 0.9rem;
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #E8ECF1;
}

.blog-pagination .page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.blog-pagination .page-numbers:hover:not(.current) {
  background: var(--surface-light);
  border-color: var(--accent);
}

.blog-listing__empty {
  text-align: center;
  padding: 80px 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* === RELATED POSTS === */
.related-posts {
  padding: 60px 0 80px;
  background: var(--surface-light);
}

/* === FIGURE / FIGCAPTION === */
.page-content__body figure {
  margin: 32px 0;
  position: relative;
}

.page-content__body figure img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,46,61,0.12);
}

.page-content__body figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

/* === H4, H5, H6 in content === */
.page-content__body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 28px 0 12px;
}

.page-content__body h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 24px 0 12px;
  text-transform: none;
  letter-spacing: 0;
}

.page-content__body h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === STRONG in content === */
.page-content__body strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* === TABLE in content === */
.page-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.9rem;
}

.page-content__body th {
  background: var(--navy-deep);
  color: var(--text-white);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
}

.page-content__body td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--surface-light);
}

.page-content__body tr:hover td {
  background: var(--surface-light);
}

/* === FIRST PARAGRAPH accent === */
.page-content__body > p:first-child {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-dark);
}

/* === BLOCKQUOTE enhanced === */
.page-content__body blockquote strong {
  color: var(--accent-dark);
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* === HORIZONTAL RULE === */
.page-content__body hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin: 48px 0;
}

/* === SIDEBAR sticky on desktop === */
@media (min-width: 1025px) {
  .single-post__sidebar {
    position: sticky;
    top: 100px;
  }
}

/* === META SEP === */
.meta-sep {
  margin: 0 8px;
  color: var(--text-muted);
  opacity: 0.5;
}
