/* ============================================
   LASER CLEAN MELBOURNE — STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ---- VARIABLES ---- */
:root {
  --black:    #0a0a0a;
  --dark:     #111214;
  --panel:    #18191d;
  --border:   #2a2b30;
  --blue:     #00aaff;
  --blue-dim: #0077cc;
  --glow:     rgba(0, 170, 255, 0.18);
  --white:    #f4f4f5;
  --grey:     #8a8d96;
  --light:    #c8cad0;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius:   6px;
  --transition: 0.25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section--tight { padding: 60px 0; }
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--black);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: #33bbff;
  border-color: #33bbff;
  box-shadow: 0 0 24px var(--glow);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn--lg { font-size: 19px; padding: 18px 40px; }
.divider {
  width: 48px; height: 3px;
  background: var(--blue);
  margin: 20px 0 32px;
}

/* ---- IMAGE PLACEHOLDER ---- */
.img-placeholder {
  background: var(--panel);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.015) 10px,
    rgba(255,255,255,0.015) 20px
  );
}
.img-placeholder .ph-icon {
  font-size: 32px;
  opacity: 0.4;
}
.img-placeholder span {
  position: relative;
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav__logo-text span { color: var(--blue); }
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--blue); }
.nav__cta { margin-left: 16px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- NAV DROPDOWN ---- */
.nav__item { position: relative; }
.nav__item > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav__item > a .nav__arrow {
  font-size: 10px;
  transition: transform var(--transition);
  opacity: 0.6;
}
.nav__item:hover > a .nav__arrow { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--dark);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 8px);
}
.nav__dropdown a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  border-radius: 6px;
  font-size: 14px !important;
  color: var(--light) !important;
  transition: all 0.15s ease !important;
  letter-spacing: 0.04em !important;
}
.nav__dropdown a:hover {
  background: rgba(0,170,255,0.08);
  color: var(--blue) !important;
}
.nav__dropdown a .dd-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.nav__dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.85) 50%,
    rgba(10,10,10,0.4) 100%
  );
}
.hero__scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scan 3s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes scan {
  0%   { top: 0; opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,170,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,170,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,170,255,0.1);
  border: 1px solid rgba(0,170,255,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero__title em {
  font-style: normal;
  color: var(--blue);
  display: block;
}
.hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-num span { color: var(--blue); }
.hero__stat-label {
  font-size: 13px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero__visual {
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,170,255,0.1), 0 40px 80px rgba(0,0,0,0.5);
  position: relative;
}
.hero__img-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--blue);
  border-style: solid;
  z-index: 2;
}
.hero__img-corner--tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.hero__img-corner--tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.hero__img-corner--bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.hero__img-corner--br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

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

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item__icon {
  font-size: 20px;
  color: var(--blue);
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ============================================
   SERVICES
   ============================================ */
.services__header {
  max-width: 640px;
  margin-bottom: 60px;
}
.services__header h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  background: #1c1e23;
  border-color: rgba(0,170,255,0.3);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 28px;
  border-radius: 4px;
  overflow: hidden;
}
.service-card__num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  transition: color var(--transition);
}
.service-card:hover .service-card__num { color: rgba(0,170,255,0.15); }
.service-card__icon { font-size: 28px; margin-bottom: 16px; }
.service-card__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 10px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { background: var(--panel); }
.how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.how__subtitle {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 40px;
  line-height: 1.7;
}
.how__steps { display: flex; flex-direction: column; gap: 0; }
.how__step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}
.how__step:last-child { padding-bottom: 0; }
.how__step-left { display: flex; flex-direction: column; align-items: center; }
.how__step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}
.how__step-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin: 8px 0 0;
}
.how__step:last-child .how__step-line { display: none; }
.how__step-content { padding-top: 8px; }
.how__step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.how__step-desc { font-size: 15px; color: var(--grey); line-height: 1.65; }
.how__visual {
  position: relative;
}
.how__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.how__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--blue);
  color: var(--black);
  padding: 20px 24px;
  border-radius: 8px;
  font-family: var(--font-head);
  box-shadow: 0 0 40px var(--glow);
}
.how__badge-num {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.how__badge-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.why__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.why-card {
  background: var(--panel);
  padding: 40px 28px;
  transition: background var(--transition);
}
.why-card:hover { background: #1c1e23; }
.why-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.why-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.why-card__desc { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ============================================
   BEFORE / AFTER GALLERY
   ============================================ */
.gallery { background: var(--black); }
.gallery__header { max-width: 640px; margin-bottom: 48px; }
.gallery__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.gallery-item__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.gallery-item__img { aspect-ratio: 1; }
.gallery-item__label {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--panel);
}
.gallery-item__label span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.gallery-item__label span:last-child { color: var(--blue); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--panel); }
.testimonials__header { text-align: center; margin-bottom: 60px; }
.testimonials__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(0,170,255,0.3); }
.testimonial-card__quote {
  font-size: 56px;
  font-family: Georgia, serif;
  color: var(--blue);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.6;
}
.testimonial-card__text {
  font-size: 15px;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card__stars { color: #f5c842; font-size: 16px; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}
.testimonial-card__role { font-size: 13px; color: var(--grey); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(135deg, #0a0f1a 0%, #0a0a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,170,255,0.08), transparent 70%);
  pointer-events: none;
}
.cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.cta__title em { color: var(--blue); font-style: normal; }
.cta__text { font-size: 17px; color: var(--grey); margin-bottom: 40px; line-height: 1.7; }
.cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta__phone {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-top: 28px;
  display: block;
}
.cta__phone span { color: var(--blue); }
.cta__phone a { transition: color var(--transition); }
.cta__phone a:hover { color: var(--blue); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-text {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--grey);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--blue); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer__contact-item .icon { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 13px; color: var(--grey); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: var(--grey); transition: color var(--transition); }
.footer__legal a:hover { color: var(--blue); }

/* ============================================
   INNER PAGES — SHARED
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(0,170,255,0.04));
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.page-hero__title em { color: var(--blue); font-style: normal; }
.page-hero__sub {
  font-size: 18px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--border); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info__title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-info__text { font-size: 15px; color: var(--grey); line-height: 1.75; margin-bottom: 36px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  background: rgba(0,170,255,0.1);
  border: 1px solid rgba(0,170,255,0.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-detail__label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}
.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-input, .form-select, .form-textarea {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  width: 100%;
  transition: border-color var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--glow);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro__content h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.about-intro__content p {
  font-size: 16px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-intro__img {
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.team-card:hover { border-color: rgba(0,170,255,0.3); }
.team-card__photo { aspect-ratio: 1; }
.team-card__info { padding: 24px; }
.team-card__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
}
.team-card__role { font-size: 14px; color: var(--blue); margin: 4px 0 12px; font-weight: 500; }
.team-card__bio { font-size: 14px; color: var(--grey); line-height: 1.65; }

/* ============================================
   SERVICES PAGE — FULL
   ============================================ */
.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-full:last-child { border-bottom: none; }
.service-full:nth-child(even) .service-full__img { order: -1; }
.service-full__img {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-full__content h3 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.service-full__content p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--light);
}
.service-feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(0,170,255,0.1);
  border: 1px solid rgba(0,170,255,0.3);
  border-radius: 50%;
  color: var(--blue);
  font-size: 11px;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .how__inner { grid-template-columns: 1fr; }
  .how__visual { display: none; }
  .gallery__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro__img { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; }
  .service-full:nth-child(even) .service-full__img { order: 0; }
  .trust-bar__inner { justify-content: center; }
  .trust-divider { display: none; }
  .hero__stats { flex-direction: column; gap: 20px; }
}
