/* =============================================
   SCALP INK MARKETING — Global Styles
   scalpinkmarketing.com
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --black:        #0a0a0a;
  --charcoal:     #111318;
  --surface:      #181c24;
  --surface-2:    #1e2330;
  --surface-3:    #252b3b;
  --border:       rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);
  --gold:         #c9a84c;
  --gold-light:   #e4c272;
  --gold-muted:   rgba(201,168,76,0.15);
  --gold-glow:    rgba(201,168,76,0.25);
  --white:        #ffffff;
  --grey-100:     #f5f5f7;
  --grey-300:     #c1c1c8;
  --grey-400:     #8a8a99;
  --grey-500:     #5a5a6e;
  --success:      #34d399;
  --error:        #f87171;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;

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

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.55);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.18);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   180ms;
  --dur-mid:    320ms;
  --dur-slow:   500ms;

  /* Max width */
  --container:  1240px;
  --container-sm: 860px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--grey-300);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-muted); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* --- Selection --- */
::selection { background: var(--gold); color: var(--black); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--grey-400); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.container--sm {
  max-width: var(--container-sm);
}

section { padding-block: var(--space-2xl); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur-mid) var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}
.btn-primary:active { transform: translateY(0); }

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

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: var(--border-light);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* --- Card Base --- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: all var(--dur-mid) var(--ease);
}
.card:hover {
  border-color: var(--gold-muted);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--dur-mid) var(--ease);
  padding-block: 1.25rem;
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding-block: 0.85rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Responsive clamp: shrinks gracefully on small screens */
  max-width: clamp(120px, 30vw, 220px);
}
/* Keep legacy text-logo classes as no-ops to avoid breakage */
.nav__logo-mark { display: none; }
.nav__logo-text { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--grey-300);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav__link.active { color: var(--gold); }

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-mid) var(--ease);
  box-shadow: var(--shadow-lg);
}
/* Invisible bridge fills the gap between trigger and menu, preventing hover loss */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-300);
  transition: all var(--dur-fast) var(--ease);
}
.nav__dropdown-item:hover {
  background: var(--gold-muted);
  color: var(--gold);
}
.nav__dropdown-item-icon {
  width: 30px;
  height: 30px;
  background: var(--surface-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide desktop nav on mobile/tablet */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-mid) var(--ease);
}
.nav__mobile.open { transform: translateX(0); }
@media (max-width: 900px) {
  .nav__mobile { display: flex; }
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--grey-300);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--dur-fast) var(--ease);
}
.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-mid) var(--ease);
}
.nav__mobile-sub.open { max-height: 300px; }
.nav__mobile-sub a {
  font-size: 1rem;
  padding: 0.75rem 0;
  color: var(--grey-400);
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color var(--dur-fast) var(--ease);
}
.nav__mobile-sub a:hover { color: var(--gold); }
.nav__mobile-sub a:last-child { border-bottom: 0; }

.nav__mobile-cta { margin-top: 2rem; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-grid {
  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% 100% at 50% 0%, black 30%, transparent 100%);
}

.hero__bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -200px;
  left: -150px;
  pointer-events: none;
}

.hero__bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding-block: var(--space-xl);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

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

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--grey-400);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--grey-400);
  font-weight: 500;
}
.hero__trust-item svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hero Form Card */
.hero__form-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201,168,76,0.08);
  position: relative;
  overflow: hidden;
}
.hero__form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.hero__form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--white);
}
.hero__form-sub {
  font-size: 0.85rem;
  color: var(--grey-400);
  margin-bottom: 1.5rem;
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-300);
  letter-spacing: 0.04em;
  font-family: var(--font-display);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-500);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--surface-3);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238a8a99'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--surface-2); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.form__submit { width: 100%; margin-top: 1.25rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(52,211,153,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.form-success h3 { color: var(--white); margin-bottom: 0.5rem; }
.form-success p { color: var(--grey-400); font-size: 0.9rem; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.about__visual {
  position: relative;
}

.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Responsive image sections */
.section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.section-image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  line-height: 0;
}
.about__stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--dur-mid) var(--ease);
}
.about__stat-card:hover { border-color: var(--gold-muted); }
.about__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about__stat-label {
  font-size: 0.78rem;
  color: var(--grey-400);
  margin-top: 0.3rem;
  font-weight: 500;
}

.about__content { }

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.about__pillar-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
}
.about__pillar-text p {
  font-size: 0.88rem;
  color: var(--grey-400);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services { background: var(--black); }

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__header p {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--grey-400);
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-muted) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}

.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.12);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.service-card__desc {
  color: var(--grey-400);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.service-card__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--grey-300);
  font-weight: 500;
}
.service-card__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-display);
  margin-top: auto;
  position: relative;
  z-index: 1;
  transition: gap var(--dur-fast) var(--ease);
}
.service-card__link:hover { gap: 0.8rem; }
.service-card__link svg { width: 16px; height: 16px; }

/* =============================================
   PROCESS / STEPS SECTION
   ============================================= */
.process { background: var(--charcoal); }

.process__header {
  text-align: center;
  margin-bottom: 4rem;
}
.process__header p {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--grey-400);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 0.5rem);
  right: calc(10% + 0.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 10px, transparent 10px, transparent 20px);
  opacity: 0.3;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
}

.process__step-num {
  width: 72px;
  height: 72px;
  background: var(--surface);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.1rem;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  z-index: 1;
}
.process__step:hover .process__step-num {
  border-color: var(--gold);
  background: var(--gold-muted);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.process__step-num-text {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process__step-icon { font-size: 1.4rem; }

.process__step-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.process__step-desc {
  font-size: 0.82rem;
  color: var(--grey-400);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why { background: var(--black); }

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why__content { }

.why__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why__point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--dur-mid) var(--ease);
}
.why__point:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.why__point-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.why__point-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--white);
}
.why__point-text p {
  font-size: 0.86rem;
  color: var(--grey-400);
  line-height: 1.65;
  margin: 0;
}

.why__visual {
  position: relative;
}

.why__comparison {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why__comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why__col-header {
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.why__col-header.us {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}
.why__col-header.them {
  background: var(--surface-2);
  color: var(--grey-400);
  border-left: 1px solid var(--border);
}

.why__comparison-rows { }
.why__comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.why__comparison-cell {
  padding: 0.9rem 1.5rem;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.why__comparison-cell.us {
  color: var(--grey-300);
  font-weight: 500;
}
.why__comparison-cell.them {
  color: var(--grey-500);
  border-left: 1px solid var(--border);
}
.why__check { color: var(--success); font-size: 0.9rem; }
.why__x { color: var(--error); font-size: 0.9rem; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq { background: var(--charcoal); }

.faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq__header p {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--grey-400);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-mid) var(--ease);
}
.faq__item.open { border-color: rgba(201,168,76,0.3); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--dur-fast) var(--ease);
}
.faq__question:hover { background: rgba(255,255,255,0.02); }

.faq__question-text {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.faq__icon {
  width: 28px;
  height: 28px;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease);
}
.faq__item.open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq__icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  transition: color var(--dur-fast) var(--ease);
}
.faq__item.open .faq__icon svg { color: var(--black); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-mid) var(--ease), padding var(--dur-mid) var(--ease);
  padding: 0 1.5rem;
}
.faq__item.open .faq__answer {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  position: relative;
}

.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p {
  color: var(--grey-400);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-banner__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer__logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 200px;
}
/* Hide legacy footer logo text elements */
.footer__logo-mark { display: none; }
.footer__logo-text { display: none; }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease);
  color: var(--grey-400);
}
.footer__social a:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--gold);
}

.footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--grey-400);
  transition: color var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--grey-400);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.footer__contact-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.footer__contact-item a {
  color: var(--grey-400);
  transition: color var(--dur-fast) var(--ease);
}
.footer__contact-item a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: var(--space-md);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--grey-500);
}
.footer__copy span { color: var(--gold); }

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.82rem;
  color: var(--grey-500);
  transition: color var(--dur-fast) var(--ease);
}
.footer__legal a:hover { color: var(--grey-300); }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.inner-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding-top: 6rem;
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.inner-hero::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% 100% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}

.inner-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  pointer-events: none;
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--grey-500);
  margin-bottom: 1.25rem;
}
.breadcrumb a {
  color: var(--grey-400);
  transition: color var(--dur-fast) var(--ease);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--grey-500); }

.inner-hero__title { margin-bottom: 1rem; }
.inner-hero__desc {
  font-size: 1.1rem;
  color: var(--grey-400);
  line-height: 1.75;
  max-width: 600px;
}

/* =============================================
   TEAM / ABOUT PAGE
   ============================================= */
.about-page-mission {
  background: var(--charcoal);
}

.mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mission__image-large {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface-2);
}

.mission__image-large img { width: 100%; height: 100%; object-fit: cover; }

.mission__image-sm {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface-2);
}
.mission__image-sm img { width: 100%; height: 100%; object-fit: cover; }

.values-section { background: var(--black); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--dur-mid) var(--ease);
  text-align: center;
}
.value-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--grey-400); margin: 0; }

.industries-section { background: var(--charcoal); }

.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--dur-mid) var(--ease);
}
.industry-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.industry-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.industry-card h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.industry-card p { font-size: 0.86rem; color: var(--grey-400); margin: 0; line-height: 1.6; }

/* =============================================
   SERVICE INNER PAGES
   ============================================= */
.service-detail { background: var(--charcoal); }

.service-detail__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.service-detail__body h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.service-detail__body h2:first-child { margin-top: 0; }
.service-detail__body p {
  color: var(--grey-400);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-detail__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.service-detail__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--grey-300);
}
.service-detail__check-icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.12em;
  flex-shrink: 0;
}

.service-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.sidebar-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.sidebar-services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--grey-300);
  transition: all var(--dur-fast) var(--ease);
  font-weight: 500;
}
.sidebar-service-link:hover {
  background: var(--gold-muted);
  color: var(--gold);
}
.sidebar-service-link.active {
  background: var(--gold-muted);
  color: var(--gold);
  font-weight: 600;
}
.sidebar-service-link svg { width: 14px; height: 14px; opacity: 0.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--charcoal); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact__info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--dur-mid) var(--ease);
}
.contact__info-card:hover { border-color: rgba(201,168,76,0.3); }
.contact__info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact__info-text h4 { font-size: 0.9rem; margin-bottom: 0.2rem; color: var(--white); }
.contact__info-text p { font-size: 0.85rem; color: var(--grey-400); margin: 0; }
.contact__info-text a { color: var(--grey-400); transition: color var(--dur-fast) var(--ease); }
.contact__info-text a:hover { color: var(--gold); }

.contact__form-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact__form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease) forwards;
}
.animate-fade {
  opacity: 0;
  animation: fadeIn 0.6s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .process__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__inner { gap: 3rem; }
  .why__inner { gap: 3rem; }
  .mission__inner { gap: 3rem; }
}

@media (max-width: 900px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav__logo-img { height: 36px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__inner,
  .why__inner,
  .mission__inner,
  .contact__inner,
  .service-detail__inner { grid-template-columns: 1fr; }

  .about__visual { order: -1; }
  .why__visual { order: 2; }

  .service-sidebar { position: static; }

  .industries__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }

  .about__stat-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  section { padding-block: var(--space-xl); }

  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .about__stat-cards { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .values__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__buttons { flex-direction: column; }

  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
}

@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
  .about__stat-cards { grid-template-columns: 1fr 1fr; }
  .nav__logo-img { height: 30px; }
}

/* =============================================
   LARGE DESKTOP
   ============================================= */
@media (min-width: 1400px) {
  :root { --container: 1360px; }
  body { font-size: 17px; }
}

@media (min-width: 1800px) {
  :root { --container: 1600px; }
}

/* =============================================
   MISC
   ============================================= */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 1.25rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--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; }
