/* ============================================================
   Moxley Careers — Global Styles
   Palette:
   - Deep Navy:    #1B2A4A
   - Warm Gold:    #D4A853
   - Off-White:    #F8F6F2
   - Charcoal:     #2D2D2D
   ============================================================ */

/* ---- CSS Variables ------------------------------------------------ */
:root {
  --navy: #1B2A4A;
  --gold: #D4A853;
  --off-white: #F8F6F2;
  --charcoal: #2D2D2D;
  --light-navy: #243351;
  --gold-hover: #c49a48;
  --text-muted: #5a5a5a;
  --border-light: #e5e2dc;
  --shadow-soft: 0 4px 24px rgba(27,42,74,0.08);
  --shadow-medium: 0 8px 32px rgba(27,42,74,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---- Page Transition ---------------------------------------------- */
.page-wrap {
  opacity: 0;
  animation: pageFadeIn 0.35s ease forwards;
}

@keyframes pageFadeIn {
  to { opacity: 1; }
}

/* ---- Gold Top Accent Line ----------------------------------------- */
.gold-accent-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  z-index: 1001;
  pointer-events: none;
}

/* ---- Typography --------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  font-size: 1.05rem;
  max-width: 65ch;
}

/* ---- Utility Classes ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: #fff;
}

.text-center {
  text-align: center;
}

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

.text-navy {
  color: var(--navy);
}

/* ---- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

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

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--off-white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--off-white);
  border: 2px solid var(--navy);
}

.btn-navy:hover {
  background: var(--light-navy);
  border-color: var(--light-navy);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ---- Navigation --------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248,246,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-soft);
}

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

.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-links .btn-gold {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.75rem;
  z-index: 1001;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 50%, #1a2540 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Animated geometric shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  opacity: 0.04;
  animation: floatShape 20s ease-in-out infinite;
}

.hero-shape--1 {
  top: 15%;
  left: 8%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  transform: rotate(15deg);
  animation-delay: 0s;
}

.hero-shape--2 {
  top: 60%;
  right: 12%;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  animation-delay: -5s;
}

.hero-shape--3 {
  bottom: 20%;
  left: 20%;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--gold);
  opacity: 0.03;
  animation-delay: -10s;
}

.hero-shape--4 {
  top: 30%;
  right: 25%;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 8px;
  transform: rotate(45deg);
  animation-delay: -15s;
}

.hero-shape--5 {
  bottom: 35%;
  right: 8%;
  width: 100px;
  height: 2px;
  background: var(--gold);
  transform: rotate(-30deg);
  animation-delay: -7s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.hero .btn-gold {
  font-size: 1rem;
  padding: 1rem 2rem;
}

/* ---- Stats Bar ---------------------------------------------------- */
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ---- Section Headers ---------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto;
}

/* ---- Cards -------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  border-left: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-left-color: var(--gold);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}

.card-link i {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.card:hover .card-link {
  color: var(--gold);
  gap: 0.65rem;
}

.card:hover .card-link i {
  transform: translateX(3px);
}

/* ---- How It Works ------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step::before {
  content: '0' counter(step);
  counter-increment: step;
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 auto;
}

/* ---- Featured In Strip -------------------------------------------- */
.featured-in {
  padding: 2.5rem 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.featured-in-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.featured-in-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.featured-in-logos span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--border-light);
  letter-spacing: -0.02em;
}

/* ---- Lead Magnet -------------------------------------------------- */
.lead-magnet {
  background: linear-gradient(135deg, #f0ece4 0%, var(--off-white) 100%);
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
}

.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lead-magnet h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.lead-magnet p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.lead-magnet-form {
  display: flex;
  gap: 0.75rem;
}

.lead-magnet-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lead-magnet-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.12);
}

/* ---- Trust Indicators --------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Testimonial -------------------------------------------------- */
.testimonial {
  background: var(--navy);
  color: #fff;
  padding: 5rem 0;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: rgba(212,168,83,0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.testimonial cite strong {
  color: var(--gold);
  font-weight: 600;
}

/* ---- CTA Banner --------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #c49a48 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.cta-banner .btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.cta-banner .btn-navy:hover {
  background: var(--light-navy);
  border-color: var(--light-navy);
}

/* ---- Footer ------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ---- Scroll to Top ------------------------------------------------ */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-medium);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* ---- About Page Specifics ---------------------------------------- */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
}

.about-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.about-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

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

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.about-photo {
  position: sticky;
  top: 100px;
}

.photo-frame {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}

.photo-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  border: none;
}

.approach-box {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.approach-box h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.approach-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 100%;
}

/* ---- Services Page Specifics -------------------------------------- */
.services-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
}

.services-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.services-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
}

.service-detail {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.service-detail h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-walkaway {
  margin-top: 1.25rem;
}

.service-walkaway h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-walkaway ul {
  list-style: none;
}

.service-walkaway li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-walkaway li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-meta {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  text-align: center;
}

.service-meta .price {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.service-meta .price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-meta .format {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: block;
}

.service-meta .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  padding: 3rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-section {
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
}

.faq-question i {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 100%;
}

/* ---- Contact Page Specifics --------------------------------------- */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
}

.contact-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.contact-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: start;
}

.contact-main {
  min-width: 0;
}

.contact-side {
  min-width: 0;
}

.calendly-placeholder {
  background: #fff;
  border: 2px dashed var(--border-light);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-muted);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calendly-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.12);
}

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

.form-success {
  display: none;
  background: rgba(212,168,83,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.form-success.visible {
  display: block;
}

.form-success i {
  color: var(--gold);
  margin-right: 0.5rem;
}

.contact-alt {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.contact-alt a {
  color: var(--gold);
  font-weight: 600;
}

/* ---- Blog / Insights Page Specifics ------------------------------- */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
}

.blog-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.blog-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.blog-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8ecf3 0%, #dce2ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-card-body a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-body a:hover {
  color: var(--gold);
}

.blog-note {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
}

.blog-note a {
  color: var(--gold);
  font-weight: 600;
}

/* Newsletter */
.newsletter {
  background: var(--navy);
  padding: 4rem 0;
  color: #fff;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.newsletter p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  max-width: 320px;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(255,255,255,0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.2);
}

/* ---- Scroll Animations -------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---- Mobile Menu -------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  padding: 6rem 2rem 2rem;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border-light);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .btn-gold {
  margin-top: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,42,74,0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Responsive --------------------------------------------------- */
@media (max-width: 900px) {
  .about-content,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    position: static;
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-meta {
    max-width: 320px;
    margin: 0 auto;
  }

  .lead-magnet-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead-magnet-form {
    justify-content: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 5rem;
  }

  .card-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-links {
    gap: 1.25rem;
  }

  .lead-magnet-form {
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .card {
    padding: 1.75rem 1.25rem;
  }

  .approach-box {
    padding: 1.75rem;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-dot {
    left: -1.5rem;
    width: 14px;
    height: 14px;
  }
}

/* ---- Reduced Motion ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card,
  .blog-card,
  .btn {
    transition: none;
  }

  .hero-shape {
    animation: none;
  }

  .page-wrap {
    animation: none;
    opacity: 1;
  }
}

/* ---- Focus Styles ------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
