/* ==========================================================================
   ELSHAN MUSAYEV — elshanmusayev.com
   Design System & Global Styles
   Palette: Navy #0F1C2E · Amber #C49A70 · Steel Blue #1E5FA6
   Typography: Playfair Display (display) + Inter (body)
   ========================================================================== */

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: #2D3748;
  background-color: #FFFFFF;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }
a { text-decoration: none; color: inherit; }

::selection {
  background: rgba(196, 154, 112, 0.25);
  color: #0F1C2E;
}

:focus-visible {
  outline: 2px solid #1E5FA6;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --navy: #0F1C2E;
  --navy-light: #1A2B42;
  --amber: #C49A70;
  --amber-light: #D4B08C;
  --amber-bg: #C49A70;
  --steel-blue: #1E5FA6;
  --steel-blue-hover: #174A85;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --text-dark: #2D3748;
  --text-muted: #6B7A8D;
  --border: #E2E8F0;
  --urgency-red: #C0392B;
  --urgency-bg: #FDF0EE;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 28, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 28, 46, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 28, 46, 0.12);
  --shadow-xl: 0 20px 48px rgba(15, 28, 46, 0.16);

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ---------- Typography ---------- */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

.section-padding {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav__logo {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--steel-blue);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--steel-blue-hover);
  transform: translateY(-1px);
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 300;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

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

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: var(--space-8);
    background: #FFFFFF;
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 500;
  }

  .nav__cta {
    margin-top: var(--space-4);
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
}

/* ---------- Urgency Banner ---------- */
.urgency-banner {
  background: var(--urgency-bg);
  color: var(--urgency-red);
  text-align: center;
  padding: 0.625rem var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: 4rem;
  border-bottom: 1px solid rgba(192, 57, 43, 0.15);
}

.urgency-banner strong {
  font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  min-height: 90vh;
}

.hero__left {
  flex: 0 0 60%;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: var(--space-16) var(--space-12);
}

.hero__content {
  max-width: 580px;
  margin-left: auto;
  padding-right: var(--space-8);
}

.hero__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__right {
  flex: 0 0 40%;
  background: linear-gradient(135deg, #C49A70 0%, #D4B08C 50%, #B8875D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__initials {
  font-family: var(--font-display);
  font-size: clamp(8rem, 15vw, 14rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: -0.02em;
  user-select: none;
}

.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

/* Interior page hero */
.hero--interior {
  min-height: auto;
  display: block;
}

.hero--interior .hero__inner {
  background: var(--navy);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-6);
  margin-top: 4rem;
  text-align: center;
}

.hero--interior .hero__title {
  font-size: var(--text-2xl);
  font-style: normal;
  max-width: 700px;
  margin: 0 auto var(--space-4);
}

.hero--interior .hero__subtitle {
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--steel-blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--steel-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30, 95, 166, 0.3);
}

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

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

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

.btn--outline-dark:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
}

.btn--amber:hover {
  background: #B8875D;
  transform: translateY(-2px);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-10) var(--space-6);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

/* ---------- Service Cards ---------- */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

.service-card__badge--urgent {
  background: var(--urgency-bg);
  color: var(--urgency-red);
}

.service-card__badge--roi {
  background: #E8F5E9;
  color: #2E7D32;
}

.service-card__badge--intro {
  background: #EDE7F6;
  color: #5E35B1;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-4);
}

.service-card__price span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--text-muted);
}

.service-card__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--steel-blue);
  transition: color var(--transition);
}

.service-card__link:hover {
  color: var(--steel-blue-hover);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Why Me Section ---------- */
.why-me {
  background: var(--navy);
  color: var(--white);
}

.why-me__header {
  margin-bottom: var(--space-10);
}

.why-me__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.why-me__subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
}

.why-me__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.why-me__point {
  border-left: 2px solid var(--amber);
  padding-left: var(--space-6);
}

.why-me__point-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.why-me__point-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-me__points {
    grid-template-columns: 1fr;
  }
}

/* ---------- Calendly Section ---------- */
.calendly-section {
  background: var(--off-white);
}

.calendly-section__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.calendly-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.calendly-section__subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.calendly-embed {
  min-height: 650px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-12) var(--space-6) var(--space-8);
}

.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.footer__logo {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.footer__link {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

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

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer__bottom {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-3);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--navy);
  margin-bottom: var(--space-4);
}

.section-header__subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- About / Split Layout ---------- */
.about-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  min-height: 60vh;
}

.about-split__left {
  background: linear-gradient(135deg, #C49A70 0%, #D4B08C 50%, #B8875D 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-12);
  position: relative;
}

.about-split__initials {
  font-family: var(--font-display);
  font-size: clamp(6rem, 10vw, 10rem);
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

.about-split__right {
  padding: var(--space-12) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.about-split__role {
  font-size: var(--text-sm);
  color: var(--amber);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.about-split__location {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.about-split__bio p {
  font-size: var(--text-base);
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__left {
    padding: var(--space-10) var(--space-6);
    min-height: 250px;
  }

  .about-split__right {
    padding: var(--space-8) var(--space-6);
  }
}

/* ---------- Timeline ---------- */
.timeline {
  padding: 0;
  list-style: none;
}

.timeline__item {
  display: flex;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 12px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline__item:last-child::before {
  display: none;
}

.timeline__dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 8px;
}

.timeline__content {}

.timeline__role {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.timeline__org {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.timeline__date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ---------- Badges ---------- */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Article Cards ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.article-card__date {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.article-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.article-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.article-card__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--steel-blue);
  transition: color var(--transition);
}

.article-card__link:hover {
  color: var(--steel-blue-hover);
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(30, 95, 166, 0.1);
}

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

/* ---------- Services Detail ---------- */
.service-detail {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-10);
  margin-bottom: var(--space-8);
  background: var(--white);
}

.service-detail__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

.service-detail__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.service-detail__price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-6);
}

.service-detail__price span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--text-muted);
}

.service-detail__desc {
  font-size: var(--text-base);
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-detail__list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
}

.service-detail__list li {
  font-size: var(--text-sm);
  color: var(--text-dark);
  padding: var(--space-2) 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

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

.service-detail__who {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
}

.service-detail__timeline {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
  background: var(--off-white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

/* ---------- Audience Section ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.audience-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--off-white);
  border-radius: 12px;
}

.audience-item__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.125rem;
}

.audience-item__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.audience-item__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered children */
.stagger > .fade-in:nth-child(1) { transition-delay: 0ms; }
.stagger > .fade-in:nth-child(2) { transition-delay: 100ms; }
.stagger > .fade-in:nth-child(3) { transition-delay: 200ms; }
.stagger > .fade-in:nth-child(4) { transition-delay: 300ms; }

/* ---------- Hero Mobile ---------- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero__left {
    flex: none;
    padding: var(--space-12) var(--space-6) var(--space-10);
  }

  .hero__content {
    margin-left: 0;
    padding-right: 0;
  }

  .hero__right {
    flex: none;
    min-height: 200px;
  }

  .hero__title {
    font-size: var(--text-2xl);
  }
}

/* ---------- LinkedIn Icon ---------- */
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--steel-blue);
  transition: color var(--transition);
}

.linkedin-link:hover {
  color: var(--steel-blue-hover);
}

.linkedin-link svg {
  width: 18px;
  height: 18px;
}

/* ---------- Contact Details ---------- */
.contact-details {
  text-align: center;
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.contact-details p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Articles note ---------- */
.articles-note {
  text-align: center;
  margin-top: var(--space-10);
  padding: var(--space-8);
  background: var(--off-white);
  border-radius: 12px;
}

.articles-note p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--navy);
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.cta-section__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .urgency-banner { display: none; }
  body { color: #000; background: #fff; }
}

/* ── PHOTO ── */
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-split__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
