/* ============================================
   STANLEY MARKET RESEARCH — DESIGN SYSTEM
   ============================================ */

/* --- Variables --- */
:root {
  --navy-950: #050d1a;
  --navy-900: #0a1628;
  --navy-800: #0f2040;
  --navy-700: #162d58;
  --navy-600: #1e3a6e;
  --navy-400: #3a5f9e;
  --navy-200: #8aabd4;

  --gold-500: #c9a84c;
  --gold-400: #d4b468;
  --gold-300: #e2ca8a;
  --gold-100: #f7f0dc;

  --slate-900: #0f1923;
  --slate-800: #1a2535;
  --slate-700: #253040;
  --slate-600: #3a4a5c;
  --slate-400: #6b7c93;
  --slate-300: #9aadbf;
  --slate-100: #dde6ef;
  --white: #ffffff;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* --- Reset & Base --- */
*, *::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(--navy-950);
  color: var(--slate-100);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
}

.text-gold { color: var(--gold-500); }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--full { width: 100%; }

.btn--gold {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}
.btn--gold:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--slate-100);
  border-color: var(--slate-600);
}
.btn--outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.nav.scrolled {
  background: rgba(5, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 4px 24px rgba(0,0,0,0.4);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--white);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text { color: var(--slate-300); }
.logo-text strong { color: var(--white); font-weight: 600; }

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

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-300);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(30, 58, 110, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--slate-300);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.hero__trust > span {
  font-size: 0.78rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero__trust-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-300);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 100px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--navy-800);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 48px 0;
}

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

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.stat-card__suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-500);
  line-height: 1;
  margin-left: -4px;
  align-self: flex-start;
  margin-top: 6px;
}

.stat-card > div:first-child,
.stat-card > div:nth-child(2) {
  display: inline;
}

.stat-card {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0 4px;
}

.stat-card__label {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate-400);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */
.section {
  padding: 100px 0;
}

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

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1rem;
  color: var(--slate-300);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition-slow);
  cursor: default;
}

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card--featured {
  background: linear-gradient(135deg, rgba(22, 45, 88, 0.8), rgba(15, 32, 64, 0.9));
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.15), var(--shadow-md);
}

.service-card--featured:hover {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500), var(--shadow-gold);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold-500);
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  font-size: 0.82rem;
  color: var(--slate-400);
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-size: 0.75rem;
}

/* ============================================
   SECTORS
   ============================================ */
.sectors {
  background: var(--navy-950);
}

.sectors__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sector-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--slate-200);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: default;
}

.sector-pill:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-300);
  transform: translateY(-2px);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--navy-900);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.process__step:hover .step__number {
  color: var(--gold-500);
}

.step__content h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 10px;
  color: var(--white);
}

.step__content p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.7;
}

.process__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,168,76,0.3), rgba(201,168,76,0.6));
  margin-top: 28px;
  position: relative;
}

.process__connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(201,168,76,0.6);
  border-top: 2px solid rgba(201,168,76,0.6);
  transform: rotate(45deg);
}

/* ============================================
   REPORTS
   ============================================ */
.reports {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

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

.report-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-slow);
}

.report-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.report-card--featured {
  background: linear-gradient(135deg, rgba(22,45,88,0.7), rgba(10,22,40,0.95));
  border-color: rgba(201,168,76,0.3);
}

.report-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

.report-card h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.45;
}

.report-card p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.65;
  flex: 1;
}

.report-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--slate-600);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--navy-950);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition-slow);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(22,45,88,0.6), rgba(10,22,40,0.9));
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--gold-500);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--slate-200);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-400);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--slate-400);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--navy-900);
}

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

.about__content p {
  font-size: 0.95rem;
  color: var(--slate-300);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  color: var(--gold-500);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__value strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 4px;
}

.about__value p {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin: 0;
}

.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 340px;
}

.about__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: all var(--transition);
}

.about__card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateX(8px);
}

.about__card--1 { margin-left: 0; }
.about__card--2 { margin-left: 24px; }
.about__card--3 { margin-left: 0; }

.card-label {
  font-size: 0.78rem;
  color: var(--slate-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.card-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.card-value span {
  font-size: 1.2rem;
  color: var(--slate-300);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 80px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--slate-300);
  font-size: 0.95rem;
}

.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--navy-950);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__info p {
  color: var(--slate-300);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate-300);
}

.detail-icon {
  color: var(--gold-500);
  font-size: 1rem;
  width: 24px;
  text-align: center;
}

/* Form */
.contact__form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-300);
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form__group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7c93' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--slate-600);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form__group textarea {
  resize: vertical;
  min-height: 110px;
}

.form__group select option {
  background: var(--navy-800);
  color: var(--white);
}

.form__disclaimer {
  font-size: 0.78rem;
  color: var(--slate-600);
  text-align: center;
  line-height: 1.6;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--gold-400);
}

.form-success.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding: 60px 24px 40px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}

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

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-500);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--gold-400);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom span {
  font-size: 0.8rem;
  color: var(--slate-600);
}

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

.footer__legal a {
  font-size: 0.8rem;
  color: var(--slate-600);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--slate-300);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { flex-direction: column; gap: 32px; }
  .process__connector { display: none; }
  .process__step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
  .step__number { font-size: 2rem; margin-bottom: 0; flex-shrink: 0; width: 48px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__card-stack { max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .about__card { flex: 1; min-width: 160px; }
  .about__card--2 { margin-left: 0; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-110%);
    transition: transform var(--transition-slow);
    pointer-events: none;
  }

  .nav__links.open {
    transform: translateY(0);
    pointer-events: all;
  }

  .nav__links a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2)::after { display: none; }
  .stat-card:nth-child(3)::after { display: none; }
  .stat-card:first-child,
  .stat-card:nth-child(3) {
    border-right: none;
  }
  .stat-card::after {
    display: none;
  }
  .stats__grid {
    gap: 0;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .stat-card {
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .services__grid { grid-template-columns: 1fr; }
  .reports__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }

  .hero__cta { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: fit-content; }

  .footer__bottom .container { flex-direction: column; text-align: center; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2rem; }
  .footer__links { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; }
}

/* ============================================
   LOCATION MAP
   ============================================ */
.location-map {
  background: var(--navy-950);
}

.location-map__bar {
  background: var(--navy-900);
  border-top: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
  padding: 20px 0;
}

.location-map__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.location-map__detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.location-map__icon {
  font-size: 1.4rem;
  color: var(--gold-500);
  flex-shrink: 0;
}

.location-map__detail strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.location-map__detail span {
  color: var(--slate-300);
  font-size: 0.875rem;
}

.location-map__embed {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.location-map__embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(0.7);
}

.location-map__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map__pin {
  background: var(--navy-900);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold), var(--shadow-md);
  animation: pin-pulse 2.5s ease-in-out infinite;
}

.pin-icon {
  color: var(--gold-500);
  font-size: 1.1rem;
}

.pin-label {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

@keyframes pin-pulse {
  0%, 100% { box-shadow: var(--shadow-gold), var(--shadow-md); }
  50% { box-shadow: 0 0 0 6px rgba(201,168,76,0.15), var(--shadow-md); }
}

/* contact detail small text */
.contact__detail small {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .location-map__embed { height: 300px; }
  .location-map__info { flex-direction: column; align-items: flex-start; }
}

.footer__location {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 8px;
}

/* ============================================
   SYDNEY PHOTO STRIP
   ============================================ */
.sydney-strip {
  background: var(--navy-950);
  padding: 80px 0 0;
}

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

.sydney-strip__header p {
  color: var(--slate-300);
  max-width: 520px;
  margin: 12px auto 0;
}

.sydney-strip__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 360px;
  gap: 0;
}

.sydney-photo {
  position: relative;
  overflow: hidden;
}

.sydney-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.9);
}

.sydney-photo:hover img {
  transform: scale(1.04);
  filter: brightness(0.85) saturate(1);
}

.sydney-photo__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(5,13,26,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-300);
}

@media (max-width: 768px) {
  .sydney-strip__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .sydney-photo {
    height: 240px;
  }
}
